@@ -1,26 +1,30 | |||
|
1 | 1 | <table style="border-collapse: collapse; border:0;"> |
|
2 | 2 | <tr> |
|
3 |
<td style="padding-left:0"> |
|
|
3 | <td style="padding-left:0"> | |
|
4 | <%= label_tag "available_columns", l(:description_available_columns), :class => "hidden-for-sighted" %> | |
|
5 | <%= select_tag 'available_columns', | |
|
4 | 6 | options_for_select((query.available_columns - query.columns).collect {|column| [column.caption, column.name]}), |
|
5 | 7 | :multiple => true, :size => 10, :style => "width:150px" %> |
|
6 | 8 | </td> |
|
7 | 9 | <td align="center" valign="middle"> |
|
8 | 10 | <input type="button" value="→" |
|
9 | 11 | onclick="moveOptions(this.form.available_columns, this.form.selected_columns);" /><br /> |
|
10 | 12 | <input type="button" value="←" |
|
11 | 13 | onclick="moveOptions(this.form.selected_columns, this.form.available_columns);" /> |
|
12 | 14 | </td> |
|
13 | <td><%= select_tag 'c[]', | |
|
15 | <td> | |
|
16 | <%= label_tag "selected_columns", l(:description_selected_columns), :class => "hidden-for-sighted" %> | |
|
17 | <%= select_tag 'c[]', | |
|
14 | 18 | options_for_select(query.columns.collect {|column| [column.caption, column.name]}), |
|
15 | 19 | :id => 'selected_columns', :multiple => true, :size => 10, :style => "width:150px" %> |
|
16 | 20 | </td> |
|
17 | 21 | <td align="center" valign="middle"> |
|
18 | 22 | <input type="button" value="↑" onclick="moveOptionUp(this.form.selected_columns);" /><br /> |
|
19 | 23 | <input type="button" value="↓" onclick="moveOptionDown(this.form.selected_columns);" /> |
|
20 | 24 | </td> |
|
21 | 25 | </tr> |
|
22 | 26 | </table> |
|
23 | 27 | |
|
24 | 28 | <% content_for :header_tags do %> |
|
25 | 29 | <%= javascript_include_tag 'select_list_move' %> |
|
26 | 30 | <% end %> |
@@ -1,152 +1,155 | |||
|
1 | 1 | <script type="text/javascript"> |
|
2 | 2 | //<![CDATA[ |
|
3 | 3 | function add_filter() { |
|
4 | 4 | select = $('add_filter_select'); |
|
5 | 5 | field = select.value |
|
6 | 6 | Element.show('tr_' + field); |
|
7 | 7 | check_box = $('cb_' + field); |
|
8 | 8 | check_box.checked = true; |
|
9 | 9 | toggle_filter(field); |
|
10 | 10 | select.selectedIndex = 0; |
|
11 | 11 | |
|
12 | 12 | for (i=0; i<select.options.length; i++) { |
|
13 | 13 | if (select.options[i].value == field) { |
|
14 | 14 | select.options[i].disabled = true; |
|
15 | 15 | } |
|
16 | 16 | } |
|
17 | 17 | } |
|
18 | 18 | |
|
19 | 19 | function toggle_filter(field) { |
|
20 | 20 | check_box = $('cb_' + field); |
|
21 | 21 | if (check_box.checked) { |
|
22 | 22 | Element.show("operators_" + field); |
|
23 | 23 | Form.Element.enable("operators_" + field); |
|
24 | 24 | toggle_operator(field); |
|
25 | 25 | } else { |
|
26 | 26 | Element.hide("operators_" + field); |
|
27 | 27 | Form.Element.disable("operators_" + field); |
|
28 | 28 | enableValues(field, []); |
|
29 | 29 | } |
|
30 | 30 | } |
|
31 | 31 | |
|
32 | 32 | function enableValues(field, indexes) { |
|
33 | 33 | var f = $$(".values_" + field); |
|
34 | 34 | for(var i=0;i<f.length;i++) { |
|
35 | 35 | if (indexes.include(i)) { |
|
36 | 36 | Form.Element.enable(f[i]); |
|
37 | 37 | f[i].up('span').show(); |
|
38 | 38 | } else { |
|
39 | 39 | f[i].value = ''; |
|
40 | 40 | Form.Element.disable(f[i]); |
|
41 | 41 | f[i].up('span').hide(); |
|
42 | 42 | } |
|
43 | 43 | } |
|
44 | 44 | if (indexes.length > 0) { |
|
45 | 45 | Element.show("div_values_" + field); |
|
46 | 46 | } else { |
|
47 | 47 | Element.hide("div_values_" + field); |
|
48 | 48 | } |
|
49 | 49 | } |
|
50 | 50 | |
|
51 | 51 | function toggle_operator(field) { |
|
52 | 52 | operator = $("operators_" + field); |
|
53 | 53 | switch (operator.value) { |
|
54 | 54 | case "!*": |
|
55 | 55 | case "*": |
|
56 | 56 | case "t": |
|
57 | 57 | case "w": |
|
58 | 58 | case "o": |
|
59 | 59 | case "c": |
|
60 | 60 | enableValues(field, []); |
|
61 | 61 | break; |
|
62 | 62 | case "><": |
|
63 | 63 | enableValues(field, [0,1]); |
|
64 | 64 | break; |
|
65 | 65 | case "<t+": |
|
66 | 66 | case ">t+": |
|
67 | 67 | case "t+": |
|
68 | 68 | case ">t-": |
|
69 | 69 | case "<t-": |
|
70 | 70 | case "t-": |
|
71 | 71 | enableValues(field, [2]); |
|
72 | 72 | break; |
|
73 | 73 | default: |
|
74 | 74 | enableValues(field, [0]); |
|
75 | 75 | break; |
|
76 | 76 | } |
|
77 | 77 | } |
|
78 | 78 | |
|
79 | 79 | function toggle_multi_select(el) { |
|
80 | 80 | var select = $(el); |
|
81 | 81 | if (select.multiple == true) { |
|
82 | 82 | select.multiple = false; |
|
83 | 83 | } else { |
|
84 | 84 | select.multiple = true; |
|
85 | 85 | } |
|
86 | 86 | } |
|
87 | 87 | |
|
88 | 88 | function submit_query_form(id) { |
|
89 | 89 | selectAllOptions("selected_columns"); |
|
90 | 90 | $(id).submit(); |
|
91 | 91 | } |
|
92 | 92 | |
|
93 | 93 | function apply_filters_observer() { |
|
94 | 94 | $$("#query_form input[type=text]").invoke("observe", "keypress", function(e){ |
|
95 | 95 | if(e.keyCode == Event.KEY_RETURN) { |
|
96 | 96 | submit_query_form("query_form"); |
|
97 | 97 | } |
|
98 | 98 | }); |
|
99 | 99 | } |
|
100 | 100 | Event.observe(document,"dom:loaded", apply_filters_observer); |
|
101 | 101 | //]]> |
|
102 | 102 | </script> |
|
103 | 103 | |
|
104 | 104 | <table width="100%"> |
|
105 | 105 | <tr> |
|
106 | 106 | <td> |
|
107 | 107 | <table> |
|
108 | 108 | <% query.available_filters.sort{|a,b| a[1][:order]<=>b[1][:order]}.each do |filter| %> |
|
109 | 109 | <% field = filter[0] |
|
110 | 110 | options = filter[1] %> |
|
111 | 111 | <tr <%= 'style="display:none;"' unless query.has_filter?(field) %> id="tr_<%= field %>" class="filter"> |
|
112 | 112 | <td class="field"> |
|
113 | 113 | <%= check_box_tag 'f[]', field, query.has_filter?(field), :onclick => "toggle_filter('#{field}');", :id => "cb_#{field}" %> |
|
114 | 114 | <label for="cb_<%= field %>"><%= filter[1][:name] || l(("field_"+field.to_s.gsub(/\_id$/, "")).to_sym) %></label> |
|
115 | 115 | </td> |
|
116 | 116 | <td class="operator"> |
|
117 | <%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), query.operator_for(field)), :id => "operators_#{field}", :onchange => "toggle_operator('#{field}');" %> | |
|
117 | <%= label_tag "op_#{field}", l(:description_filter), :class => "hidden-for-sighted" %> | |
|
118 | <%= select_tag "op[#{field}]", options_for_select(operators_for_select(options[:type]), | |
|
119 | query.operator_for(field)), :id => "operators_#{field}", | |
|
120 | :onchange => "toggle_operator('#{field}');" %> | |
|
118 | 121 | </td> |
|
119 | 122 | <td class="values"> |
|
120 | 123 | <div id="div_values_<%= field %>" style="display:none;"> |
|
121 | 124 | <% case options[:type] |
|
122 | 125 | when :list, :list_optional, :list_status, :list_subprojects %> |
|
123 | 126 | <span class="span_values_<%= field %>"> |
|
124 | 127 | <%= select_tag "v[#{field}][]", options_for_select(options[:values], query.values_for(field)), :class => "values_#{field}", :id => "values_#{field}_1", :multiple => (query.values_for(field) && query.values_for(field).length > 1) %> |
|
125 | 128 | <%= link_to_function image_tag('bullet_toggle_plus.png'), "toggle_multi_select('values_#{field}_1');" %> |
|
126 | 129 | </span> |
|
127 | 130 | <% when :date, :date_past %> |
|
128 | 131 | <span class="span_values_<%= field %>"><%= text_field_tag "v[#{field}][]", query.value_for(field), :size => 10, :class => "values_#{field}", :id => "values_#{field}_1" %> <%= calendar_for "values_#{field}_1" %></span> |
|
129 | 132 | <span class="span_values_<%= field %>"><%= text_field_tag "v[#{field}][]", query.value_for(field, 1), :size => 10, :class => "values_#{field}", :id => "values_#{field}_2" %> <%= calendar_for "values_#{field}_2" %></span> |
|
130 | 133 | <span class="span_values_<%= field %>"><%= text_field_tag "v[#{field}][]", query.value_for(field), :size => 3, :class => "values_#{field}" %> <%= l(:label_day_plural) %></span> |
|
131 | 134 | <% when :string, :text %> |
|
132 | 135 | <span class="span_values_<%= field %>"><%= text_field_tag "v[#{field}][]", query.value_for(field), :class => "values_#{field}", :id => "values_#{field}", :size => 30 %></span> |
|
133 | 136 | <% when :integer, :float %> |
|
134 | 137 | <span class="span_values_<%= field %>"><%= text_field_tag "v[#{field}][]", query.value_for(field), :class => "values_#{field}", :id => "values_#{field}_1", :size => 6 %></span> |
|
135 | 138 | <span class="span_values_<%= field %>"><%= text_field_tag "v[#{field}][]", query.value_for(field, 1), :class => "values_#{field}", :id => "values_#{field}_2", :size => 6 %></span> |
|
136 | 139 | <% end %> |
|
137 | 140 | </div> |
|
138 | 141 | <script type="text/javascript">toggle_filter('<%= field %>');</script> |
|
139 | 142 | </td> |
|
140 | 143 | </tr> |
|
141 | 144 | <% end %> |
|
142 | 145 | </table> |
|
143 | 146 | </td> |
|
144 | 147 | <td class="add-filter"> |
|
145 | 148 | <%= label_tag('add_filter_select', l(:label_filter_add)) %> |
|
146 | 149 | <%= select_tag 'add_filter_select', options_for_select([["",""]] + query.available_filters.sort{|a,b| a[1][:order]<=>b[1][:order]}.collect{|field| [ field[1][:name] || l(("field_"+field[0].to_s.gsub(/_id$/, "")).to_sym), field[0]] unless query.has_filter?(field[0])}.compact), |
|
147 | 150 | :onchange => "add_filter();", |
|
148 | 151 | :name => nil %> |
|
149 | 152 | </td> |
|
150 | 153 | </tr> |
|
151 | 154 | </table> |
|
152 | 155 | <%= hidden_field_tag 'f[]', '' %> |
@@ -1,44 +1,52 | |||
|
1 | 1 | <%= error_messages_for 'query' %> |
|
2 | 2 | |
|
3 | 3 | <div class="box"> |
|
4 | 4 | <div class="tabular"> |
|
5 | 5 | <p><label for="query_name"><%=l(:field_name)%></label> |
|
6 | 6 | <%= text_field 'query', 'name', :size => 80 %></p> |
|
7 | 7 | |
|
8 | 8 | <% if User.current.admin? || User.current.allowed_to?(:manage_public_queries, @project) %> |
|
9 | 9 | <p><label for="query_is_public"><%=l(:field_is_public)%></label> |
|
10 | 10 | <%= check_box 'query', 'is_public', |
|
11 | 11 | :onchange => (User.current.admin? ? nil : 'if (this.checked) {$("query_is_for_all").checked = false; $("query_is_for_all").disabled = true;} else {$("query_is_for_all").disabled = false;}') %></p> |
|
12 | 12 | <% end %> |
|
13 | 13 | |
|
14 | 14 | <p><label for="query_is_for_all"><%=l(:field_is_for_all)%></label> |
|
15 | 15 | <%= check_box_tag 'query_is_for_all', 1, @query.project.nil?, |
|
16 | 16 | :disabled => (!@query.new_record? && (@query.project.nil? || (@query.is_public? && !User.current.admin?))) %></p> |
|
17 | 17 | |
|
18 | 18 | <p><label for="query_default_columns"><%=l(:label_default_columns)%></label> |
|
19 | 19 | <%= check_box_tag 'default_columns', 1, @query.has_default_columns?, :id => 'query_default_columns', |
|
20 | 20 | :onclick => 'if (this.checked) {Element.hide("columns")} else {Element.show("columns")}' %></p> |
|
21 | 21 | |
|
22 | 22 | <p><label for="query_group_by"><%= l(:field_group_by) %></label> |
|
23 | 23 | <%= select 'query', 'group_by', @query.groupable_columns.collect {|c| [c.caption, c.name.to_s]}, :include_blank => true %></p> |
|
24 | 24 | </div> |
|
25 | 25 | |
|
26 | 26 | <fieldset><legend><%= l(:label_filter_plural) %></legend> |
|
27 | 27 | <%= render :partial => 'queries/filters', :locals => {:query => query}%> |
|
28 | 28 | </fieldset> |
|
29 | 29 | |
|
30 | 30 | <fieldset><legend><%= l(:label_sort) %></legend> |
|
31 | 31 | <% 3.times do |i| %> |
|
32 | <%= i+1 %>: <%= select_tag("query[sort_criteria][#{i}][]", | |
|
33 | options_for_select([[]] + query.available_columns.select(&:sortable?).collect {|column| [column.caption, column.name.to_s]}, @query.sort_criteria_key(i))) %> | |
|
34 | <%= select_tag("query[sort_criteria][#{i}][]", | |
|
35 | options_for_select([[], [l(:label_ascending), 'asc'], [l(:label_descending), 'desc']], @query.sort_criteria_order(i))) %><br /> | |
|
32 | <%= i+1 %>: | |
|
33 | <%= label_tag "query_sort_criteria_attribute_" + i.to_s, | |
|
34 | l(:description_query_sort_criteria_attribute), :class => "hidden-for-sighted" %> | |
|
35 | <%= select_tag("query[sort_criteria][#{i}][]", | |
|
36 | options_for_select([[]] + query.available_columns.select(&:sortable?).collect {|column| [column.caption, column.name.to_s]}, @query.sort_criteria_key(i)), | |
|
37 | :id => "query_sort_criteria_attribute_" + i.to_s)%> | |
|
38 | <%= label_tag "query_sort_criteria_direction_" + i.to_s, | |
|
39 | l(:description_query_sort_criteria_direction), :class => "hidden-for-sighted" %> | |
|
40 | <%= select_tag("query[sort_criteria][#{i}][]", | |
|
41 | options_for_select([[], [l(:label_ascending), 'asc'], [l(:label_descending), 'desc']], @query.sort_criteria_order(i)), | |
|
42 | :id => "query_sort_criteria_direction_" + i.to_s) %> | |
|
43 | <br /> | |
|
36 | 44 | <% end %> |
|
37 | 45 | </fieldset> |
|
38 | 46 | |
|
39 | 47 | <% content_tag 'fieldset', :id => 'columns', :style => (query.has_default_columns? ? 'display:none;' : nil) do %> |
|
40 | 48 | <legend><%= l(:field_column_names) %></legend> |
|
41 | 49 | <%= render :partial => 'queries/columns', :locals => {:query => query}%> |
|
42 | 50 | <% end %> |
|
43 | 51 | |
|
44 | 52 | </div> |
@@ -1,1005 +1,1010 | |||
|
1 | 1 | # German translations for Ruby on Rails |
|
2 | 2 | # by Clemens Kofler (clemens@railway.at) |
|
3 | 3 | # additions for Redmine 1.2 by Jens Martsch (jmartsch@gmail.com) |
|
4 | 4 | |
|
5 | 5 | de: |
|
6 | 6 | direction: ltr |
|
7 | 7 | date: |
|
8 | 8 | formats: |
|
9 | 9 | # Use the strftime parameters for formats. |
|
10 | 10 | # When no format has been given, it uses default. |
|
11 | 11 | # You can provide other formats here if you like! |
|
12 | 12 | default: "%d.%m.%Y" |
|
13 | 13 | short: "%e. %b" |
|
14 | 14 | long: "%e. %B %Y" |
|
15 | 15 | |
|
16 | 16 | day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag] |
|
17 | 17 | abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa] |
|
18 | 18 | |
|
19 | 19 | # Don't forget the nil at the beginning; there's no such thing as a 0th month |
|
20 | 20 | month_names: [~, Januar, Februar, MΓ€rz, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember] |
|
21 | 21 | abbr_month_names: [~, Jan, Feb, MΓ€r, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez] |
|
22 | 22 | # Used in date_select and datime_select. |
|
23 | 23 | order: |
|
24 | 24 | - :day |
|
25 | 25 | - :month |
|
26 | 26 | - :year |
|
27 | 27 | |
|
28 | 28 | time: |
|
29 | 29 | formats: |
|
30 | 30 | default: "%d.%m.%Y %H:%M" |
|
31 | 31 | time: "%H:%M" |
|
32 | 32 | short: "%e. %b %H:%M" |
|
33 | 33 | long: "%A, %e. %B %Y, %H:%M Uhr" |
|
34 | 34 | am: "vormittags" |
|
35 | 35 | pm: "nachmittags" |
|
36 | 36 | |
|
37 | 37 | datetime: |
|
38 | 38 | distance_in_words: |
|
39 | 39 | half_a_minute: 'eine halbe Minute' |
|
40 | 40 | less_than_x_seconds: |
|
41 | 41 | one: 'weniger als 1 Sekunde' |
|
42 | 42 | other: 'weniger als %{count} Sekunden' |
|
43 | 43 | x_seconds: |
|
44 | 44 | one: '1 Sekunde' |
|
45 | 45 | other: '%{count} Sekunden' |
|
46 | 46 | less_than_x_minutes: |
|
47 | 47 | one: 'weniger als 1 Minute' |
|
48 | 48 | other: 'weniger als %{count} Minuten' |
|
49 | 49 | x_minutes: |
|
50 | 50 | one: '1 Minute' |
|
51 | 51 | other: '%{count} Minuten' |
|
52 | 52 | about_x_hours: |
|
53 | 53 | one: 'etwa 1 Stunde' |
|
54 | 54 | other: 'etwa %{count} Stunden' |
|
55 | 55 | x_days: |
|
56 | 56 | one: '1 Tag' |
|
57 | 57 | other: '%{count} Tagen' |
|
58 | 58 | about_x_months: |
|
59 | 59 | one: 'etwa 1 Monat' |
|
60 | 60 | other: 'etwa %{count} Monaten' |
|
61 | 61 | x_months: |
|
62 | 62 | one: '1 Monat' |
|
63 | 63 | other: '%{count} Monaten' |
|
64 | 64 | about_x_years: |
|
65 | 65 | one: 'etwa 1 Jahr' |
|
66 | 66 | other: 'etwa %{count} Jahren' |
|
67 | 67 | over_x_years: |
|
68 | 68 | one: 'mehr als 1 Jahr' |
|
69 | 69 | other: 'mehr als %{count} Jahren' |
|
70 | 70 | almost_x_years: |
|
71 | 71 | one: "fast 1 Jahr" |
|
72 | 72 | other: "fast %{count} Jahren" |
|
73 | 73 | |
|
74 | 74 | number: |
|
75 | 75 | # Default format for numbers |
|
76 | 76 | format: |
|
77 | 77 | separator: ',' |
|
78 | 78 | delimiter: '.' |
|
79 | 79 | precision: 2 |
|
80 | 80 | currency: |
|
81 | 81 | format: |
|
82 | 82 | unit: 'β¬' |
|
83 | 83 | format: '%n %u' |
|
84 | 84 | separator: |
|
85 | 85 | delimiter: |
|
86 | 86 | precision: |
|
87 | 87 | percentage: |
|
88 | 88 | format: |
|
89 | 89 | delimiter: "" |
|
90 | 90 | precision: |
|
91 | 91 | format: |
|
92 | 92 | delimiter: "" |
|
93 | 93 | human: |
|
94 | 94 | format: |
|
95 | 95 | delimiter: "" |
|
96 | 96 | precision: 1 |
|
97 | 97 | storage_units: |
|
98 | 98 | format: "%n %u" |
|
99 | 99 | units: |
|
100 | 100 | byte: |
|
101 | 101 | one: "Byte" |
|
102 | 102 | other: "Bytes" |
|
103 | 103 | kb: "KB" |
|
104 | 104 | mb: "MB" |
|
105 | 105 | gb: "GB" |
|
106 | 106 | tb: "TB" |
|
107 | 107 | |
|
108 | 108 | |
|
109 | 109 | # Used in array.to_sentence. |
|
110 | 110 | support: |
|
111 | 111 | array: |
|
112 | 112 | sentence_connector: "und" |
|
113 | 113 | skip_last_comma: true |
|
114 | 114 | |
|
115 | 115 | activerecord: |
|
116 | 116 | errors: |
|
117 | 117 | template: |
|
118 | 118 | header: |
|
119 | 119 | one: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler." |
|
120 | 120 | other: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler." |
|
121 | 121 | body: "Bitte ΓΌberprΓΌfen Sie die folgenden Felder:" |
|
122 | 122 | |
|
123 | 123 | messages: |
|
124 | 124 | inclusion: "ist kein gΓΌltiger Wert" |
|
125 | 125 | exclusion: "ist nicht verfΓΌgbar" |
|
126 | 126 | invalid: "ist nicht gΓΌltig" |
|
127 | 127 | confirmation: "stimmt nicht mit der BestΓ€tigung ΓΌberein" |
|
128 | 128 | accepted: "muss akzeptiert werden" |
|
129 | 129 | empty: "muss ausgefΓΌllt werden" |
|
130 | 130 | blank: "muss ausgefΓΌllt werden" |
|
131 | 131 | too_long: "ist zu lang (nicht mehr als %{count} Zeichen)" |
|
132 | 132 | too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)" |
|
133 | 133 | wrong_length: "hat die falsche LΓ€nge (muss genau %{count} Zeichen haben)" |
|
134 | 134 | taken: "ist bereits vergeben" |
|
135 | 135 | not_a_number: "ist keine Zahl" |
|
136 | 136 | not_a_date: "is kein gΓΌltiges Datum" |
|
137 | 137 | greater_than: "muss grΓΆΓer als %{count} sein" |
|
138 | 138 | greater_than_or_equal_to: "muss grΓΆΓer oder gleich %{count} sein" |
|
139 | 139 | equal_to: "muss genau %{count} sein" |
|
140 | 140 | less_than: "muss kleiner als %{count} sein" |
|
141 | 141 | less_than_or_equal_to: "muss kleiner oder gleich %{count} sein" |
|
142 | 142 | odd: "muss ungerade sein" |
|
143 | 143 | even: "muss gerade sein" |
|
144 | 144 | greater_than_start_date: "muss grΓΆΓer als Anfangsdatum sein" |
|
145 | 145 | not_same_project: "gehΓΆrt nicht zum selben Projekt" |
|
146 | 146 | circular_dependency: "Diese Beziehung wΓΌrde eine zyklische AbhΓ€ngigkeit erzeugen" |
|
147 | 147 | cant_link_an_issue_with_a_descendant: "Ein Ticket kann nicht mit einer ihrer Unteraufgaben verlinkt werden" |
|
148 | 148 | |
|
149 | 149 | actionview_instancetag_blank_option: Bitte auswΓ€hlen |
|
150 | 150 | |
|
151 | 151 | general_text_No: 'Nein' |
|
152 | 152 | general_text_Yes: 'Ja' |
|
153 | 153 | general_text_no: 'nein' |
|
154 | 154 | general_text_yes: 'ja' |
|
155 | 155 | general_lang_name: 'Deutsch' |
|
156 | 156 | general_csv_separator: ';' |
|
157 | 157 | general_csv_decimal_separator: ',' |
|
158 | 158 | general_csv_encoding: ISO-8859-1 |
|
159 | 159 | general_pdf_encoding: UTF-8 |
|
160 | 160 | general_first_day_of_week: '1' |
|
161 | 161 | |
|
162 | 162 | notice_account_updated: Konto wurde erfolgreich aktualisiert. |
|
163 | 163 | notice_account_invalid_creditentials: Benutzer oder Kennwort ist ungΓΌltig. |
|
164 | 164 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. |
|
165 | 165 | notice_account_wrong_password: Falsches Kennwort. |
|
166 | 166 | notice_account_register_done: Konto wurde erfolgreich angelegt. |
|
167 | 167 | notice_account_unknown_email: Unbekannter Benutzer. |
|
168 | 168 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. UnmΓΆglich, das Kennwort zu Γ€ndern. |
|
169 | 169 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wΓ€hlen, wurde Ihnen geschickt. |
|
170 | 170 | notice_account_activated: Ihr Konto ist aktiviert. Sie kΓΆnnen sich jetzt anmelden. |
|
171 | 171 | notice_successful_create: Erfolgreich angelegt |
|
172 | 172 | notice_successful_update: Erfolgreich aktualisiert. |
|
173 | 173 | notice_successful_delete: Erfolgreich gelΓΆscht. |
|
174 | 174 | notice_successful_connection: Verbindung erfolgreich. |
|
175 | 175 | notice_file_not_found: Anhang existiert nicht oder ist gelΓΆscht worden. |
|
176 | 176 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geΓ€ndert. |
|
177 | 177 | notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. |
|
178 | 178 | notice_email_sent: "Eine E-Mail wurde an %{value} gesendet." |
|
179 | 179 | notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten (%{value})." |
|
180 | 180 | notice_feeds_access_key_reseted: Ihr Atom-ZugriffsschlΓΌssel wurde zurΓΌckgesetzt. |
|
181 | 181 | notice_api_access_key_reseted: Ihr API-ZugriffsschlΓΌssel wurde zurΓΌckgesetzt. |
|
182 | 182 | notice_failed_to_save_issues: "%{count} von %{total} ausgewΓ€hlten Tickets konnte(n) nicht gespeichert werden: %{ids}." |
|
183 | 183 | notice_failed_to_save_members: "Benutzer konnte nicht gespeichert werden: %{errors}." |
|
184 | 184 | notice_no_issue_selected: "Kein Ticket ausgewΓ€hlt! Bitte wΓ€hlen Sie die Tickets, die Sie bearbeiten mΓΆchten." |
|
185 | 185 | notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators." |
|
186 | 186 | notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen. |
|
187 | 187 | notice_unable_delete_version: Die Version konnte nicht gelΓΆscht werden. |
|
188 | 188 | notice_unable_delete_time_entry: Der Zeiterfassungseintrag konnte nicht gelΓΆscht werden. |
|
189 | 189 | notice_issue_done_ratios_updated: Der Ticket-Fortschritt wurde aktualisiert. |
|
190 | 190 | |
|
191 | 191 | error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %{value}" |
|
192 | 192 | error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv. |
|
193 | 193 | error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %{value}" |
|
194 | 194 | error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden." |
|
195 | 195 | error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehΓΆrt nicht zu diesem Projekt.' |
|
196 | 196 | error_no_tracker_in_project: Diesem Projekt ist kein Tracker zugeordnet. Bitte ΓΌberprΓΌfen Sie die Projekteinstellungen. |
|
197 | 197 | error_no_default_issue_status: Es ist kein Status als Standard definiert. Bitte ΓΌberprΓΌfen Sie Ihre Konfiguration (unter "Administration -> Ticket-Status"). |
|
198 | 198 | error_can_not_delete_custom_field: Kann das benutzerdefinierte Feld nicht lΓΆschen. |
|
199 | 199 | error_can_not_delete_tracker: Dieser Tracker enthΓ€lt Tickets und kann nicht gelΓΆscht werden. |
|
200 | 200 | error_can_not_remove_role: Diese Rolle wird verwendet und kann nicht gelΓΆscht werden. |
|
201 | 201 | error_can_not_reopen_issue_on_closed_version: Das Ticket ist einer abgeschlossenen Version zugeordnet und kann daher nicht wieder geΓΆffnet werden. |
|
202 | 202 | error_can_not_archive_project: Dieses Projekt kann nicht archiviert werden. |
|
203 | 203 | error_issue_done_ratios_not_updated: Der Ticket-Fortschritt wurde nicht aktualisiert. |
|
204 | 204 | error_workflow_copy_source: Bitte wΓ€hlen Sie einen Quell-Tracker und eine Quell-Rolle. |
|
205 | 205 | error_workflow_copy_target: Bitte wΓ€hlen Sie die Ziel-Tracker und -Rollen. |
|
206 | 206 | error_unable_delete_issue_status: "Der Ticket-Status konnte nicht gelΓΆscht werden." |
|
207 | 207 | error_unable_to_connect: Fehler beim Verbinden (%{value}) |
|
208 | 208 | warning_attachments_not_saved: "%{count} Datei(en) konnten nicht gespeichert werden." |
|
209 | 209 | |
|
210 | 210 | mail_subject_lost_password: "Ihr %{value} Kennwort" |
|
211 | 211 | mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu Γ€ndern:' |
|
212 | 212 | mail_subject_register: "%{value} Kontoaktivierung" |
|
213 | 213 | mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:' |
|
214 | 214 | mail_body_account_information_external: "Sie kΓΆnnen sich mit Ihrem Konto %{value} an anmelden." |
|
215 | 215 | mail_body_account_information: Ihre Konto-Informationen |
|
216 | 216 | mail_subject_account_activation_request: "Antrag auf %{value} Kontoaktivierung" |
|
217 | 217 | mail_body_account_activation_request: "Ein neuer Benutzer (%{value}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:" |
|
218 | 218 | mail_subject_reminder: "%{count} Tickets mΓΌssen in den nΓ€chsten %{days} Tagen abgegeben werden" |
|
219 | 219 | mail_body_reminder: "%{count} Tickets, die Ihnen zugewiesen sind, mΓΌssen in den nΓ€chsten %{days} Tagen abgegeben werden:" |
|
220 | 220 | mail_subject_wiki_content_added: "Wiki-Seite '%{id}' hinzugefΓΌgt" |
|
221 | 221 | mail_body_wiki_content_added: "Die Wiki-Seite '%{id}' wurde von %{author} hinzugefΓΌgt." |
|
222 | 222 | mail_subject_wiki_content_updated: "Wiki-Seite '%{id}' erfolgreich aktualisiert" |
|
223 | 223 | mail_body_wiki_content_updated: "Die Wiki-Seite '%{id}' wurde von %{author} aktualisiert." |
|
224 | 224 | |
|
225 | 225 | gui_validation_error: 1 Fehler |
|
226 | 226 | gui_validation_error_plural: "%{count} Fehler" |
|
227 | 227 | |
|
228 | 228 | field_name: Name |
|
229 | 229 | field_description: Beschreibung |
|
230 | 230 | field_summary: Zusammenfassung |
|
231 | 231 | field_is_required: Erforderlich |
|
232 | 232 | field_firstname: Vorname |
|
233 | 233 | field_lastname: Nachname |
|
234 | 234 | field_mail: E-Mail |
|
235 | 235 | field_filename: Datei |
|
236 | 236 | field_filesize: GrΓΆΓe |
|
237 | 237 | field_downloads: Downloads |
|
238 | 238 | field_author: Autor |
|
239 | 239 | field_created_on: Angelegt |
|
240 | 240 | field_updated_on: Aktualisiert |
|
241 | 241 | field_field_format: Format |
|
242 | 242 | field_is_for_all: FΓΌr alle Projekte |
|
243 | 243 | field_possible_values: MΓΆgliche Werte |
|
244 | 244 | field_regexp: RegulΓ€rer Ausdruck |
|
245 | 245 | field_min_length: Minimale LΓ€nge |
|
246 | 246 | field_max_length: Maximale LΓ€nge |
|
247 | 247 | field_value: Wert |
|
248 | 248 | field_category: Kategorie |
|
249 | 249 | field_title: Titel |
|
250 | 250 | field_project: Projekt |
|
251 | 251 | field_issue: Ticket |
|
252 | 252 | field_status: Status |
|
253 | 253 | field_notes: Kommentare |
|
254 | 254 | field_is_closed: Ticket geschlossen |
|
255 | 255 | field_is_default: Standardeinstellung |
|
256 | 256 | field_tracker: Tracker |
|
257 | 257 | field_subject: Thema |
|
258 | 258 | field_due_date: Abgabedatum |
|
259 | 259 | field_assigned_to: Zugewiesen an |
|
260 | 260 | field_priority: PrioritΓ€t |
|
261 | 261 | field_fixed_version: Zielversion |
|
262 | 262 | field_user: Benutzer |
|
263 | 263 | field_principal: Auftraggeber |
|
264 | 264 | field_role: Rolle |
|
265 | 265 | field_homepage: Projekt-Homepage |
|
266 | 266 | field_is_public: Γffentlich |
|
267 | 267 | field_parent: Unterprojekt von |
|
268 | 268 | field_is_in_roadmap: In der Roadmap anzeigen |
|
269 | 269 | field_login: Mitgliedsname |
|
270 | 270 | field_mail_notification: Mailbenachrichtigung |
|
271 | 271 | field_admin: Administrator |
|
272 | 272 | field_last_login_on: Letzte Anmeldung |
|
273 | 273 | field_language: Sprache |
|
274 | 274 | field_effective_date: Datum |
|
275 | 275 | field_password: Kennwort |
|
276 | 276 | field_new_password: Neues Kennwort |
|
277 | 277 | field_password_confirmation: BestΓ€tigung |
|
278 | 278 | field_version: Version |
|
279 | 279 | field_type: Typ |
|
280 | 280 | field_host: Host |
|
281 | 281 | field_port: Port |
|
282 | 282 | field_account: Konto |
|
283 | 283 | field_base_dn: Base DN |
|
284 | 284 | field_attr_login: Mitgliedsname-Attribut |
|
285 | 285 | field_attr_firstname: Vorname-Attribut |
|
286 | 286 | field_attr_lastname: Name-Attribut |
|
287 | 287 | field_attr_mail: E-Mail-Attribut |
|
288 | 288 | field_onthefly: On-the-fly-Benutzererstellung |
|
289 | 289 | field_start_date: Beginn |
|
290 | 290 | field_done_ratio: "% erledigt" |
|
291 | 291 | field_auth_source: Authentifizierungs-Modus |
|
292 | 292 | field_hide_mail: E-Mail-Adresse nicht anzeigen |
|
293 | 293 | field_comments: Kommentar |
|
294 | 294 | field_url: URL |
|
295 | 295 | field_start_page: Hauptseite |
|
296 | 296 | field_subproject: Unterprojekt von |
|
297 | 297 | field_hours: Stunden |
|
298 | 298 | field_activity: AktivitΓ€t |
|
299 | 299 | field_spent_on: Datum |
|
300 | 300 | field_identifier: Kennung |
|
301 | 301 | field_is_filter: Als Filter benutzen |
|
302 | 302 | field_issue_to: ZugehΓΆriges Ticket |
|
303 | 303 | field_delay: Pufferzeit |
|
304 | 304 | field_assignable: Tickets kΓΆnnen dieser Rolle zugewiesen werden |
|
305 | 305 | field_redirect_existing_links: Existierende Links umleiten |
|
306 | 306 | field_estimated_hours: GeschΓ€tzter Aufwand |
|
307 | 307 | field_column_names: Spalten |
|
308 | 308 | field_time_entries: Logzeit |
|
309 | 309 | field_time_zone: Zeitzone |
|
310 | 310 | field_searchable: Durchsuchbar |
|
311 | 311 | field_default_value: Standardwert |
|
312 | 312 | field_comments_sorting: Kommentare anzeigen |
|
313 | 313 | field_parent_title: Γbergeordnete Seite |
|
314 | 314 | field_editable: Bearbeitbar |
|
315 | 315 | field_watcher: Beobachter |
|
316 | 316 | field_identity_url: OpenID-URL |
|
317 | 317 | field_content: Inhalt |
|
318 | 318 | field_group_by: Gruppiere Ergebnisse nach |
|
319 | 319 | field_sharing: Gemeinsame Verwendung |
|
320 | 320 | field_parent_issue: Γbergeordnete Aufgabe |
|
321 | 321 | |
|
322 | 322 | setting_app_title: Applikations-Titel |
|
323 | 323 | setting_app_subtitle: Applikations-Untertitel |
|
324 | 324 | setting_welcome_text: Willkommenstext |
|
325 | 325 | setting_default_language: Default-Sprache |
|
326 | 326 | setting_login_required: Authentifizierung erforderlich |
|
327 | 327 | setting_self_registration: Anmeldung ermΓΆglicht |
|
328 | 328 | setting_attachment_max_size: Max. DateigrΓΆΓe |
|
329 | 329 | setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export |
|
330 | 330 | setting_mail_from: E-Mail-Absender |
|
331 | 331 | setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden |
|
332 | 332 | setting_plain_text_mail: Nur reinen Text (kein HTML) senden |
|
333 | 333 | setting_host_name: Hostname |
|
334 | 334 | setting_text_formatting: Textformatierung |
|
335 | 335 | setting_wiki_compression: Wiki-Historie komprimieren |
|
336 | 336 | setting_feeds_limit: Max. Anzahl EintrΓ€ge pro Atom-Feed |
|
337 | 337 | setting_default_projects_public: Neue Projekte sind standardmΓ€Γig ΓΆffentlich |
|
338 | 338 | setting_autofetch_changesets: Changesets automatisch abrufen |
|
339 | 339 | setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen |
|
340 | 340 | setting_commit_ref_keywords: SchlΓΌsselwΓΆrter (Beziehungen) |
|
341 | 341 | setting_commit_fix_keywords: SchlΓΌsselwΓΆrter (Status) |
|
342 | 342 | setting_autologin: Automatische Anmeldung |
|
343 | 343 | setting_date_format: Datumsformat |
|
344 | 344 | setting_time_format: Zeitformat |
|
345 | 345 | setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben |
|
346 | 346 | setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung |
|
347 | 347 | setting_repositories_encodings: Kodierungen der Projektarchive |
|
348 | 348 | setting_emails_footer: E-Mail-FuΓzeile |
|
349 | 349 | setting_protocol: Protokoll |
|
350 | 350 | setting_per_page_options: Objekte pro Seite |
|
351 | 351 | setting_user_format: Benutzer-Anzeigeformat |
|
352 | 352 | setting_activity_days_default: Anzahl Tage pro Seite der Projekt-AktivitΓ€t |
|
353 | 353 | setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen |
|
354 | 354 | setting_enabled_scm: Aktivierte Versionskontrollsysteme |
|
355 | 355 | setting_mail_handler_body_delimiters: "Schneide E-Mails nach einer dieser Zeilen ab" |
|
356 | 356 | setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren |
|
357 | 357 | setting_mail_handler_api_key: API-SchlΓΌssel |
|
358 | 358 | setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren |
|
359 | 359 | setting_gravatar_enabled: Gravatar-Benutzerbilder benutzen |
|
360 | 360 | setting_gravatar_default: Standard-Gravatar-Bild |
|
361 | 361 | setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen |
|
362 | 362 | setting_file_max_size_displayed: Maximale GrΓΆΓe inline angezeigter Textdateien |
|
363 | 363 | setting_repository_log_display_limit: Maximale Anzahl anzuzeigender Revisionen in der Historie einer Datei |
|
364 | 364 | setting_openid: Erlaube OpenID-Anmeldung und -Registrierung |
|
365 | 365 | setting_password_min_length: MindestlΓ€nge des Kennworts |
|
366 | 366 | setting_new_project_user_role_id: Rolle, die einem Nicht-Administrator zugeordnet wird, der ein Projekt erstellt |
|
367 | 367 | setting_default_projects_modules: StandardmΓ€Γig aktivierte Module fΓΌr neue Projekte |
|
368 | 368 | setting_issue_done_ratio: Berechne den Ticket-Fortschritt mittels |
|
369 | 369 | setting_issue_done_ratio_issue_field: Ticket-Feld %-erledigt |
|
370 | 370 | setting_issue_done_ratio_issue_status: Ticket-Status |
|
371 | 371 | setting_start_of_week: Wochenanfang |
|
372 | 372 | setting_rest_api_enabled: REST-Schnittstelle aktivieren |
|
373 | 373 | setting_cache_formatted_text: Formatierten Text im Cache speichern |
|
374 | 374 | |
|
375 | 375 | permission_add_project: Projekt erstellen |
|
376 | 376 | permission_add_subprojects: Unterprojekte erstellen |
|
377 | 377 | permission_edit_project: Projekt bearbeiten |
|
378 | 378 | permission_select_project_modules: Projektmodule auswΓ€hlen |
|
379 | 379 | permission_manage_members: Mitglieder verwalten |
|
380 | 380 | permission_manage_project_activities: AktivitΓ€ten (Zeiterfassung) verwalten |
|
381 | 381 | permission_manage_versions: Versionen verwalten |
|
382 | 382 | permission_manage_categories: Ticket-Kategorien verwalten |
|
383 | 383 | permission_view_issues: Tickets anzeigen |
|
384 | 384 | permission_add_issues: Tickets hinzufΓΌgen |
|
385 | 385 | permission_edit_issues: Tickets bearbeiten |
|
386 | 386 | permission_manage_issue_relations: Ticket-Beziehungen verwalten |
|
387 | 387 | permission_add_issue_notes: Kommentare hinzufΓΌgen |
|
388 | 388 | permission_edit_issue_notes: Kommentare bearbeiten |
|
389 | 389 | permission_edit_own_issue_notes: Eigene Kommentare bearbeiten |
|
390 | 390 | permission_move_issues: Tickets verschieben |
|
391 | 391 | permission_delete_issues: Tickets lΓΆschen |
|
392 | 392 | permission_manage_public_queries: Γffentliche Filter verwalten |
|
393 | 393 | permission_save_queries: Filter speichern |
|
394 | 394 | permission_view_gantt: Gantt-Diagramm ansehen |
|
395 | 395 | permission_view_calendar: Kalender ansehen |
|
396 | 396 | permission_view_issue_watchers: Liste der Beobachter ansehen |
|
397 | 397 | permission_add_issue_watchers: Beobachter hinzufΓΌgen |
|
398 | 398 | permission_delete_issue_watchers: Beobachter lΓΆschen |
|
399 | 399 | permission_log_time: AufwΓ€nde buchen |
|
400 | 400 | permission_view_time_entries: Gebuchte AufwΓ€nde ansehen |
|
401 | 401 | permission_edit_time_entries: Gebuchte AufwΓ€nde bearbeiten |
|
402 | 402 | permission_edit_own_time_entries: Selbst gebuchte AufwΓ€nde bearbeiten |
|
403 | 403 | permission_manage_news: News verwalten |
|
404 | 404 | permission_comment_news: News kommentieren |
|
405 | 405 | permission_manage_documents: Dokumente verwalten |
|
406 | 406 | permission_view_documents: Dokumente ansehen |
|
407 | 407 | permission_manage_files: Dateien verwalten |
|
408 | 408 | permission_view_files: Dateien ansehen |
|
409 | 409 | permission_manage_wiki: Wiki verwalten |
|
410 | 410 | permission_rename_wiki_pages: Wiki-Seiten umbenennen |
|
411 | 411 | permission_delete_wiki_pages: Wiki-Seiten lΓΆschen |
|
412 | 412 | permission_view_wiki_pages: Wiki ansehen |
|
413 | 413 | permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen |
|
414 | 414 | permission_edit_wiki_pages: Wiki-Seiten bearbeiten |
|
415 | 415 | permission_delete_wiki_pages_attachments: AnhΓ€nge lΓΆschen |
|
416 | 416 | permission_protect_wiki_pages: Wiki-Seiten schΓΌtzen |
|
417 | 417 | permission_manage_repository: Projektarchiv verwalten |
|
418 | 418 | permission_browse_repository: Projektarchiv ansehen |
|
419 | 419 | permission_view_changesets: Changesets ansehen |
|
420 | 420 | permission_commit_access: Commit-Zugriff (ΓΌber WebDAV) |
|
421 | 421 | permission_manage_boards: Foren verwalten |
|
422 | 422 | permission_view_messages: ForenbeitrΓ€ge ansehen |
|
423 | 423 | permission_add_messages: ForenbeitrΓ€ge hinzufΓΌgen |
|
424 | 424 | permission_edit_messages: ForenbeitrΓ€ge bearbeiten |
|
425 | 425 | permission_edit_own_messages: Eigene ForenbeitrΓ€ge bearbeiten |
|
426 | 426 | permission_delete_messages: ForenbeitrΓ€ge lΓΆschen |
|
427 | 427 | permission_delete_own_messages: Eigene ForenbeitrΓ€ge lΓΆschen |
|
428 | 428 | permission_export_wiki_pages: Wiki-Seiten exportieren |
|
429 | 429 | permission_manage_subtasks: Unteraufgaben verwalten |
|
430 | 430 | |
|
431 | 431 | project_module_issue_tracking: Ticket-Verfolgung |
|
432 | 432 | project_module_time_tracking: Zeiterfassung |
|
433 | 433 | project_module_news: News |
|
434 | 434 | project_module_documents: Dokumente |
|
435 | 435 | project_module_files: Dateien |
|
436 | 436 | project_module_wiki: Wiki |
|
437 | 437 | project_module_repository: Projektarchiv |
|
438 | 438 | project_module_boards: Foren |
|
439 | 439 | project_module_calendar: Kalender |
|
440 | 440 | project_module_gantt: Gantt |
|
441 | 441 | |
|
442 | 442 | label_user: Benutzer |
|
443 | 443 | label_user_plural: Benutzer |
|
444 | 444 | label_user_new: Neuer Benutzer |
|
445 | 445 | label_user_anonymous: Anonym |
|
446 | 446 | label_project: Projekt |
|
447 | 447 | label_project_new: Neues Projekt |
|
448 | 448 | label_project_plural: Projekte |
|
449 | 449 | label_x_projects: |
|
450 | 450 | zero: keine Projekte |
|
451 | 451 | one: 1 Projekt |
|
452 | 452 | other: "%{count} Projekte" |
|
453 | 453 | label_project_all: Alle Projekte |
|
454 | 454 | label_project_latest: Neueste Projekte |
|
455 | 455 | label_issue: Ticket |
|
456 | 456 | label_issue_new: Neues Ticket |
|
457 | 457 | label_issue_plural: Tickets |
|
458 | 458 | label_issue_view_all: Alle Tickets anzeigen |
|
459 | 459 | label_issues_by: "Tickets von %{value}" |
|
460 | 460 | label_issue_added: Ticket hinzugefΓΌgt |
|
461 | 461 | label_issue_updated: Ticket aktualisiert |
|
462 | 462 | label_document: Dokument |
|
463 | 463 | label_document_new: Neues Dokument |
|
464 | 464 | label_document_plural: Dokumente |
|
465 | 465 | label_document_added: Dokument hinzugefΓΌgt |
|
466 | 466 | label_role: Rolle |
|
467 | 467 | label_role_plural: Rollen |
|
468 | 468 | label_role_new: Neue Rolle |
|
469 | 469 | label_role_and_permissions: Rollen und Rechte |
|
470 | 470 | label_member: Mitglied |
|
471 | 471 | label_member_new: Neues Mitglied |
|
472 | 472 | label_member_plural: Mitglieder |
|
473 | 473 | label_tracker: Tracker |
|
474 | 474 | label_tracker_plural: Tracker |
|
475 | 475 | label_tracker_new: Neuer Tracker |
|
476 | 476 | label_workflow: Workflow |
|
477 | 477 | label_issue_status: Ticket-Status |
|
478 | 478 | label_issue_status_plural: Ticket-Status |
|
479 | 479 | label_issue_status_new: Neuer Status |
|
480 | 480 | label_issue_category: Ticket-Kategorie |
|
481 | 481 | label_issue_category_plural: Ticket-Kategorien |
|
482 | 482 | label_issue_category_new: Neue Kategorie |
|
483 | 483 | label_custom_field: Benutzerdefiniertes Feld |
|
484 | 484 | label_custom_field_plural: Benutzerdefinierte Felder |
|
485 | 485 | label_custom_field_new: Neues Feld |
|
486 | 486 | label_enumerations: AufzΓ€hlungen |
|
487 | 487 | label_enumeration_new: Neuer Wert |
|
488 | 488 | label_information: Information |
|
489 | 489 | label_information_plural: Informationen |
|
490 | 490 | label_please_login: Anmelden |
|
491 | 491 | label_register: Registrieren |
|
492 | 492 | label_login_with_open_id_option: oder mit OpenID anmelden |
|
493 | 493 | label_password_lost: Kennwort vergessen |
|
494 | 494 | label_home: Hauptseite |
|
495 | 495 | label_my_page: Meine Seite |
|
496 | 496 | label_my_account: Mein Konto |
|
497 | 497 | label_my_projects: Meine Projekte |
|
498 | 498 | label_my_page_block: Bereich "Meine Seite" |
|
499 | 499 | label_administration: Administration |
|
500 | 500 | label_login: Anmelden |
|
501 | 501 | label_logout: Abmelden |
|
502 | 502 | label_help: Hilfe |
|
503 | 503 | label_reported_issues: Gemeldete Tickets |
|
504 | 504 | label_assigned_to_me_issues: Mir zugewiesen |
|
505 | 505 | label_last_login: Letzte Anmeldung |
|
506 | 506 | label_registered_on: Angemeldet am |
|
507 | 507 | label_activity: AktivitΓ€t |
|
508 | 508 | label_overall_activity: AktivitΓ€t aller Projekte anzeigen |
|
509 | 509 | label_user_activity: "AktivitΓ€t von %{value}" |
|
510 | 510 | label_new: Neu |
|
511 | 511 | label_logged_as: Angemeldet als |
|
512 | 512 | label_environment: Umgebung |
|
513 | 513 | label_authentication: Authentifizierung |
|
514 | 514 | label_auth_source: Authentifizierungs-Modus |
|
515 | 515 | label_auth_source_new: Neuer Authentifizierungs-Modus |
|
516 | 516 | label_auth_source_plural: Authentifizierungs-Arten |
|
517 | 517 | label_subproject_plural: Unterprojekte |
|
518 | 518 | label_subproject_new: Neues Unterprojekt |
|
519 | 519 | label_and_its_subprojects: "%{value} und dessen Unterprojekte" |
|
520 | 520 | label_min_max_length: LΓ€nge (Min. - Max.) |
|
521 | 521 | label_list: Liste |
|
522 | 522 | label_date: Datum |
|
523 | 523 | label_integer: Zahl |
|
524 | 524 | label_float: FlieΓkommazahl |
|
525 | 525 | label_boolean: Boolean |
|
526 | 526 | label_string: Text |
|
527 | 527 | label_text: Langer Text |
|
528 | 528 | label_attribute: Attribut |
|
529 | 529 | label_attribute_plural: Attribute |
|
530 | 530 | label_download: "%{count} Download" |
|
531 | 531 | label_download_plural: "%{count} Downloads" |
|
532 | 532 | label_no_data: Nichts anzuzeigen |
|
533 | 533 | label_change_status: Statuswechsel |
|
534 | 534 | label_history: Historie |
|
535 | 535 | label_attachment: Datei |
|
536 | 536 | label_attachment_new: Neue Datei |
|
537 | 537 | label_attachment_delete: Anhang lΓΆschen |
|
538 | 538 | label_attachment_plural: Dateien |
|
539 | 539 | label_file_added: Datei hinzugefΓΌgt |
|
540 | 540 | label_report: Bericht |
|
541 | 541 | label_report_plural: Berichte |
|
542 | 542 | label_news: News |
|
543 | 543 | label_news_new: News hinzufΓΌgen |
|
544 | 544 | label_news_plural: News |
|
545 | 545 | label_news_latest: Letzte News |
|
546 | 546 | label_news_view_all: Alle News anzeigen |
|
547 | 547 | label_news_added: News hinzugefΓΌgt |
|
548 | 548 | label_settings: Konfiguration |
|
549 | 549 | label_overview: Γbersicht |
|
550 | 550 | label_version: Version |
|
551 | 551 | label_version_new: Neue Version |
|
552 | 552 | label_version_plural: Versionen |
|
553 | 553 | label_close_versions: VollstΓ€ndige Versionen schlieΓen |
|
554 | 554 | label_confirmation: BestΓ€tigung |
|
555 | 555 | label_export_to: "Auch abrufbar als:" |
|
556 | 556 | label_read: Lesen... |
|
557 | 557 | label_public_projects: Γffentliche Projekte |
|
558 | 558 | label_open_issues: offen |
|
559 | 559 | label_open_issues_plural: offen |
|
560 | 560 | label_closed_issues: geschlossen |
|
561 | 561 | label_closed_issues_plural: geschlossen |
|
562 | 562 | label_x_open_issues_abbr_on_total: |
|
563 | 563 | zero: 0 offen / %{total} |
|
564 | 564 | one: 1 offen / %{total} |
|
565 | 565 | other: "%{count} offen / %{total}" |
|
566 | 566 | label_x_open_issues_abbr: |
|
567 | 567 | zero: 0 offen |
|
568 | 568 | one: 1 offen |
|
569 | 569 | other: "%{count} offen" |
|
570 | 570 | label_x_closed_issues_abbr: |
|
571 | 571 | zero: 0 geschlossen |
|
572 | 572 | one: 1 geschlossen |
|
573 | 573 | other: "%{count} geschlossen" |
|
574 | 574 | label_total: Gesamtzahl |
|
575 | 575 | label_permissions: Berechtigungen |
|
576 | 576 | label_current_status: GegenwΓ€rtiger Status |
|
577 | 577 | label_new_statuses_allowed: Neue Berechtigungen |
|
578 | 578 | label_all: alle |
|
579 | 579 | label_none: kein |
|
580 | 580 | label_nobody: Niemand |
|
581 | 581 | label_next: Weiter |
|
582 | 582 | label_previous: ZurΓΌck |
|
583 | 583 | label_used_by: Benutzt von |
|
584 | 584 | label_details: Details |
|
585 | 585 | label_add_note: Kommentar hinzufΓΌgen |
|
586 | 586 | label_per_page: Pro Seite |
|
587 | 587 | label_calendar: Kalender |
|
588 | 588 | label_months_from: Monate ab |
|
589 | 589 | label_gantt: Gantt-Diagramm |
|
590 | 590 | label_internal: Intern |
|
591 | 591 | label_last_changes: "%{count} letzte Γnderungen" |
|
592 | 592 | label_change_view_all: Alle Γnderungen anzeigen |
|
593 | 593 | label_personalize_page: Diese Seite anpassen |
|
594 | 594 | label_comment: Kommentar |
|
595 | 595 | label_comment_plural: Kommentare |
|
596 | 596 | label_x_comments: |
|
597 | 597 | zero: keine Kommentare |
|
598 | 598 | one: 1 Kommentar |
|
599 | 599 | other: "%{count} Kommentare" |
|
600 | 600 | label_comment_add: Kommentar hinzufΓΌgen |
|
601 | 601 | label_comment_added: Kommentar hinzugefΓΌgt |
|
602 | 602 | label_comment_delete: Kommentar lΓΆschen |
|
603 | 603 | label_query: Benutzerdefinierte Abfrage |
|
604 | 604 | label_query_plural: Benutzerdefinierte Berichte |
|
605 | 605 | label_query_new: Neuer Bericht |
|
606 | 606 | label_filter_add: Filter hinzufΓΌgen |
|
607 | 607 | label_filter_plural: Filter |
|
608 | 608 | label_equals: ist |
|
609 | 609 | label_not_equals: ist nicht |
|
610 | 610 | label_in_less_than: in weniger als |
|
611 | 611 | label_in_more_than: in mehr als |
|
612 | 612 | label_greater_or_equal: ">=" |
|
613 | 613 | label_less_or_equal: "<=" |
|
614 | 614 | label_in: an |
|
615 | 615 | label_today: heute |
|
616 | 616 | label_all_time: gesamter Zeitraum |
|
617 | 617 | label_yesterday: gestern |
|
618 | 618 | label_this_week: aktuelle Woche |
|
619 | 619 | label_last_week: vorige Woche |
|
620 | 620 | label_last_n_days: "die letzten %{count} Tage" |
|
621 | 621 | label_this_month: aktueller Monat |
|
622 | 622 | label_last_month: voriger Monat |
|
623 | 623 | label_this_year: aktuelles Jahr |
|
624 | 624 | label_date_range: Zeitraum |
|
625 | 625 | label_less_than_ago: vor weniger als |
|
626 | 626 | label_more_than_ago: vor mehr als |
|
627 | 627 | label_ago: vor |
|
628 | 628 | label_contains: enthΓ€lt |
|
629 | 629 | label_not_contains: enthΓ€lt nicht |
|
630 | 630 | label_day_plural: Tage |
|
631 | 631 | label_repository: Projektarchiv |
|
632 | 632 | label_repository_plural: Projektarchive |
|
633 | 633 | label_browse: Codebrowser |
|
634 | 634 | label_modification: "%{count} Γnderung" |
|
635 | 635 | label_modification_plural: "%{count} Γnderungen" |
|
636 | 636 | label_branch: Zweig |
|
637 | 637 | label_tag: Markierung |
|
638 | 638 | label_revision: Revision |
|
639 | 639 | label_revision_plural: Revisionen |
|
640 | 640 | label_revision_id: Revision %{value} |
|
641 | 641 | label_associated_revisions: ZugehΓΆrige Revisionen |
|
642 | 642 | label_added: hinzugefΓΌgt |
|
643 | 643 | label_modified: geΓ€ndert |
|
644 | 644 | label_copied: kopiert |
|
645 | 645 | label_renamed: umbenannt |
|
646 | 646 | label_deleted: gelΓΆscht |
|
647 | 647 | label_latest_revision: Aktuellste Revision |
|
648 | 648 | label_latest_revision_plural: Aktuellste Revisionen |
|
649 | 649 | label_view_revisions: Revisionen anzeigen |
|
650 | 650 | label_view_all_revisions: Alle Revisionen anzeigen |
|
651 | 651 | label_max_size: Maximale GrΓΆΓe |
|
652 | 652 | label_sort_highest: An den Anfang |
|
653 | 653 | label_sort_higher: Eins hΓΆher |
|
654 | 654 | label_sort_lower: Eins tiefer |
|
655 | 655 | label_sort_lowest: Ans Ende |
|
656 | 656 | label_roadmap: Roadmap |
|
657 | 657 | label_roadmap_due_in: "FΓ€llig in %{value}" |
|
658 | 658 | label_roadmap_overdue: "%{value} verspΓ€tet" |
|
659 | 659 | label_roadmap_no_issues: Keine Tickets fΓΌr diese Version |
|
660 | 660 | label_search: Suche |
|
661 | 661 | label_result_plural: Resultate |
|
662 | 662 | label_all_words: Alle WΓΆrter |
|
663 | 663 | label_wiki: Wiki |
|
664 | 664 | label_wiki_edit: Wiki-Bearbeitung |
|
665 | 665 | label_wiki_edit_plural: Wiki-Bearbeitungen |
|
666 | 666 | label_wiki_page: Wiki-Seite |
|
667 | 667 | label_wiki_page_plural: Wiki-Seiten |
|
668 | 668 | label_index_by_title: Seiten nach Titel sortiert |
|
669 | 669 | label_index_by_date: Seiten nach Datum sortiert |
|
670 | 670 | label_current_version: GegenwΓ€rtige Version |
|
671 | 671 | label_preview: Vorschau |
|
672 | 672 | label_feed_plural: Feeds |
|
673 | 673 | label_changes_details: Details aller Γnderungen |
|
674 | 674 | label_issue_tracking: Tickets |
|
675 | 675 | label_spent_time: Aufgewendete Zeit |
|
676 | 676 | label_overall_spent_time: Aufgewendete Zeit aller Projekte anzeigen |
|
677 | 677 | label_f_hour: "%{value} Stunde" |
|
678 | 678 | label_f_hour_plural: "%{value} Stunden" |
|
679 | 679 | label_time_tracking: Zeiterfassung |
|
680 | 680 | label_change_plural: Γnderungen |
|
681 | 681 | label_statistics: Statistiken |
|
682 | 682 | label_commits_per_month: Γbertragungen pro Monat |
|
683 | 683 | label_commits_per_author: Γbertragungen pro Autor |
|
684 | 684 | label_view_diff: Unterschiede anzeigen |
|
685 | 685 | label_diff_inline: einspaltig |
|
686 | 686 | label_diff_side_by_side: nebeneinander |
|
687 | 687 | label_options: Optionen |
|
688 | 688 | label_copy_workflow_from: Workflow kopieren von |
|
689 | 689 | label_permissions_report: BerechtigungsΓΌbersicht |
|
690 | 690 | label_watched_issues: Beobachtete Tickets |
|
691 | 691 | label_related_issues: ZugehΓΆrige Tickets |
|
692 | 692 | label_applied_status: Zugewiesener Status |
|
693 | 693 | label_loading: Lade... |
|
694 | 694 | label_relation_new: Neue Beziehung |
|
695 | 695 | label_relation_delete: Beziehung lΓΆschen |
|
696 | 696 | label_relates_to: Beziehung mit |
|
697 | 697 | label_duplicates: Duplikat von |
|
698 | 698 | label_duplicated_by: Dupliziert durch |
|
699 | 699 | label_blocks: Blockiert |
|
700 | 700 | label_blocked_by: Blockiert durch |
|
701 | 701 | label_precedes: VorgΓ€nger von |
|
702 | 702 | label_follows: folgt |
|
703 | 703 | label_end_to_start: Ende - Anfang |
|
704 | 704 | label_end_to_end: Ende - Ende |
|
705 | 705 | label_start_to_start: Anfang - Anfang |
|
706 | 706 | label_start_to_end: Anfang - Ende |
|
707 | 707 | label_stay_logged_in: Angemeldet bleiben |
|
708 | 708 | label_disabled: gesperrt |
|
709 | 709 | label_show_completed_versions: Abgeschlossene Versionen anzeigen |
|
710 | 710 | label_me: ich |
|
711 | 711 | label_board: Forum |
|
712 | 712 | label_board_new: Neues Forum |
|
713 | 713 | label_board_plural: Foren |
|
714 | 714 | label_board_locked: Gesperrt |
|
715 | 715 | label_board_sticky: Wichtig (immer oben) |
|
716 | 716 | label_topic_plural: Themen |
|
717 | 717 | label_message_plural: ForenbeitrΓ€ge |
|
718 | 718 | label_message_last: Letzter Forenbeitrag |
|
719 | 719 | label_message_new: Neues Thema |
|
720 | 720 | label_message_posted: Forenbeitrag hinzugefΓΌgt |
|
721 | 721 | label_reply_plural: Antworten |
|
722 | 722 | label_send_information: Sende Kontoinformationen zum Benutzer |
|
723 | 723 | label_year: Jahr |
|
724 | 724 | label_month: Monat |
|
725 | 725 | label_week: Woche |
|
726 | 726 | label_date_from: Von |
|
727 | 727 | label_date_to: Bis |
|
728 | 728 | label_language_based: SprachabhΓ€ngig |
|
729 | 729 | label_sort_by: "Sortiert nach %{value}" |
|
730 | 730 | label_send_test_email: Test-E-Mail senden |
|
731 | 731 | label_feeds_access_key: RSS-ZugriffsschlΓΌssel |
|
732 | 732 | label_missing_feeds_access_key: Der RSS-ZugriffsschlΓΌssel fehlt. |
|
733 | 733 | label_feeds_access_key_created_on: "Atom-ZugriffsschlΓΌssel vor %{value} erstellt" |
|
734 | 734 | label_module_plural: Module |
|
735 | 735 | label_added_time_by: "Von %{author} vor %{age} hinzugefΓΌgt" |
|
736 | 736 | label_updated_time_by: "Von %{author} vor %{age} aktualisiert" |
|
737 | 737 | label_updated_time: "Vor %{value} aktualisiert" |
|
738 | 738 | label_jump_to_a_project: Zu einem Projekt springen... |
|
739 | 739 | label_file_plural: Dateien |
|
740 | 740 | label_changeset_plural: Changesets |
|
741 | 741 | label_default_columns: Standard-Spalten |
|
742 | 742 | label_no_change_option: (Keine Γnderung) |
|
743 | 743 | label_bulk_edit_selected_issues: Alle ausgewΓ€hlten Tickets bearbeiten |
|
744 | 744 | label_theme: Stil |
|
745 | 745 | label_default: Standard |
|
746 | 746 | label_search_titles_only: Nur Titel durchsuchen |
|
747 | 747 | label_user_mail_option_all: "FΓΌr alle Ereignisse in all meinen Projekten" |
|
748 | 748 | label_user_mail_option_selected: "FΓΌr alle Ereignisse in den ausgewΓ€hlten Projekten..." |
|
749 | 749 | label_user_mail_no_self_notified: "Ich mΓΆchte nicht ΓΌber Γnderungen benachrichtigt werden, die ich selbst durchfΓΌhre." |
|
750 | 750 | label_registration_activation_by_email: Kontoaktivierung durch E-Mail |
|
751 | 751 | label_registration_manual_activation: Manuelle Kontoaktivierung |
|
752 | 752 | label_registration_automatic_activation: Automatische Kontoaktivierung |
|
753 | 753 | label_display_per_page: "Pro Seite: %{value}" |
|
754 | 754 | label_age: GeΓ€ndert vor |
|
755 | 755 | label_change_properties: Eigenschaften Γ€ndern |
|
756 | 756 | label_general: Allgemein |
|
757 | 757 | label_more: Mehr |
|
758 | 758 | label_scm: Versionskontrollsystem |
|
759 | 759 | label_plugins: Plugins |
|
760 | 760 | label_ldap_authentication: LDAP-Authentifizierung |
|
761 | 761 | label_downloads_abbr: D/L |
|
762 | 762 | label_optional_description: Beschreibung (optional) |
|
763 | 763 | label_add_another_file: Eine weitere Datei hinzufΓΌgen |
|
764 | 764 | label_preferences: PrΓ€ferenzen |
|
765 | 765 | label_chronological_order: in zeitlicher Reihenfolge |
|
766 | 766 | label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge |
|
767 | 767 | label_planning: Terminplanung |
|
768 | 768 | label_incoming_emails: Eingehende E-Mails |
|
769 | 769 | label_generate_key: Generieren |
|
770 | 770 | label_issue_watchers: Beobachter |
|
771 | 771 | label_example: Beispiel |
|
772 | 772 | label_display: Anzeige |
|
773 | 773 | label_sort: Sortierung |
|
774 | 774 | label_ascending: Aufsteigend |
|
775 | 775 | label_descending: Absteigend |
|
776 | 776 | label_date_from_to: von %{start} bis %{end} |
|
777 | 777 | label_wiki_content_added: Die Wiki-Seite wurde erfolgreich hinzugefΓΌgt. |
|
778 | 778 | label_wiki_content_updated: Die Wiki-Seite wurde erfolgreich aktualisiert. |
|
779 | 779 | label_group: Gruppe |
|
780 | 780 | label_group_plural: Gruppen |
|
781 | 781 | label_group_new: Neue Gruppe |
|
782 | 782 | label_time_entry_plural: BenΓΆtigte Zeit |
|
783 | 783 | label_version_sharing_none: Nicht gemeinsam verwenden |
|
784 | 784 | label_version_sharing_descendants: Mit Unterprojekten |
|
785 | 785 | label_version_sharing_hierarchy: Mit Projekthierarchie |
|
786 | 786 | label_version_sharing_tree: Mit Projektbaum |
|
787 | 787 | label_version_sharing_system: Mit allen Projekten |
|
788 | 788 | label_update_issue_done_ratios: Ticket-Fortschritt aktualisieren |
|
789 | 789 | label_copy_source: Quelle |
|
790 | 790 | label_copy_target: Ziel |
|
791 | 791 | label_copy_same_as_target: So wie das Ziel |
|
792 | 792 | label_display_used_statuses_only: Zeige nur Status an, die von diesem Tracker verwendet werden |
|
793 | 793 | label_api_access_key: API-ZugriffsschlΓΌssel |
|
794 | 794 | label_missing_api_access_key: Der API-ZugriffsschlΓΌssel fehlt. |
|
795 | 795 | label_api_access_key_created_on: Der API-ZugriffsschlΓΌssel wurde vor %{value} erstellt |
|
796 | 796 | label_profile: Profil |
|
797 | 797 | label_subtask_plural: Unteraufgaben |
|
798 | 798 | label_project_copy_notifications: Sende Mailbenachrichtigungen beim Kopieren des Projekts. |
|
799 | 799 | label_principal_search: "Nach Benutzer oder Gruppe suchen:" |
|
800 | 800 | label_user_search: "Nach Benutzer suchen:" |
|
801 | 801 | |
|
802 | 802 | button_login: Anmelden |
|
803 | 803 | button_submit: OK |
|
804 | 804 | button_save: Speichern |
|
805 | 805 | button_check_all: Alles auswΓ€hlen |
|
806 | 806 | button_uncheck_all: Alles abwΓ€hlen |
|
807 | 807 | button_delete: LΓΆschen |
|
808 | 808 | button_create: Anlegen |
|
809 | 809 | button_create_and_continue: Anlegen und weiter |
|
810 | 810 | button_test: Testen |
|
811 | 811 | button_edit: Bearbeiten |
|
812 | 812 | button_edit_associated_wikipage: "ZugehΓΆrige Wikiseite bearbeiten: %{page_title}" |
|
813 | 813 | button_add: HinzufΓΌgen |
|
814 | 814 | button_change: Wechseln |
|
815 | 815 | button_apply: Anwenden |
|
816 | 816 | button_clear: ZurΓΌcksetzen |
|
817 | 817 | button_lock: Sperren |
|
818 | 818 | button_unlock: Entsperren |
|
819 | 819 | button_download: Download |
|
820 | 820 | button_list: Liste |
|
821 | 821 | button_view: Anzeigen |
|
822 | 822 | button_move: Verschieben |
|
823 | 823 | button_move_and_follow: Verschieben und Ticket anzeigen |
|
824 | 824 | button_back: ZurΓΌck |
|
825 | 825 | button_cancel: Abbrechen |
|
826 | 826 | button_activate: Aktivieren |
|
827 | 827 | button_sort: Sortieren |
|
828 | 828 | button_log_time: Aufwand buchen |
|
829 | 829 | button_rollback: Auf diese Version zurΓΌcksetzen |
|
830 | 830 | button_watch: Beobachten |
|
831 | 831 | button_unwatch: Nicht beobachten |
|
832 | 832 | button_reply: Antworten |
|
833 | 833 | button_archive: Archivieren |
|
834 | 834 | button_unarchive: Entarchivieren |
|
835 | 835 | button_reset: ZurΓΌcksetzen |
|
836 | 836 | button_rename: Umbenennen |
|
837 | 837 | button_change_password: Kennwort Γ€ndern |
|
838 | 838 | button_copy: Kopieren |
|
839 | 839 | button_copy_and_follow: Kopieren und Ticket anzeigen |
|
840 | 840 | button_annotate: Annotieren |
|
841 | 841 | button_update: Bearbeiten |
|
842 | 842 | button_configure: Konfigurieren |
|
843 | 843 | button_quote: Zitieren |
|
844 | 844 | button_duplicate: Duplizieren |
|
845 | 845 | button_show: Anzeigen |
|
846 | 846 | |
|
847 | 847 | status_active: aktiv |
|
848 | 848 | status_registered: angemeldet |
|
849 | 849 | status_locked: gesperrt |
|
850 | 850 | |
|
851 | 851 | version_status_open: offen |
|
852 | 852 | version_status_locked: gesperrt |
|
853 | 853 | version_status_closed: abgeschlossen |
|
854 | 854 | |
|
855 | 855 | field_active: Aktiv |
|
856 | 856 | |
|
857 | 857 | text_select_mail_notifications: Bitte wΓ€hlen Sie die Aktionen aus, fΓΌr die eine Mailbenachrichtigung gesendet werden soll. |
|
858 | 858 | text_regexp_info: z. B. ^[A-Z0-9]+$ |
|
859 | 859 | text_min_max_length_info: 0 heiΓt keine BeschrΓ€nkung |
|
860 | 860 | text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt lΓΆschen wollen? |
|
861 | 861 | text_subprojects_destroy_warning: "Dessen Unterprojekte (%{value}) werden ebenfalls gelΓΆscht." |
|
862 | 862 | text_workflow_edit: Workflow zum Bearbeiten auswΓ€hlen |
|
863 | 863 | text_are_you_sure: Sind Sie sicher? |
|
864 | 864 | text_are_you_sure_with_children: "LΓΆsche Aufgabe und alle Unteraufgaben?" |
|
865 | 865 | text_journal_changed: "%{label} wurde von %{old} zu %{new} geΓ€ndert" |
|
866 | 866 | text_journal_set_to: "%{label} wurde auf %{value} gesetzt" |
|
867 | 867 | text_journal_deleted: "%{label} %{old} wurde gelΓΆscht" |
|
868 | 868 | text_journal_added: "%{label} %{value} wurde hinzugefΓΌgt" |
|
869 | 869 | text_tip_issue_begin_day: Aufgabe, die an diesem Tag beginnt |
|
870 | 870 | text_tip_issue_end_day: Aufgabe, die an diesem Tag endet |
|
871 | 871 | text_tip_issue_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet |
|
872 | 872 | text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geΓ€ndert werden.' |
|
873 | 873 | text_caracters_maximum: "Max. %{count} Zeichen." |
|
874 | 874 | text_caracters_minimum: "Muss mindestens %{count} Zeichen lang sein." |
|
875 | 875 | text_length_between: "LΓ€nge zwischen %{min} und %{max} Zeichen." |
|
876 | 876 | text_tracker_no_workflow: Kein Workflow fΓΌr diesen Tracker definiert. |
|
877 | 877 | text_unallowed_characters: Nicht erlaubte Zeichen |
|
878 | 878 | text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt). |
|
879 | 879 | text_line_separated: Mehrere Werte sind erlaubt (eine Zeile pro Wert). |
|
880 | 880 | text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen |
|
881 | 881 | text_issue_added: "Ticket %{id} wurde erstellt von %{author}." |
|
882 | 882 | text_issue_updated: "Ticket %{id} wurde aktualisiert von %{author}." |
|
883 | 883 | text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sΓ€mtlichem Inhalt lΓΆschen mΓΆchten? |
|
884 | 884 | text_issue_category_destroy_question: "Einige Tickets (%{count}) sind dieser Kategorie zugeodnet. Was mΓΆchten Sie tun?" |
|
885 | 885 | text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen |
|
886 | 886 | text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen |
|
887 | 887 | 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)." |
|
888 | 888 | text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, kΓΆnnen Sie sie abΓ€ndern." |
|
889 | 889 | text_load_default_configuration: Standard-Konfiguration laden |
|
890 | 890 | text_status_changed_by_changeset: "Status geΓ€ndert durch Changeset %{value}." |
|
891 | 891 | text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewΓ€hlten Tickets lΓΆschen mΓΆchten?' |
|
892 | 892 | text_select_project_modules: 'Bitte wΓ€hlen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:' |
|
893 | 893 | text_default_administrator_account_changed: Administrator-Kennwort geΓ€ndert |
|
894 | 894 | text_file_repository_writable: Verzeichnis fΓΌr Dateien beschreibbar |
|
895 | 895 | text_plugin_assets_writable: Verzeichnis fΓΌr Plugin-Assets beschreibbar |
|
896 | 896 | text_rmagick_available: RMagick verfΓΌgbar (optional) |
|
897 | 897 | text_destroy_time_entries_question: Es wurden bereits %{hours} Stunden auf dieses Ticket gebucht. Was soll mit den AufwΓ€nden geschehen? |
|
898 | 898 | text_destroy_time_entries: Gebuchte AufwΓ€nde lΓΆschen |
|
899 | 899 | text_assign_time_entries_to_project: Gebuchte AufwΓ€nde dem Projekt zuweisen |
|
900 | 900 | text_reassign_time_entries: 'Gebuchte AufwΓ€nde diesem Ticket zuweisen:' |
|
901 | 901 | text_user_wrote: "%{value} schrieb:" |
|
902 | 902 | text_enumeration_destroy_question: "%{count} Objekt(e) sind diesem Wert zugeordnet." |
|
903 | 903 | text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:' |
|
904 | 904 | text_email_delivery_not_configured: "Der SMTP-Server ist nicht konfiguriert und Mailbenachrichtigungen sind ausgeschaltet.\nNehmen Sie die Einstellungen fΓΌr Ihren SMTP-Server in config/configuration.yml vor und starten Sie die Applikation neu." |
|
905 | 905 | text_repository_usernames_mapping: "Bitte legen Sie die Zuordnung der Redmine-Benutzer zu den Benutzernamen der Commit-Log-Meldungen des Projektarchivs fest.\nBenutzer mit identischen Redmine- und Projektarchiv-Benutzernamen oder -E-Mail-Adressen werden automatisch zugeordnet." |
|
906 | 906 | text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen ΓΌberschreitet.' |
|
907 | 907 | text_custom_field_possible_values_info: 'Eine Zeile pro Wert' |
|
908 | 908 | text_wiki_page_destroy_question: "Diese Seite hat %{descendants} Unterseite(n). Was mΓΆchten Sie tun?" |
|
909 | 909 | text_wiki_page_nullify_children: Verschiebe die Unterseiten auf die oberste Ebene |
|
910 | 910 | text_wiki_page_destroy_children: LΓΆsche alle Unterseiten |
|
911 | 911 | text_wiki_page_reassign_children: Ordne die Unterseiten dieser Seite zu |
|
912 | 912 | text_own_membership_delete_confirmation: "Sie sind dabei, einige oder alle Ihre Berechtigungen zu entfernen. Es ist mΓΆglich, dass Sie danach das Projekt nicht mehr ansehen oder bearbeiten dΓΌrfen.\nSind Sie sicher, dass Sie dies tun mΓΆchten?" |
|
913 | 913 | text_zoom_in: Zoom in |
|
914 | 914 | text_zoom_out: Zoom out |
|
915 | 915 | |
|
916 | 916 | default_role_manager: Manager |
|
917 | 917 | default_role_developer: Entwickler |
|
918 | 918 | default_role_reporter: Reporter |
|
919 | 919 | default_tracker_bug: Fehler |
|
920 | 920 | default_tracker_feature: Feature |
|
921 | 921 | default_tracker_support: UnterstΓΌtzung |
|
922 | 922 | default_issue_status_new: Neu |
|
923 | 923 | default_issue_status_in_progress: In Bearbeitung |
|
924 | 924 | default_issue_status_resolved: GelΓΆst |
|
925 | 925 | default_issue_status_feedback: Feedback |
|
926 | 926 | default_issue_status_closed: Erledigt |
|
927 | 927 | default_issue_status_rejected: Abgewiesen |
|
928 | 928 | default_doc_category_user: Benutzerdokumentation |
|
929 | 929 | default_doc_category_tech: Technische Dokumentation |
|
930 | 930 | default_priority_low: Niedrig |
|
931 | 931 | default_priority_normal: Normal |
|
932 | 932 | default_priority_high: Hoch |
|
933 | 933 | default_priority_urgent: Dringend |
|
934 | 934 | default_priority_immediate: Sofort |
|
935 | 935 | default_activity_design: Design |
|
936 | 936 | default_activity_development: Entwicklung |
|
937 | 937 | |
|
938 | 938 | enumeration_issue_priorities: Ticket-PrioritΓ€ten |
|
939 | 939 | enumeration_doc_categories: Dokumentenkategorien |
|
940 | 940 | enumeration_activities: AktivitΓ€ten (Zeiterfassung) |
|
941 | 941 | enumeration_system_activity: System-AktivitΓ€t |
|
942 | 942 | |
|
943 | 943 | field_text: Textfeld |
|
944 | 944 | label_user_mail_option_only_owner: Nur fΓΌr Aufgaben die ich angelegt habe |
|
945 | 945 | setting_default_notification_option: Standard Benachrichtigungsoptionen |
|
946 | 946 | label_user_mail_option_only_my_events: Nur fΓΌr Aufgaben die ich beobachte oder an welchen ich mitarbeite |
|
947 | 947 | label_user_mail_option_only_assigned: Nur fΓΌr Aufgaben fΓΌr die ich zustΓ€ndig bin. |
|
948 | 948 | notice_not_authorized_archived_project: Das Projekt wurde archiviert und ist daher nicht nicht verfΓΌgbar. |
|
949 | 949 | label_user_mail_option_none: keine Ereignisse |
|
950 | 950 | field_member_of_group: ZustΓ€ndigkeitsgruppe |
|
951 | 951 | field_assigned_to_role: ZustΓ€ndigkeitsrolle |
|
952 | 952 | field_visible: Sichtbar |
|
953 | 953 | setting_emails_header: E-Mail Betreffzeile |
|
954 | 954 | setting_commit_logtime_activity_id: AktivitΓ€t fΓΌr die Zeiterfassung |
|
955 | 955 | text_time_logged_by_changeset: Angewendet in Changeset %{value}. |
|
956 | 956 | setting_commit_logtime_enabled: Aktiviere Zeitlogging |
|
957 | 957 | notice_gantt_chart_truncated: Die Grafik ist unvollstΓ€ndig, da das Maximum der anzeigbaren Aufgaben ΓΌberschritten wurde (%{max}) |
|
958 | 958 | setting_gantt_items_limit: Maximale Anzahl von Aufgaben die im Gantt-Chart angezeigt werden. |
|
959 | 959 | field_warn_on_leaving_unsaved: vor dem Verlassen einer Seite mit ungesichertem Text im Editor warnen |
|
960 | 960 | text_warn_on_leaving_unsaved: Die aktuellen Γnderungen gehen verloren, wenn Sie diese Seite verlassen. |
|
961 | 961 | label_my_queries: Meine eigenen Abfragen |
|
962 | 962 | text_journal_changed_no_detail: "%{label} aktualisiert" |
|
963 | 963 | label_news_comment_added: Kommentar zu einer News hinzugefΓΌgt |
|
964 | 964 | button_expand_all: Alle ausklappen |
|
965 | 965 | button_collapse_all: Alle einklappen |
|
966 | 966 | label_additional_workflow_transitions_for_assignee: ZusΓ€tzliche Berechtigungen wenn der Benutzer der Zugewiesene ist |
|
967 | 967 | label_additional_workflow_transitions_for_author: ZusΓ€tzliche Berechtigungen wenn der Benutzer der Autor ist |
|
968 | 968 | label_bulk_edit_selected_time_entries: AusgewΓ€hlte ZeitaufwΓ€nde bearbeiten |
|
969 | 969 | text_time_entries_destroy_confirmation: Sind Sie sicher, dass Sie die ausgewΓ€hlten ZeitaufwΓ€nde lΓΆschen mΓΆchten? |
|
970 | 970 | label_role_anonymous: Anonymous |
|
971 | 971 | label_role_non_member: Nichtmitglied |
|
972 | 972 | label_issue_note_added: Notiz hinzugefΓΌgt |
|
973 | 973 | label_issue_status_updated: Status aktualisiert |
|
974 | 974 | label_issue_priority_updated: PrioritΓ€t aktualisiert |
|
975 | 975 | label_issues_visibility_own: Tickets die folgender User erstellt hat oder die ihm zugewiesen sind |
|
976 | 976 | field_issues_visibility: Ticket Sichtbarkeit |
|
977 | 977 | label_issues_visibility_all: Alle Tickets |
|
978 | 978 | permission_set_own_issues_private: Eigene Tickets privat oder ΓΆffentlich markieren |
|
979 | 979 | field_is_private: Privat |
|
980 | 980 | permission_set_issues_private: Tickets privat oder ΓΆffentlich markieren |
|
981 | 981 | label_issues_visibility_public: Alle ΓΆffentlichen Tickets |
|
982 | 982 | text_issues_destroy_descendants_confirmation: Dies wird auch %{count} Unteraufgabe/n lΓΆschen. |
|
983 | 983 | field_commit_logs_encoding: Kodierung der Commit-Log-Meldungen |
|
984 | 984 | field_scm_path_encoding: Pfad Kodierung |
|
985 | 985 | text_scm_path_encoding_note: "Standard: UTF-8" |
|
986 | 986 | field_path_to_repository: Pfad zum repository |
|
987 | 987 | field_root_directory: Wurzelverzeichnis |
|
988 | 988 | field_cvs_module: Modul |
|
989 | 989 | field_cvsroot: CVSROOT |
|
990 | 990 | text_mercurial_repository_note: Lokales repository (e.g. /hgrepo, c:\hgrepo) |
|
991 | 991 | text_scm_command: Kommando |
|
992 | 992 | text_scm_command_version: Version |
|
993 | 993 | label_git_report_last_commit: Bericht des letzten Commits fΓΌr Dateien und Verzeichnisse |
|
994 | 994 | text_scm_config: Die SCM-Kommandos kΓΆnnen in der in config/configuration.yml konfiguriert werden. Redmine muss anschlieΓend neu gestartet werden. |
|
995 | 995 | text_scm_command_not_available: Scm Kommando ist nicht verfΓΌgbar. Bitte prΓΌfen Sie die Einstellungen im Administrationspanel. |
|
996 | 996 | |
|
997 | 997 | notice_issue_successful_create: Issue %{id} created. |
|
998 | 998 | label_between: between |
|
999 | 999 | setting_issue_group_assignment: Allow issue assignment to groups |
|
1000 | 1000 | label_diff: diff |
|
1001 | 1001 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
1002 | 1002 | |
|
1003 | description_filter: Filter | |
|
1003 | 1004 | description_search: Suchfeld |
|
1004 | 1005 | description_project_scope: Suchbereich |
|
1006 | description_query_sort_criteria_attribute: Sortierattribut | |
|
1007 | description_query_sort_criteria_direction: Sortierrichtung | |
|
1008 | description_available_columns: VerfΓΌgbare Spalten | |
|
1009 | description_selected_columns: AusgewΓ€hlte Spalten | |
|
1005 | 1010 |
@@ -1,982 +1,987 | |||
|
1 | 1 | en: |
|
2 | 2 | # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl) |
|
3 | 3 | direction: ltr |
|
4 | 4 | date: |
|
5 | 5 | formats: |
|
6 | 6 | # Use the strftime parameters for formats. |
|
7 | 7 | # When no format has been given, it uses default. |
|
8 | 8 | # You can provide other formats here if you like! |
|
9 | 9 | default: "%m/%d/%Y" |
|
10 | 10 | short: "%b %d" |
|
11 | 11 | long: "%B %d, %Y" |
|
12 | 12 | |
|
13 | 13 | day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] |
|
14 | 14 | abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] |
|
15 | 15 | |
|
16 | 16 | # Don't forget the nil at the beginning; there's no such thing as a 0th month |
|
17 | 17 | month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] |
|
18 | 18 | abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] |
|
19 | 19 | # Used in date_select and datime_select. |
|
20 | 20 | order: |
|
21 | 21 | - :year |
|
22 | 22 | - :month |
|
23 | 23 | - :day |
|
24 | 24 | |
|
25 | 25 | time: |
|
26 | 26 | formats: |
|
27 | 27 | default: "%m/%d/%Y %I:%M %p" |
|
28 | 28 | time: "%I:%M %p" |
|
29 | 29 | short: "%d %b %H:%M" |
|
30 | 30 | long: "%B %d, %Y %H:%M" |
|
31 | 31 | am: "am" |
|
32 | 32 | pm: "pm" |
|
33 | 33 | |
|
34 | 34 | datetime: |
|
35 | 35 | distance_in_words: |
|
36 | 36 | half_a_minute: "half a minute" |
|
37 | 37 | less_than_x_seconds: |
|
38 | 38 | one: "less than 1 second" |
|
39 | 39 | other: "less than %{count} seconds" |
|
40 | 40 | x_seconds: |
|
41 | 41 | one: "1 second" |
|
42 | 42 | other: "%{count} seconds" |
|
43 | 43 | less_than_x_minutes: |
|
44 | 44 | one: "less than a minute" |
|
45 | 45 | other: "less than %{count} minutes" |
|
46 | 46 | x_minutes: |
|
47 | 47 | one: "1 minute" |
|
48 | 48 | other: "%{count} minutes" |
|
49 | 49 | about_x_hours: |
|
50 | 50 | one: "about 1 hour" |
|
51 | 51 | other: "about %{count} hours" |
|
52 | 52 | x_days: |
|
53 | 53 | one: "1 day" |
|
54 | 54 | other: "%{count} days" |
|
55 | 55 | about_x_months: |
|
56 | 56 | one: "about 1 month" |
|
57 | 57 | other: "about %{count} months" |
|
58 | 58 | x_months: |
|
59 | 59 | one: "1 month" |
|
60 | 60 | other: "%{count} months" |
|
61 | 61 | about_x_years: |
|
62 | 62 | one: "about 1 year" |
|
63 | 63 | other: "about %{count} years" |
|
64 | 64 | over_x_years: |
|
65 | 65 | one: "over 1 year" |
|
66 | 66 | other: "over %{count} years" |
|
67 | 67 | almost_x_years: |
|
68 | 68 | one: "almost 1 year" |
|
69 | 69 | other: "almost %{count} years" |
|
70 | 70 | |
|
71 | 71 | number: |
|
72 | 72 | format: |
|
73 | 73 | separator: "." |
|
74 | 74 | delimiter: "" |
|
75 | 75 | precision: 3 |
|
76 | 76 | |
|
77 | 77 | human: |
|
78 | 78 | format: |
|
79 | 79 | delimiter: "" |
|
80 | 80 | precision: 1 |
|
81 | 81 | storage_units: |
|
82 | 82 | format: "%n %u" |
|
83 | 83 | units: |
|
84 | 84 | byte: |
|
85 | 85 | one: "Byte" |
|
86 | 86 | other: "Bytes" |
|
87 | 87 | kb: "kB" |
|
88 | 88 | mb: "MB" |
|
89 | 89 | gb: "GB" |
|
90 | 90 | tb: "TB" |
|
91 | 91 | |
|
92 | 92 | # Used in array.to_sentence. |
|
93 | 93 | support: |
|
94 | 94 | array: |
|
95 | 95 | sentence_connector: "and" |
|
96 | 96 | skip_last_comma: false |
|
97 | 97 | |
|
98 | 98 | activerecord: |
|
99 | 99 | errors: |
|
100 | 100 | template: |
|
101 | 101 | header: |
|
102 | 102 | one: "1 error prohibited this %{model} from being saved" |
|
103 | 103 | other: "%{count} errors prohibited this %{model} from being saved" |
|
104 | 104 | messages: |
|
105 | 105 | inclusion: "is not included in the list" |
|
106 | 106 | exclusion: "is reserved" |
|
107 | 107 | invalid: "is invalid" |
|
108 | 108 | confirmation: "doesn't match confirmation" |
|
109 | 109 | accepted: "must be accepted" |
|
110 | 110 | empty: "can't be empty" |
|
111 | 111 | blank: "can't be blank" |
|
112 | 112 | too_long: "is too long (maximum is %{count} characters)" |
|
113 | 113 | too_short: "is too short (minimum is %{count} characters)" |
|
114 | 114 | wrong_length: "is the wrong length (should be %{count} characters)" |
|
115 | 115 | taken: "has already been taken" |
|
116 | 116 | not_a_number: "is not a number" |
|
117 | 117 | not_a_date: "is not a valid date" |
|
118 | 118 | greater_than: "must be greater than %{count}" |
|
119 | 119 | greater_than_or_equal_to: "must be greater than or equal to %{count}" |
|
120 | 120 | equal_to: "must be equal to %{count}" |
|
121 | 121 | less_than: "must be less than %{count}" |
|
122 | 122 | less_than_or_equal_to: "must be less than or equal to %{count}" |
|
123 | 123 | odd: "must be odd" |
|
124 | 124 | even: "must be even" |
|
125 | 125 | greater_than_start_date: "must be greater than start date" |
|
126 | 126 | not_same_project: "doesn't belong to the same project" |
|
127 | 127 | circular_dependency: "This relation would create a circular dependency" |
|
128 | 128 | cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks" |
|
129 | 129 | |
|
130 | 130 | actionview_instancetag_blank_option: Please select |
|
131 | 131 | |
|
132 | 132 | general_text_No: 'No' |
|
133 | 133 | general_text_Yes: 'Yes' |
|
134 | 134 | general_text_no: 'no' |
|
135 | 135 | general_text_yes: 'yes' |
|
136 | 136 | general_lang_name: 'English' |
|
137 | 137 | general_csv_separator: ',' |
|
138 | 138 | general_csv_decimal_separator: '.' |
|
139 | 139 | general_csv_encoding: ISO-8859-1 |
|
140 | 140 | general_pdf_encoding: UTF-8 |
|
141 | 141 | general_first_day_of_week: '7' |
|
142 | 142 | |
|
143 | 143 | notice_account_updated: Account was successfully updated. |
|
144 | 144 | notice_account_invalid_creditentials: Invalid user or password |
|
145 | 145 | notice_account_password_updated: Password was successfully updated. |
|
146 | 146 | notice_account_wrong_password: Wrong password |
|
147 | 147 | notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. |
|
148 | 148 | notice_account_unknown_email: Unknown user. |
|
149 | 149 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
150 | 150 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
151 | 151 | notice_account_activated: Your account has been activated. You can now log in. |
|
152 | 152 | notice_successful_create: Successful creation. |
|
153 | 153 | notice_successful_update: Successful update. |
|
154 | 154 | notice_successful_delete: Successful deletion. |
|
155 | 155 | notice_successful_connection: Successful connection. |
|
156 | 156 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
157 | 157 | notice_locking_conflict: Data has been updated by another user. |
|
158 | 158 | notice_not_authorized: You are not authorized to access this page. |
|
159 | 159 | notice_not_authorized_archived_project: The project you're trying to access has been archived. |
|
160 | 160 | notice_email_sent: "An email was sent to %{value}" |
|
161 | 161 | notice_email_error: "An error occurred while sending mail (%{value})" |
|
162 | 162 | notice_feeds_access_key_reseted: Your RSS access key was reset. |
|
163 | 163 | notice_api_access_key_reseted: Your API access key was reset. |
|
164 | 164 | notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." |
|
165 | 165 | notice_failed_to_save_members: "Failed to save member(s): %{errors}." |
|
166 | 166 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." |
|
167 | 167 | notice_account_pending: "Your account was created and is now pending administrator approval." |
|
168 | 168 | notice_default_data_loaded: Default configuration successfully loaded. |
|
169 | 169 | notice_unable_delete_version: Unable to delete version. |
|
170 | 170 | notice_unable_delete_time_entry: Unable to delete time log entry. |
|
171 | 171 | notice_issue_done_ratios_updated: Issue done ratios updated. |
|
172 | 172 | notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" |
|
173 | 173 | notice_issue_successful_create: "Issue %{id} created." |
|
174 | 174 | |
|
175 | 175 | error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" |
|
176 | 176 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
177 | 177 | error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" |
|
178 | 178 | error_scm_annotate: "The entry does not exist or cannot be annotated." |
|
179 | 179 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
180 | 180 | error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' |
|
181 | 181 | error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' |
|
182 | 182 | error_can_not_delete_custom_field: Unable to delete custom field |
|
183 | 183 | error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." |
|
184 | 184 | error_can_not_remove_role: "This role is in use and cannot be deleted." |
|
185 | 185 | error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' |
|
186 | 186 | error_can_not_archive_project: This project cannot be archived |
|
187 | 187 | error_issue_done_ratios_not_updated: "Issue done ratios not updated." |
|
188 | 188 | error_workflow_copy_source: 'Please select a source tracker or role' |
|
189 | 189 | error_workflow_copy_target: 'Please select target tracker(s) and role(s)' |
|
190 | 190 | error_unable_delete_issue_status: 'Unable to delete issue status' |
|
191 | 191 | error_unable_to_connect: "Unable to connect (%{value})" |
|
192 | 192 | warning_attachments_not_saved: "%{count} file(s) could not be saved." |
|
193 | 193 | |
|
194 | 194 | mail_subject_lost_password: "Your %{value} password" |
|
195 | 195 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
196 | 196 | mail_subject_register: "Your %{value} account activation" |
|
197 | 197 | mail_body_register: 'To activate your account, click on the following link:' |
|
198 | 198 | mail_body_account_information_external: "You can use your %{value} account to log in." |
|
199 | 199 | mail_body_account_information: Your account information |
|
200 | 200 | mail_subject_account_activation_request: "%{value} account activation request" |
|
201 | 201 | mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" |
|
202 | 202 | mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" |
|
203 | 203 | mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" |
|
204 | 204 | mail_subject_wiki_content_added: "'%{id}' wiki page has been added" |
|
205 | 205 | mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." |
|
206 | 206 | mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" |
|
207 | 207 | mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
|
208 | 208 | |
|
209 | 209 | gui_validation_error: 1 error |
|
210 | 210 | gui_validation_error_plural: "%{count} errors" |
|
211 | 211 | |
|
212 | 212 | field_name: Name |
|
213 | 213 | field_description: Description |
|
214 | 214 | field_summary: Summary |
|
215 | 215 | field_is_required: Required |
|
216 | 216 | field_firstname: First name |
|
217 | 217 | field_lastname: Last name |
|
218 | 218 | field_mail: Email |
|
219 | 219 | field_filename: File |
|
220 | 220 | field_filesize: Size |
|
221 | 221 | field_downloads: Downloads |
|
222 | 222 | field_author: Author |
|
223 | 223 | field_created_on: Created |
|
224 | 224 | field_updated_on: Updated |
|
225 | 225 | field_field_format: Format |
|
226 | 226 | field_is_for_all: For all projects |
|
227 | 227 | field_possible_values: Possible values |
|
228 | 228 | field_regexp: Regular expression |
|
229 | 229 | field_min_length: Minimum length |
|
230 | 230 | field_max_length: Maximum length |
|
231 | 231 | field_value: Value |
|
232 | 232 | field_category: Category |
|
233 | 233 | field_title: Title |
|
234 | 234 | field_project: Project |
|
235 | 235 | field_issue: Issue |
|
236 | 236 | field_status: Status |
|
237 | 237 | field_notes: Notes |
|
238 | 238 | field_is_closed: Issue closed |
|
239 | 239 | field_is_default: Default value |
|
240 | 240 | field_tracker: Tracker |
|
241 | 241 | field_subject: Subject |
|
242 | 242 | field_due_date: Due date |
|
243 | 243 | field_assigned_to: Assignee |
|
244 | 244 | field_priority: Priority |
|
245 | 245 | field_fixed_version: Target version |
|
246 | 246 | field_user: User |
|
247 | 247 | field_principal: Principal |
|
248 | 248 | field_role: Role |
|
249 | 249 | field_homepage: Homepage |
|
250 | 250 | field_is_public: Public |
|
251 | 251 | field_parent: Subproject of |
|
252 | 252 | field_is_in_roadmap: Issues displayed in roadmap |
|
253 | 253 | field_login: Login |
|
254 | 254 | field_mail_notification: Email notifications |
|
255 | 255 | field_admin: Administrator |
|
256 | 256 | field_last_login_on: Last connection |
|
257 | 257 | field_language: Language |
|
258 | 258 | field_effective_date: Date |
|
259 | 259 | field_password: Password |
|
260 | 260 | field_new_password: New password |
|
261 | 261 | field_password_confirmation: Confirmation |
|
262 | 262 | field_version: Version |
|
263 | 263 | field_type: Type |
|
264 | 264 | field_host: Host |
|
265 | 265 | field_port: Port |
|
266 | 266 | field_account: Account |
|
267 | 267 | field_base_dn: Base DN |
|
268 | 268 | field_attr_login: Login attribute |
|
269 | 269 | field_attr_firstname: Firstname attribute |
|
270 | 270 | field_attr_lastname: Lastname attribute |
|
271 | 271 | field_attr_mail: Email attribute |
|
272 | 272 | field_onthefly: On-the-fly user creation |
|
273 | 273 | field_start_date: Start date |
|
274 | 274 | field_done_ratio: "% Done" |
|
275 | 275 | field_auth_source: Authentication mode |
|
276 | 276 | field_hide_mail: Hide my email address |
|
277 | 277 | field_comments: Comment |
|
278 | 278 | field_url: URL |
|
279 | 279 | field_start_page: Start page |
|
280 | 280 | field_subproject: Subproject |
|
281 | 281 | field_hours: Hours |
|
282 | 282 | field_activity: Activity |
|
283 | 283 | field_spent_on: Date |
|
284 | 284 | field_identifier: Identifier |
|
285 | 285 | field_is_filter: Used as a filter |
|
286 | 286 | field_issue_to: Related issue |
|
287 | 287 | field_delay: Delay |
|
288 | 288 | field_assignable: Issues can be assigned to this role |
|
289 | 289 | field_redirect_existing_links: Redirect existing links |
|
290 | 290 | field_estimated_hours: Estimated time |
|
291 | 291 | field_column_names: Columns |
|
292 | 292 | field_time_entries: Log time |
|
293 | 293 | field_time_zone: Time zone |
|
294 | 294 | field_searchable: Searchable |
|
295 | 295 | field_default_value: Default value |
|
296 | 296 | field_comments_sorting: Display comments |
|
297 | 297 | field_parent_title: Parent page |
|
298 | 298 | field_editable: Editable |
|
299 | 299 | field_watcher: Watcher |
|
300 | 300 | field_identity_url: OpenID URL |
|
301 | 301 | field_content: Content |
|
302 | 302 | field_group_by: Group results by |
|
303 | 303 | field_sharing: Sharing |
|
304 | 304 | field_parent_issue: Parent task |
|
305 | 305 | field_member_of_group: "Assignee's group" |
|
306 | 306 | field_assigned_to_role: "Assignee's role" |
|
307 | 307 | field_text: Text field |
|
308 | 308 | field_visible: Visible |
|
309 | 309 | field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
|
310 | 310 | field_issues_visibility: Issues visibility |
|
311 | 311 | field_is_private: Private |
|
312 | 312 | field_commit_logs_encoding: Commit messages encoding |
|
313 | 313 | field_scm_path_encoding: Path encoding |
|
314 | 314 | field_path_to_repository: Path to repository |
|
315 | 315 | field_root_directory: Root directory |
|
316 | 316 | field_cvsroot: CVSROOT |
|
317 | 317 | field_cvs_module: Module |
|
318 | 318 | |
|
319 | 319 | setting_app_title: Application title |
|
320 | 320 | setting_app_subtitle: Application subtitle |
|
321 | 321 | setting_welcome_text: Welcome text |
|
322 | 322 | setting_default_language: Default language |
|
323 | 323 | setting_login_required: Authentication required |
|
324 | 324 | setting_self_registration: Self-registration |
|
325 | 325 | setting_attachment_max_size: Attachment max. size |
|
326 | 326 | setting_issues_export_limit: Issues export limit |
|
327 | 327 | setting_mail_from: Emission email address |
|
328 | 328 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
329 | 329 | setting_plain_text_mail: Plain text mail (no HTML) |
|
330 | 330 | setting_host_name: Host name and path |
|
331 | 331 | setting_text_formatting: Text formatting |
|
332 | 332 | setting_wiki_compression: Wiki history compression |
|
333 | 333 | setting_feeds_limit: Feed content limit |
|
334 | 334 | setting_default_projects_public: New projects are public by default |
|
335 | 335 | setting_autofetch_changesets: Autofetch commits |
|
336 | 336 | setting_sys_api_enabled: Enable WS for repository management |
|
337 | 337 | setting_commit_ref_keywords: Referencing keywords |
|
338 | 338 | setting_commit_fix_keywords: Fixing keywords |
|
339 | 339 | setting_autologin: Autologin |
|
340 | 340 | setting_date_format: Date format |
|
341 | 341 | setting_time_format: Time format |
|
342 | 342 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
343 | 343 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
344 | 344 | setting_repositories_encodings: Repositories encodings |
|
345 | 345 | setting_emails_header: Emails header |
|
346 | 346 | setting_emails_footer: Emails footer |
|
347 | 347 | setting_protocol: Protocol |
|
348 | 348 | setting_per_page_options: Objects per page options |
|
349 | 349 | setting_user_format: Users display format |
|
350 | 350 | setting_activity_days_default: Days displayed on project activity |
|
351 | 351 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
352 | 352 | setting_enabled_scm: Enabled SCM |
|
353 | 353 | setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
354 | 354 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
355 | 355 | setting_mail_handler_api_key: API key |
|
356 | 356 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
357 | 357 | setting_gravatar_enabled: Use Gravatar user icons |
|
358 | 358 | setting_gravatar_default: Default Gravatar image |
|
359 | 359 | setting_diff_max_lines_displayed: Max number of diff lines displayed |
|
360 | 360 | setting_file_max_size_displayed: Max size of text files displayed inline |
|
361 | 361 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
362 | 362 | setting_openid: Allow OpenID login and registration |
|
363 | 363 | setting_password_min_length: Minimum password length |
|
364 | 364 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
365 | 365 | setting_default_projects_modules: Default enabled modules for new projects |
|
366 | 366 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
367 | 367 | setting_issue_done_ratio_issue_field: Use the issue field |
|
368 | 368 | setting_issue_done_ratio_issue_status: Use the issue status |
|
369 | 369 | setting_start_of_week: Start calendars on |
|
370 | 370 | setting_rest_api_enabled: Enable REST web service |
|
371 | 371 | setting_cache_formatted_text: Cache formatted text |
|
372 | 372 | setting_default_notification_option: Default notification option |
|
373 | 373 | setting_commit_logtime_enabled: Enable time logging |
|
374 | 374 | setting_commit_logtime_activity_id: Activity for logged time |
|
375 | 375 | setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
376 | 376 | setting_issue_group_assignment: Allow issue assignment to groups |
|
377 | 377 | |
|
378 | 378 | permission_add_project: Create project |
|
379 | 379 | permission_add_subprojects: Create subprojects |
|
380 | 380 | permission_edit_project: Edit project |
|
381 | 381 | permission_select_project_modules: Select project modules |
|
382 | 382 | permission_manage_members: Manage members |
|
383 | 383 | permission_manage_project_activities: Manage project activities |
|
384 | 384 | permission_manage_versions: Manage versions |
|
385 | 385 | permission_manage_categories: Manage issue categories |
|
386 | 386 | permission_view_issues: View Issues |
|
387 | 387 | permission_add_issues: Add issues |
|
388 | 388 | permission_edit_issues: Edit issues |
|
389 | 389 | permission_manage_issue_relations: Manage issue relations |
|
390 | 390 | permission_set_issues_private: Set issues public or private |
|
391 | 391 | permission_set_own_issues_private: Set own issues public or private |
|
392 | 392 | permission_add_issue_notes: Add notes |
|
393 | 393 | permission_edit_issue_notes: Edit notes |
|
394 | 394 | permission_edit_own_issue_notes: Edit own notes |
|
395 | 395 | permission_move_issues: Move issues |
|
396 | 396 | permission_delete_issues: Delete issues |
|
397 | 397 | permission_manage_public_queries: Manage public queries |
|
398 | 398 | permission_save_queries: Save queries |
|
399 | 399 | permission_view_gantt: View gantt chart |
|
400 | 400 | permission_view_calendar: View calendar |
|
401 | 401 | permission_view_issue_watchers: View watchers list |
|
402 | 402 | permission_add_issue_watchers: Add watchers |
|
403 | 403 | permission_delete_issue_watchers: Delete watchers |
|
404 | 404 | permission_log_time: Log spent time |
|
405 | 405 | permission_view_time_entries: View spent time |
|
406 | 406 | permission_edit_time_entries: Edit time logs |
|
407 | 407 | permission_edit_own_time_entries: Edit own time logs |
|
408 | 408 | permission_manage_news: Manage news |
|
409 | 409 | permission_comment_news: Comment news |
|
410 | 410 | permission_manage_documents: Manage documents |
|
411 | 411 | permission_view_documents: View documents |
|
412 | 412 | permission_manage_files: Manage files |
|
413 | 413 | permission_view_files: View files |
|
414 | 414 | permission_manage_wiki: Manage wiki |
|
415 | 415 | permission_rename_wiki_pages: Rename wiki pages |
|
416 | 416 | permission_delete_wiki_pages: Delete wiki pages |
|
417 | 417 | permission_view_wiki_pages: View wiki |
|
418 | 418 | permission_view_wiki_edits: View wiki history |
|
419 | 419 | permission_edit_wiki_pages: Edit wiki pages |
|
420 | 420 | permission_delete_wiki_pages_attachments: Delete attachments |
|
421 | 421 | permission_protect_wiki_pages: Protect wiki pages |
|
422 | 422 | permission_manage_repository: Manage repository |
|
423 | 423 | permission_browse_repository: Browse repository |
|
424 | 424 | permission_view_changesets: View changesets |
|
425 | 425 | permission_commit_access: Commit access |
|
426 | 426 | permission_manage_boards: Manage forums |
|
427 | 427 | permission_view_messages: View messages |
|
428 | 428 | permission_add_messages: Post messages |
|
429 | 429 | permission_edit_messages: Edit messages |
|
430 | 430 | permission_edit_own_messages: Edit own messages |
|
431 | 431 | permission_delete_messages: Delete messages |
|
432 | 432 | permission_delete_own_messages: Delete own messages |
|
433 | 433 | permission_export_wiki_pages: Export wiki pages |
|
434 | 434 | permission_manage_subtasks: Manage subtasks |
|
435 | 435 | |
|
436 | 436 | project_module_issue_tracking: Issue tracking |
|
437 | 437 | project_module_time_tracking: Time tracking |
|
438 | 438 | project_module_news: News |
|
439 | 439 | project_module_documents: Documents |
|
440 | 440 | project_module_files: Files |
|
441 | 441 | project_module_wiki: Wiki |
|
442 | 442 | project_module_repository: Repository |
|
443 | 443 | project_module_boards: Forums |
|
444 | 444 | project_module_calendar: Calendar |
|
445 | 445 | project_module_gantt: Gantt |
|
446 | 446 | |
|
447 | 447 | label_user: User |
|
448 | 448 | label_user_plural: Users |
|
449 | 449 | label_user_new: New user |
|
450 | 450 | label_user_anonymous: Anonymous |
|
451 | 451 | label_project: Project |
|
452 | 452 | label_project_new: New project |
|
453 | 453 | label_project_plural: Projects |
|
454 | 454 | label_x_projects: |
|
455 | 455 | zero: no projects |
|
456 | 456 | one: 1 project |
|
457 | 457 | other: "%{count} projects" |
|
458 | 458 | label_project_all: All Projects |
|
459 | 459 | label_project_latest: Latest projects |
|
460 | 460 | label_issue: Issue |
|
461 | 461 | label_issue_new: New issue |
|
462 | 462 | label_issue_plural: Issues |
|
463 | 463 | label_issue_view_all: View all issues |
|
464 | 464 | label_issues_by: "Issues by %{value}" |
|
465 | 465 | label_issue_added: Issue added |
|
466 | 466 | label_issue_updated: Issue updated |
|
467 | 467 | label_issue_note_added: Note added |
|
468 | 468 | label_issue_status_updated: Status updated |
|
469 | 469 | label_issue_priority_updated: Priority updated |
|
470 | 470 | label_document: Document |
|
471 | 471 | label_document_new: New document |
|
472 | 472 | label_document_plural: Documents |
|
473 | 473 | label_document_added: Document added |
|
474 | 474 | label_role: Role |
|
475 | 475 | label_role_plural: Roles |
|
476 | 476 | label_role_new: New role |
|
477 | 477 | label_role_and_permissions: Roles and permissions |
|
478 | 478 | label_role_anonymous: Anonymous |
|
479 | 479 | label_role_non_member: Non member |
|
480 | 480 | label_member: Member |
|
481 | 481 | label_member_new: New member |
|
482 | 482 | label_member_plural: Members |
|
483 | 483 | label_tracker: Tracker |
|
484 | 484 | label_tracker_plural: Trackers |
|
485 | 485 | label_tracker_new: New tracker |
|
486 | 486 | label_workflow: Workflow |
|
487 | 487 | label_issue_status: Issue status |
|
488 | 488 | label_issue_status_plural: Issue statuses |
|
489 | 489 | label_issue_status_new: New status |
|
490 | 490 | label_issue_category: Issue category |
|
491 | 491 | label_issue_category_plural: Issue categories |
|
492 | 492 | label_issue_category_new: New category |
|
493 | 493 | label_custom_field: Custom field |
|
494 | 494 | label_custom_field_plural: Custom fields |
|
495 | 495 | label_custom_field_new: New custom field |
|
496 | 496 | label_enumerations: Enumerations |
|
497 | 497 | label_enumeration_new: New value |
|
498 | 498 | label_information: Information |
|
499 | 499 | label_information_plural: Information |
|
500 | 500 | label_please_login: Please log in |
|
501 | 501 | label_register: Register |
|
502 | 502 | label_login_with_open_id_option: or login with OpenID |
|
503 | 503 | label_password_lost: Lost password |
|
504 | 504 | label_home: Home |
|
505 | 505 | label_my_page: My page |
|
506 | 506 | label_my_account: My account |
|
507 | 507 | label_my_projects: My projects |
|
508 | 508 | label_my_page_block: My page block |
|
509 | 509 | label_administration: Administration |
|
510 | 510 | label_login: Sign in |
|
511 | 511 | label_logout: Sign out |
|
512 | 512 | label_help: Help |
|
513 | 513 | label_reported_issues: Reported issues |
|
514 | 514 | label_assigned_to_me_issues: Issues assigned to me |
|
515 | 515 | label_last_login: Last connection |
|
516 | 516 | label_registered_on: Registered on |
|
517 | 517 | label_activity: Activity |
|
518 | 518 | label_overall_activity: Overall activity |
|
519 | 519 | label_user_activity: "%{value}'s activity" |
|
520 | 520 | label_new: New |
|
521 | 521 | label_logged_as: Logged in as |
|
522 | 522 | label_environment: Environment |
|
523 | 523 | label_authentication: Authentication |
|
524 | 524 | label_auth_source: Authentication mode |
|
525 | 525 | label_auth_source_new: New authentication mode |
|
526 | 526 | label_auth_source_plural: Authentication modes |
|
527 | 527 | label_subproject_plural: Subprojects |
|
528 | 528 | label_subproject_new: New subproject |
|
529 | 529 | label_and_its_subprojects: "%{value} and its subprojects" |
|
530 | 530 | label_min_max_length: Min - Max length |
|
531 | 531 | label_list: List |
|
532 | 532 | label_date: Date |
|
533 | 533 | label_integer: Integer |
|
534 | 534 | label_float: Float |
|
535 | 535 | label_boolean: Boolean |
|
536 | 536 | label_string: Text |
|
537 | 537 | label_text: Long text |
|
538 | 538 | label_attribute: Attribute |
|
539 | 539 | label_attribute_plural: Attributes |
|
540 | 540 | label_download: "%{count} Download" |
|
541 | 541 | label_download_plural: "%{count} Downloads" |
|
542 | 542 | label_no_data: No data to display |
|
543 | 543 | label_change_status: Change status |
|
544 | 544 | label_history: History |
|
545 | 545 | label_attachment: File |
|
546 | 546 | label_attachment_new: New file |
|
547 | 547 | label_attachment_delete: Delete file |
|
548 | 548 | label_attachment_plural: Files |
|
549 | 549 | label_file_added: File added |
|
550 | 550 | label_report: Report |
|
551 | 551 | label_report_plural: Reports |
|
552 | 552 | label_news: News |
|
553 | 553 | label_news_new: Add news |
|
554 | 554 | label_news_plural: News |
|
555 | 555 | label_news_latest: Latest news |
|
556 | 556 | label_news_view_all: View all news |
|
557 | 557 | label_news_added: News added |
|
558 | 558 | label_news_comment_added: Comment added to a news |
|
559 | 559 | label_settings: Settings |
|
560 | 560 | label_overview: Overview |
|
561 | 561 | label_version: Version |
|
562 | 562 | label_version_new: New version |
|
563 | 563 | label_version_plural: Versions |
|
564 | 564 | label_close_versions: Close completed versions |
|
565 | 565 | label_confirmation: Confirmation |
|
566 | 566 | label_export_to: 'Also available in:' |
|
567 | 567 | label_read: Read... |
|
568 | 568 | label_public_projects: Public projects |
|
569 | 569 | label_open_issues: open |
|
570 | 570 | label_open_issues_plural: open |
|
571 | 571 | label_closed_issues: closed |
|
572 | 572 | label_closed_issues_plural: closed |
|
573 | 573 | label_x_open_issues_abbr_on_total: |
|
574 | 574 | zero: 0 open / %{total} |
|
575 | 575 | one: 1 open / %{total} |
|
576 | 576 | other: "%{count} open / %{total}" |
|
577 | 577 | label_x_open_issues_abbr: |
|
578 | 578 | zero: 0 open |
|
579 | 579 | one: 1 open |
|
580 | 580 | other: "%{count} open" |
|
581 | 581 | label_x_closed_issues_abbr: |
|
582 | 582 | zero: 0 closed |
|
583 | 583 | one: 1 closed |
|
584 | 584 | other: "%{count} closed" |
|
585 | 585 | label_total: Total |
|
586 | 586 | label_permissions: Permissions |
|
587 | 587 | label_current_status: Current status |
|
588 | 588 | label_new_statuses_allowed: New statuses allowed |
|
589 | 589 | label_all: all |
|
590 | 590 | label_none: none |
|
591 | 591 | label_nobody: nobody |
|
592 | 592 | label_next: Next |
|
593 | 593 | label_previous: Previous |
|
594 | 594 | label_used_by: Used by |
|
595 | 595 | label_details: Details |
|
596 | 596 | label_add_note: Add a note |
|
597 | 597 | label_per_page: Per page |
|
598 | 598 | label_calendar: Calendar |
|
599 | 599 | label_months_from: months from |
|
600 | 600 | label_gantt: Gantt |
|
601 | 601 | label_internal: Internal |
|
602 | 602 | label_last_changes: "last %{count} changes" |
|
603 | 603 | label_change_view_all: View all changes |
|
604 | 604 | label_personalize_page: Personalize this page |
|
605 | 605 | label_comment: Comment |
|
606 | 606 | label_comment_plural: Comments |
|
607 | 607 | label_x_comments: |
|
608 | 608 | zero: no comments |
|
609 | 609 | one: 1 comment |
|
610 | 610 | other: "%{count} comments" |
|
611 | 611 | label_comment_add: Add a comment |
|
612 | 612 | label_comment_added: Comment added |
|
613 | 613 | label_comment_delete: Delete comments |
|
614 | 614 | label_query: Custom query |
|
615 | 615 | label_query_plural: Custom queries |
|
616 | 616 | label_query_new: New query |
|
617 | 617 | label_my_queries: My custom queries |
|
618 | 618 | label_filter_add: Add filter |
|
619 | 619 | label_filter_plural: Filters |
|
620 | 620 | label_equals: is |
|
621 | 621 | label_not_equals: is not |
|
622 | 622 | label_in_less_than: in less than |
|
623 | 623 | label_in_more_than: in more than |
|
624 | 624 | label_greater_or_equal: '>=' |
|
625 | 625 | label_less_or_equal: '<=' |
|
626 | 626 | label_between: between |
|
627 | 627 | label_in: in |
|
628 | 628 | label_today: today |
|
629 | 629 | label_all_time: all time |
|
630 | 630 | label_yesterday: yesterday |
|
631 | 631 | label_this_week: this week |
|
632 | 632 | label_last_week: last week |
|
633 | 633 | label_last_n_days: "last %{count} days" |
|
634 | 634 | label_this_month: this month |
|
635 | 635 | label_last_month: last month |
|
636 | 636 | label_this_year: this year |
|
637 | 637 | label_date_range: Date range |
|
638 | 638 | label_less_than_ago: less than days ago |
|
639 | 639 | label_more_than_ago: more than days ago |
|
640 | 640 | label_ago: days ago |
|
641 | 641 | label_contains: contains |
|
642 | 642 | label_not_contains: doesn't contain |
|
643 | 643 | label_day_plural: days |
|
644 | 644 | label_repository: Repository |
|
645 | 645 | label_repository_plural: Repositories |
|
646 | 646 | label_browse: Browse |
|
647 | 647 | label_modification: "%{count} change" |
|
648 | 648 | label_modification_plural: "%{count} changes" |
|
649 | 649 | label_branch: Branch |
|
650 | 650 | label_tag: Tag |
|
651 | 651 | label_revision: Revision |
|
652 | 652 | label_revision_plural: Revisions |
|
653 | 653 | label_revision_id: "Revision %{value}" |
|
654 | 654 | label_associated_revisions: Associated revisions |
|
655 | 655 | label_added: added |
|
656 | 656 | label_modified: modified |
|
657 | 657 | label_copied: copied |
|
658 | 658 | label_renamed: renamed |
|
659 | 659 | label_deleted: deleted |
|
660 | 660 | label_latest_revision: Latest revision |
|
661 | 661 | label_latest_revision_plural: Latest revisions |
|
662 | 662 | label_view_revisions: View revisions |
|
663 | 663 | label_view_all_revisions: View all revisions |
|
664 | 664 | label_max_size: Maximum size |
|
665 | 665 | label_sort_highest: Move to top |
|
666 | 666 | label_sort_higher: Move up |
|
667 | 667 | label_sort_lower: Move down |
|
668 | 668 | label_sort_lowest: Move to bottom |
|
669 | 669 | label_roadmap: Roadmap |
|
670 | 670 | label_roadmap_due_in: "Due in %{value}" |
|
671 | 671 | label_roadmap_overdue: "%{value} late" |
|
672 | 672 | label_roadmap_no_issues: No issues for this version |
|
673 | 673 | label_search: Search |
|
674 | 674 | label_result_plural: Results |
|
675 | 675 | label_all_words: All words |
|
676 | 676 | label_wiki: Wiki |
|
677 | 677 | label_wiki_edit: Wiki edit |
|
678 | 678 | label_wiki_edit_plural: Wiki edits |
|
679 | 679 | label_wiki_page: Wiki page |
|
680 | 680 | label_wiki_page_plural: Wiki pages |
|
681 | 681 | label_index_by_title: Index by title |
|
682 | 682 | label_index_by_date: Index by date |
|
683 | 683 | label_current_version: Current version |
|
684 | 684 | label_preview: Preview |
|
685 | 685 | label_feed_plural: Feeds |
|
686 | 686 | label_changes_details: Details of all changes |
|
687 | 687 | label_issue_tracking: Issue tracking |
|
688 | 688 | label_spent_time: Spent time |
|
689 | 689 | label_overall_spent_time: Overall spent time |
|
690 | 690 | label_f_hour: "%{value} hour" |
|
691 | 691 | label_f_hour_plural: "%{value} hours" |
|
692 | 692 | label_time_tracking: Time tracking |
|
693 | 693 | label_change_plural: Changes |
|
694 | 694 | label_statistics: Statistics |
|
695 | 695 | label_commits_per_month: Commits per month |
|
696 | 696 | label_commits_per_author: Commits per author |
|
697 | 697 | label_diff: diff |
|
698 | 698 | label_view_diff: View differences |
|
699 | 699 | label_diff_inline: inline |
|
700 | 700 | label_diff_side_by_side: side by side |
|
701 | 701 | label_options: Options |
|
702 | 702 | label_copy_workflow_from: Copy workflow from |
|
703 | 703 | label_permissions_report: Permissions report |
|
704 | 704 | label_watched_issues: Watched issues |
|
705 | 705 | label_related_issues: Related issues |
|
706 | 706 | label_applied_status: Applied status |
|
707 | 707 | label_loading: Loading... |
|
708 | 708 | label_relation_new: New relation |
|
709 | 709 | label_relation_delete: Delete relation |
|
710 | 710 | label_relates_to: related to |
|
711 | 711 | label_duplicates: duplicates |
|
712 | 712 | label_duplicated_by: duplicated by |
|
713 | 713 | label_blocks: blocks |
|
714 | 714 | label_blocked_by: blocked by |
|
715 | 715 | label_precedes: precedes |
|
716 | 716 | label_follows: follows |
|
717 | 717 | label_end_to_start: end to start |
|
718 | 718 | label_end_to_end: end to end |
|
719 | 719 | label_start_to_start: start to start |
|
720 | 720 | label_start_to_end: start to end |
|
721 | 721 | label_stay_logged_in: Stay logged in |
|
722 | 722 | label_disabled: disabled |
|
723 | 723 | label_show_completed_versions: Show completed versions |
|
724 | 724 | label_me: me |
|
725 | 725 | label_board: Forum |
|
726 | 726 | label_board_new: New forum |
|
727 | 727 | label_board_plural: Forums |
|
728 | 728 | label_board_locked: Locked |
|
729 | 729 | label_board_sticky: Sticky |
|
730 | 730 | label_topic_plural: Topics |
|
731 | 731 | label_message_plural: Messages |
|
732 | 732 | label_message_last: Last message |
|
733 | 733 | label_message_new: New message |
|
734 | 734 | label_message_posted: Message added |
|
735 | 735 | label_reply_plural: Replies |
|
736 | 736 | label_send_information: Send account information to the user |
|
737 | 737 | label_year: Year |
|
738 | 738 | label_month: Month |
|
739 | 739 | label_week: Week |
|
740 | 740 | label_date_from: From |
|
741 | 741 | label_date_to: To |
|
742 | 742 | label_language_based: Based on user's language |
|
743 | 743 | label_sort_by: "Sort by %{value}" |
|
744 | 744 | label_send_test_email: Send a test email |
|
745 | 745 | label_feeds_access_key: RSS access key |
|
746 | 746 | label_missing_feeds_access_key: Missing a RSS access key |
|
747 | 747 | label_feeds_access_key_created_on: "RSS access key created %{value} ago" |
|
748 | 748 | label_module_plural: Modules |
|
749 | 749 | label_added_time_by: "Added by %{author} %{age} ago" |
|
750 | 750 | label_updated_time_by: "Updated by %{author} %{age} ago" |
|
751 | 751 | label_updated_time: "Updated %{value} ago" |
|
752 | 752 | label_jump_to_a_project: Jump to a project... |
|
753 | 753 | label_file_plural: Files |
|
754 | 754 | label_changeset_plural: Changesets |
|
755 | 755 | label_default_columns: Default columns |
|
756 | 756 | label_no_change_option: (No change) |
|
757 | 757 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
758 | 758 | label_bulk_edit_selected_time_entries: Bulk edit selected time entries |
|
759 | 759 | label_theme: Theme |
|
760 | 760 | label_default: Default |
|
761 | 761 | label_search_titles_only: Search titles only |
|
762 | 762 | label_user_mail_option_all: "For any event on all my projects" |
|
763 | 763 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
764 | 764 | label_user_mail_option_none: "No events" |
|
765 | 765 | label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" |
|
766 | 766 | label_user_mail_option_only_assigned: "Only for things I am assigned to" |
|
767 | 767 | label_user_mail_option_only_owner: "Only for things I am the owner of" |
|
768 | 768 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
769 | 769 | label_registration_activation_by_email: account activation by email |
|
770 | 770 | label_registration_manual_activation: manual account activation |
|
771 | 771 | label_registration_automatic_activation: automatic account activation |
|
772 | 772 | label_display_per_page: "Per page: %{value}" |
|
773 | 773 | label_age: Age |
|
774 | 774 | label_change_properties: Change properties |
|
775 | 775 | label_general: General |
|
776 | 776 | label_more: More |
|
777 | 777 | label_scm: SCM |
|
778 | 778 | label_plugins: Plugins |
|
779 | 779 | label_ldap_authentication: LDAP authentication |
|
780 | 780 | label_downloads_abbr: D/L |
|
781 | 781 | label_optional_description: Optional description |
|
782 | 782 | label_add_another_file: Add another file |
|
783 | 783 | label_preferences: Preferences |
|
784 | 784 | label_chronological_order: In chronological order |
|
785 | 785 | label_reverse_chronological_order: In reverse chronological order |
|
786 | 786 | label_planning: Planning |
|
787 | 787 | label_incoming_emails: Incoming emails |
|
788 | 788 | label_generate_key: Generate a key |
|
789 | 789 | label_issue_watchers: Watchers |
|
790 | 790 | label_example: Example |
|
791 | 791 | label_display: Display |
|
792 | 792 | label_sort: Sort |
|
793 | 793 | label_ascending: Ascending |
|
794 | 794 | label_descending: Descending |
|
795 | 795 | label_date_from_to: From %{start} to %{end} |
|
796 | 796 | label_wiki_content_added: Wiki page added |
|
797 | 797 | label_wiki_content_updated: Wiki page updated |
|
798 | 798 | label_group: Group |
|
799 | 799 | label_group_plural: Groups |
|
800 | 800 | label_group_new: New group |
|
801 | 801 | label_time_entry_plural: Spent time |
|
802 | 802 | label_version_sharing_none: Not shared |
|
803 | 803 | label_version_sharing_descendants: With subprojects |
|
804 | 804 | label_version_sharing_hierarchy: With project hierarchy |
|
805 | 805 | label_version_sharing_tree: With project tree |
|
806 | 806 | label_version_sharing_system: With all projects |
|
807 | 807 | label_update_issue_done_ratios: Update issue done ratios |
|
808 | 808 | label_copy_source: Source |
|
809 | 809 | label_copy_target: Target |
|
810 | 810 | label_copy_same_as_target: Same as target |
|
811 | 811 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
812 | 812 | label_api_access_key: API access key |
|
813 | 813 | label_missing_api_access_key: Missing an API access key |
|
814 | 814 | label_api_access_key_created_on: "API access key created %{value} ago" |
|
815 | 815 | label_profile: Profile |
|
816 | 816 | label_subtask_plural: Subtasks |
|
817 | 817 | label_project_copy_notifications: Send email notifications during the project copy |
|
818 | 818 | label_principal_search: "Search for user or group:" |
|
819 | 819 | label_user_search: "Search for user:" |
|
820 | 820 | label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author |
|
821 | 821 | label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee |
|
822 | 822 | label_issues_visibility_all: All issues |
|
823 | 823 | label_issues_visibility_public: All non private issues |
|
824 | 824 | label_issues_visibility_own: Issues created by or assigned to the user |
|
825 | 825 | label_git_report_last_commit: Report last commit for files and directories |
|
826 | 826 | |
|
827 | 827 | button_login: Login |
|
828 | 828 | button_submit: Submit |
|
829 | 829 | button_save: Save |
|
830 | 830 | button_check_all: Check all |
|
831 | 831 | button_uncheck_all: Uncheck all |
|
832 | 832 | button_collapse_all: Collapse all |
|
833 | 833 | button_expand_all: Expand all |
|
834 | 834 | button_delete: Delete |
|
835 | 835 | button_create: Create |
|
836 | 836 | button_create_and_continue: Create and continue |
|
837 | 837 | button_test: Test |
|
838 | 838 | button_edit: Edit |
|
839 | 839 | button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" |
|
840 | 840 | button_add: Add |
|
841 | 841 | button_change: Change |
|
842 | 842 | button_apply: Apply |
|
843 | 843 | button_clear: Clear |
|
844 | 844 | button_lock: Lock |
|
845 | 845 | button_unlock: Unlock |
|
846 | 846 | button_download: Download |
|
847 | 847 | button_list: List |
|
848 | 848 | button_view: View |
|
849 | 849 | button_move: Move |
|
850 | 850 | button_move_and_follow: Move and follow |
|
851 | 851 | button_back: Back |
|
852 | 852 | button_cancel: Cancel |
|
853 | 853 | button_activate: Activate |
|
854 | 854 | button_sort: Sort |
|
855 | 855 | button_log_time: Log time |
|
856 | 856 | button_rollback: Rollback to this version |
|
857 | 857 | button_watch: Watch |
|
858 | 858 | button_unwatch: Unwatch |
|
859 | 859 | button_reply: Reply |
|
860 | 860 | button_archive: Archive |
|
861 | 861 | button_unarchive: Unarchive |
|
862 | 862 | button_reset: Reset |
|
863 | 863 | button_rename: Rename |
|
864 | 864 | button_change_password: Change password |
|
865 | 865 | button_copy: Copy |
|
866 | 866 | button_copy_and_follow: Copy and follow |
|
867 | 867 | button_annotate: Annotate |
|
868 | 868 | button_update: Update |
|
869 | 869 | button_configure: Configure |
|
870 | 870 | button_quote: Quote |
|
871 | 871 | button_duplicate: Duplicate |
|
872 | 872 | button_show: Show |
|
873 | 873 | |
|
874 | 874 | status_active: active |
|
875 | 875 | status_registered: registered |
|
876 | 876 | status_locked: locked |
|
877 | 877 | |
|
878 | 878 | version_status_open: open |
|
879 | 879 | version_status_locked: locked |
|
880 | 880 | version_status_closed: closed |
|
881 | 881 | |
|
882 | 882 | field_active: Active |
|
883 | 883 | |
|
884 | 884 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
885 | 885 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
886 | 886 | text_min_max_length_info: 0 means no restriction |
|
887 | 887 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data? |
|
888 | 888 | text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." |
|
889 | 889 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
890 | 890 | text_are_you_sure: Are you sure? |
|
891 | 891 | text_are_you_sure_with_children: "Delete issue and all child issues?" |
|
892 | 892 | text_journal_changed: "%{label} changed from %{old} to %{new}" |
|
893 | 893 | text_journal_changed_no_detail: "%{label} updated" |
|
894 | 894 | text_journal_set_to: "%{label} set to %{value}" |
|
895 | 895 | text_journal_deleted: "%{label} deleted (%{old})" |
|
896 | 896 | text_journal_added: "%{label} %{value} added" |
|
897 | 897 | text_tip_issue_begin_day: issue beginning this day |
|
898 | 898 | text_tip_issue_end_day: issue ending this day |
|
899 | 899 | text_tip_issue_begin_end_day: issue beginning and ending this day |
|
900 | 900 | text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier cannot be changed.' |
|
901 | 901 | text_caracters_maximum: "%{count} characters maximum." |
|
902 | 902 | text_caracters_minimum: "Must be at least %{count} characters long." |
|
903 | 903 | text_length_between: "Length between %{min} and %{max} characters." |
|
904 | 904 | text_tracker_no_workflow: No workflow defined for this tracker |
|
905 | 905 | text_unallowed_characters: Unallowed characters |
|
906 | 906 | text_comma_separated: Multiple values allowed (comma separated). |
|
907 | 907 | text_line_separated: Multiple values allowed (one line for each value). |
|
908 | 908 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
909 | 909 | text_issue_added: "Issue %{id} has been reported by %{author}." |
|
910 | 910 | text_issue_updated: "Issue %{id} has been updated by %{author}." |
|
911 | 911 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? |
|
912 | 912 | text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" |
|
913 | 913 | text_issue_category_destroy_assignments: Remove category assignments |
|
914 | 914 | text_issue_category_reassign_to: Reassign issues to this category |
|
915 | 915 | 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)." |
|
916 | 916 | 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." |
|
917 | 917 | text_load_default_configuration: Load the default configuration |
|
918 | 918 | text_status_changed_by_changeset: "Applied in changeset %{value}." |
|
919 | 919 | text_time_logged_by_changeset: "Applied in changeset %{value}." |
|
920 | 920 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' |
|
921 | 921 | text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." |
|
922 | 922 | text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' |
|
923 | 923 | text_select_project_modules: 'Select modules to enable for this project:' |
|
924 | 924 | text_default_administrator_account_changed: Default administrator account changed |
|
925 | 925 | text_file_repository_writable: Attachments directory writable |
|
926 | 926 | text_plugin_assets_writable: Plugin assets directory writable |
|
927 | 927 | text_rmagick_available: RMagick available (optional) |
|
928 | 928 | text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" |
|
929 | 929 | text_destroy_time_entries: Delete reported hours |
|
930 | 930 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
931 | 931 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
932 | 932 | text_user_wrote: "%{value} wrote:" |
|
933 | 933 | text_enumeration_destroy_question: "%{count} objects are assigned to this value." |
|
934 | 934 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
935 | 935 | text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them." |
|
936 | 936 | text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." |
|
937 | 937 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
938 | 938 | text_custom_field_possible_values_info: 'One line for each value' |
|
939 | 939 | text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" |
|
940 | 940 | text_wiki_page_nullify_children: "Keep child pages as root pages" |
|
941 | 941 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" |
|
942 | 942 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" |
|
943 | 943 | text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?" |
|
944 | 944 | text_zoom_in: Zoom in |
|
945 | 945 | text_zoom_out: Zoom out |
|
946 | 946 | text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." |
|
947 | 947 | text_scm_path_encoding_note: "Default: UTF-8" |
|
948 | 948 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
949 | 949 | text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) |
|
950 | 950 | text_scm_command: Command |
|
951 | 951 | text_scm_command_version: Version |
|
952 | 952 | text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it. |
|
953 | 953 | text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel. |
|
954 | 954 | |
|
955 | 955 | default_role_manager: Manager |
|
956 | 956 | default_role_developer: Developer |
|
957 | 957 | default_role_reporter: Reporter |
|
958 | 958 | default_tracker_bug: Bug |
|
959 | 959 | default_tracker_feature: Feature |
|
960 | 960 | default_tracker_support: Support |
|
961 | 961 | default_issue_status_new: New |
|
962 | 962 | default_issue_status_in_progress: In Progress |
|
963 | 963 | default_issue_status_resolved: Resolved |
|
964 | 964 | default_issue_status_feedback: Feedback |
|
965 | 965 | default_issue_status_closed: Closed |
|
966 | 966 | default_issue_status_rejected: Rejected |
|
967 | 967 | default_doc_category_user: User documentation |
|
968 | 968 | default_doc_category_tech: Technical documentation |
|
969 | 969 | default_priority_low: Low |
|
970 | 970 | default_priority_normal: Normal |
|
971 | 971 | default_priority_high: High |
|
972 | 972 | default_priority_urgent: Urgent |
|
973 | 973 | default_priority_immediate: Immediate |
|
974 | 974 | default_activity_design: Design |
|
975 | 975 | default_activity_development: Development |
|
976 | 976 | |
|
977 | 977 | enumeration_issue_priorities: Issue priorities |
|
978 | 978 | enumeration_doc_categories: Document categories |
|
979 | 979 | enumeration_activities: Activities (time tracking) |
|
980 | 980 | enumeration_system_activity: System Activity |
|
981 | description_filter: Filter | |
|
981 | 982 | description_search: Searchfield |
|
982 | 983 | description_project_scope: Search scope |
|
984 | description_query_sort_criteria_attribute: Sort attribute | |
|
985 | description_query_sort_criteria_direction: Sort direction | |
|
986 | description_available_columns: Available Columns | |
|
987 | description_selected_columns: Selected Spalten |
General Comments 0
You need to be logged in to leave comments.
Login now