@@ -1,48 +1,48 | |||
|
1 | 1 | <%= form_tag({:action => 'edit', :tab => 'authentication'}) do %> |
|
2 | 2 | |
|
3 | 3 | <div class="box tabular settings"> |
|
4 | 4 | <p><%= setting_check_box :login_required %></p> |
|
5 | 5 | |
|
6 | 6 | <p><%= setting_select :autologin, [[l(:label_disabled), 0]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %></p> |
|
7 | 7 | |
|
8 | 8 | <p><%= setting_select :self_registration, [[l(:label_disabled), "0"], |
|
9 | 9 | [l(:label_registration_activation_by_email), "1"], |
|
10 | 10 | [l(:label_registration_manual_activation), "2"], |
|
11 | 11 | [l(:label_registration_automatic_activation), "3"]] %></p> |
|
12 | 12 | |
|
13 | 13 | <p><%= setting_check_box :unsubscribe %></p> |
|
14 | 14 | |
|
15 | 15 | <p><%= setting_text_field :password_min_length, :size => 6 %></p> |
|
16 | 16 | |
|
17 | 17 | <p> |
|
18 | 18 | <%= setting_select :password_max_age, [[l(:label_disabled), 0]] + [7, 30, 60, 90, 180, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %> |
|
19 | 19 | </p> |
|
20 | 20 | |
|
21 |
<p><%= setting_check_box :lost_password |
|
|
21 | <p><%= setting_check_box :lost_password %></p> | |
|
22 | 22 | |
|
23 | 23 | <p><%= setting_text_field :max_additional_emails, :size => 6 %></p> |
|
24 | 24 | |
|
25 | 25 | <p><%= setting_check_box :openid, :disabled => !Object.const_defined?(:OpenID) %></p> |
|
26 | 26 | </div> |
|
27 | 27 | |
|
28 | 28 | <fieldset class="box"> |
|
29 | 29 | <legend><%= l(:label_session_expiration) %></legend> |
|
30 | 30 | |
|
31 | 31 | <div class="tabular settings"> |
|
32 | 32 | <p><%= setting_select :session_lifetime, session_lifetime_options %></p> |
|
33 | 33 | <p><%= setting_select :session_timeout, session_timeout_options %></p> |
|
34 | 34 | </div> |
|
35 | 35 | |
|
36 | 36 | <p><em class="info"><%= l(:text_session_expiration_settings) %></em></p> |
|
37 | 37 | </fieldset> |
|
38 | 38 | |
|
39 | 39 | <fieldset class="box"> |
|
40 | 40 | <legend><%= l(:label_default_values_for_new_users) %></legend> |
|
41 | 41 | |
|
42 | 42 | <div class="tabular settings"> |
|
43 | 43 | <p><%= setting_check_box :default_users_hide_mail, :label => :field_hide_mail %></p> |
|
44 | 44 | </div> |
|
45 | 45 | </fieldset> |
|
46 | 46 | |
|
47 | 47 | <%= submit_tag l(:button_save) %> |
|
48 | 48 | <% end %> |
@@ -1,157 +1,156 | |||
|
1 | 1 | <%= form_tag({:action => 'edit', :tab => 'repositories'}) do %> |
|
2 | 2 | |
|
3 | 3 | <fieldset class="box settings enabled_scm"> |
|
4 | 4 | <legend><%= l(:setting_enabled_scm) %></legend> |
|
5 | 5 | <%= hidden_field_tag 'settings[enabled_scm][]', '' %> |
|
6 | 6 | <table> |
|
7 | 7 | <tr> |
|
8 | 8 | <th></th> |
|
9 | 9 | <th><%= l(:text_scm_command) %></th> |
|
10 | 10 | <th><%= l(:text_scm_command_version) %></th> |
|
11 | 11 | </tr> |
|
12 | 12 | <% Redmine::Scm::Base.all.collect do |choice| %> |
|
13 | 13 | <% scm_class = "Repository::#{choice}".constantize %> |
|
14 | 14 | <% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %> |
|
15 | 15 | <% setting = :enabled_scm %> |
|
16 | 16 | <% enabled = Setting.send(setting).include?(value) %> |
|
17 | 17 | <tr> |
|
18 | 18 | <td class="scm_name"> |
|
19 | 19 | <label> |
|
20 | 20 | <%= check_box_tag("settings[#{setting}][]", value, enabled, :id => nil) %> |
|
21 | 21 | <%= text.to_s %> |
|
22 | 22 | </label> |
|
23 | 23 | </td> |
|
24 | 24 | <td> |
|
25 | 25 | <% if enabled %> |
|
26 | 26 | <span class="icon <%= (scm_class.scm_available ? 'icon-ok' : 'icon-error') %>"></span> |
|
27 | 27 | <%= scm_class.scm_command %> |
|
28 | 28 | <% end %> |
|
29 | 29 | </td> |
|
30 | 30 | <td> |
|
31 | 31 | <%= scm_class.scm_version_string if enabled %> |
|
32 | 32 | </td> |
|
33 | 33 | </tr> |
|
34 | 34 | <% end %> |
|
35 | 35 | </table> |
|
36 | 36 | <p><em class="info"><%= l(:text_scm_config) %></em></p> |
|
37 | 37 | </fieldset> |
|
38 | 38 | |
|
39 | 39 | <div class="box tabular settings"> |
|
40 | 40 | <p><%= setting_check_box :autofetch_changesets %></p> |
|
41 | 41 | |
|
42 | 42 | <p><%= setting_check_box :sys_api_enabled, |
|
43 | 43 | :onclick => |
|
44 | 44 | "if (this.checked) { $('#settings_sys_api_key').removeAttr('disabled'); } else { $('#settings_sys_api_key').attr('disabled', true); }" %></p> |
|
45 | 45 | |
|
46 | 46 | <p><%= setting_text_field :sys_api_key, |
|
47 | 47 | :size => 30, |
|
48 | 48 | :id => 'settings_sys_api_key', |
|
49 |
:disabled => !Setting.sys_api_enabled? |
|
|
50 | :label => :setting_mail_handler_api_key %> | |
|
49 | :disabled => !Setting.sys_api_enabled? %> | |
|
51 | 50 | <%= link_to_function l(:label_generate_key), |
|
52 | 51 | "if (!$('#settings_sys_api_key').attr('disabled')) { $('#settings_sys_api_key').val(randomKey(20)) }" %> |
|
53 | 52 | </p> |
|
54 | 53 | |
|
55 | 54 | <p><%= setting_text_field :repository_log_display_limit, :size => 6 %></p> |
|
56 | 55 | </div> |
|
57 | 56 | |
|
58 | 57 | <fieldset class="box tabular settings"> |
|
59 | 58 | <legend><%= l(:text_issues_ref_in_commit_messages) %></legend> |
|
60 | 59 | <p><%= setting_text_field :commit_ref_keywords, :size => 30 %> |
|
61 | 60 | <em class="info"><%= l(:text_comma_separated) %></em></p> |
|
62 | 61 | |
|
63 | 62 | <p><%= setting_check_box :commit_cross_project_ref %></p> |
|
64 | 63 | |
|
65 | 64 | <p><%= setting_check_box :commit_logtime_enabled, |
|
66 | 65 | :onclick => |
|
67 | 66 | "if (this.checked) { $('#settings_commit_logtime_activity_id').removeAttr('disabled'); } else { $('#settings_commit_logtime_activity_id').attr('disabled', true); }"%></p> |
|
68 | 67 | |
|
69 | 68 | <p><%= setting_select :commit_logtime_activity_id, |
|
70 | 69 | [[l(:label_default), 0]] + |
|
71 | 70 | TimeEntryActivity.shared.active.collect{|activity| [activity.name, activity.id.to_s]}, |
|
72 | 71 | :disabled => !Setting.commit_logtime_enabled?%></p> |
|
73 | 72 | </fieldset> |
|
74 | 73 | |
|
75 | 74 | <table class="list" id="commit-keywords"> |
|
76 | 75 | <thead> |
|
77 | 76 | <tr> |
|
78 | 77 | <th><%= l(:label_tracker) %></th> |
|
79 | 78 | <th><%= l(:setting_commit_fix_keywords) %></th> |
|
80 | 79 | <th><%= l(:label_applied_status) %></th> |
|
81 | 80 | <th><%= l(:field_done_ratio) %></th> |
|
82 | 81 | <th class="buttons"></th> |
|
83 | 82 | </tr> |
|
84 | 83 | </thead> |
|
85 | 84 | <tbody> |
|
86 | 85 | <% @commit_update_keywords.each do |rule| %> |
|
87 | 86 | <tr class="commit-keywords"> |
|
88 | 87 | <td> |
|
89 | 88 | <%= select_tag( |
|
90 | 89 | "settings[commit_update_keywords][if_tracker_id][]", |
|
91 | 90 | options_for_select( |
|
92 | 91 | [[l(:label_all), ""]] + |
|
93 | 92 | Tracker.sorted.map {|t| [t.name, t.id.to_s]}, |
|
94 | 93 | rule['if_tracker_id']), |
|
95 | 94 | :id => nil |
|
96 | 95 | ) %> |
|
97 | 96 | </td> |
|
98 | 97 | <td> |
|
99 | 98 | <%= text_field_tag("settings[commit_update_keywords][keywords][]", |
|
100 | 99 | rule['keywords'], :id => nil, :size => 30) %> |
|
101 | 100 | </td> |
|
102 | 101 | <td> |
|
103 | 102 | <%= select_tag("settings[commit_update_keywords][status_id][]", |
|
104 | 103 | options_for_select( |
|
105 | 104 | [["", 0]] + |
|
106 | 105 | IssueStatus.sorted. |
|
107 | 106 | collect{|status| [status.name, status.id.to_s]}, |
|
108 | 107 | rule['status_id']), |
|
109 | 108 | :id => nil |
|
110 | 109 | ) %> |
|
111 | 110 | </td> |
|
112 | 111 | <td> |
|
113 | 112 | <%= select_tag("settings[commit_update_keywords][done_ratio][]", |
|
114 | 113 | options_for_select( |
|
115 | 114 | [["", ""]] + |
|
116 | 115 | (0..10).to_a.collect {|r| ["#{r*10} %", "#{r*10}"] }, |
|
117 | 116 | rule['done_ratio']), |
|
118 | 117 | :id => nil |
|
119 | 118 | ) %> |
|
120 | 119 | </td> |
|
121 | 120 | <td class="buttons"> |
|
122 | 121 | <%= link_to('', '#', |
|
123 | 122 | :class => 'delete-commit-keywords icon-only icon-del') %> |
|
124 | 123 | </td> |
|
125 | 124 | </tr> |
|
126 | 125 | <% end %> |
|
127 | 126 | <tr> |
|
128 | 127 | <td></td> |
|
129 | 128 | <td><em class="info"><%= l(:text_comma_separated) %></em></td> |
|
130 | 129 | <td></td> |
|
131 | 130 | <td></td> |
|
132 | 131 | <td class="buttons"> |
|
133 | 132 | <%= link_to('', '#', |
|
134 | 133 | :class => 'add-commit-keywords icon-only icon-add') %> |
|
135 | 134 | </td> |
|
136 | 135 | </tr> |
|
137 | 136 | </tbody> |
|
138 | 137 | </table> |
|
139 | 138 | |
|
140 | 139 | <p><%= submit_tag l(:button_save) %></p> |
|
141 | 140 | <% end %> |
|
142 | 141 | |
|
143 | 142 | <%= javascript_tag do %> |
|
144 | 143 | $('#commit-keywords').on('click', 'a.delete-commit-keywords', function(e){ |
|
145 | 144 | e.preventDefault(); |
|
146 | 145 | if ($('#commit-keywords tbody tr.commit-keywords').length > 1) { |
|
147 | 146 | $(this).parents('#commit-keywords tr').remove(); |
|
148 | 147 | } else { |
|
149 | 148 | $('#commit-keywords tbody tr.commit-keywords').find('input, select').val(''); |
|
150 | 149 | } |
|
151 | 150 | }); |
|
152 | 151 | $('#commit-keywords').on('click', 'a.add-commit-keywords', function(e){ |
|
153 | 152 | e.preventDefault(); |
|
154 | 153 | var row = $('#commit-keywords tr.commit-keywords:last'); |
|
155 | 154 | row.clone().insertAfter(row).find('input, select').val(''); |
|
156 | 155 | }); |
|
157 | 156 | <% end %> |
@@ -1,1202 +1,1204 | |||
|
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_hours: |
|
56 | 56 | one: "1 Stunde" |
|
57 | 57 | other: "%{count} Stunden" |
|
58 | 58 | x_days: |
|
59 | 59 | one: '1 Tag' |
|
60 | 60 | other: '%{count} Tagen' |
|
61 | 61 | about_x_months: |
|
62 | 62 | one: 'etwa 1 Monat' |
|
63 | 63 | other: 'etwa %{count} Monaten' |
|
64 | 64 | x_months: |
|
65 | 65 | one: '1 Monat' |
|
66 | 66 | other: '%{count} Monaten' |
|
67 | 67 | about_x_years: |
|
68 | 68 | one: 'etwa 1 Jahr' |
|
69 | 69 | other: 'etwa %{count} Jahren' |
|
70 | 70 | over_x_years: |
|
71 | 71 | one: 'mehr als 1 Jahr' |
|
72 | 72 | other: 'mehr als %{count} Jahren' |
|
73 | 73 | almost_x_years: |
|
74 | 74 | one: "fast 1 Jahr" |
|
75 | 75 | other: "fast %{count} Jahren" |
|
76 | 76 | |
|
77 | 77 | number: |
|
78 | 78 | # Default format for numbers |
|
79 | 79 | format: |
|
80 | 80 | separator: ',' |
|
81 | 81 | delimiter: '.' |
|
82 | 82 | precision: 2 |
|
83 | 83 | currency: |
|
84 | 84 | format: |
|
85 | 85 | unit: 'β¬' |
|
86 | 86 | format: '%n %u' |
|
87 | 87 | delimiter: '' |
|
88 | 88 | percentage: |
|
89 | 89 | format: |
|
90 | 90 | delimiter: "" |
|
91 | 91 | precision: |
|
92 | 92 | format: |
|
93 | 93 | delimiter: "" |
|
94 | 94 | human: |
|
95 | 95 | format: |
|
96 | 96 | delimiter: "" |
|
97 | 97 | precision: 3 |
|
98 | 98 | storage_units: |
|
99 | 99 | format: "%n %u" |
|
100 | 100 | units: |
|
101 | 101 | byte: |
|
102 | 102 | one: "Byte" |
|
103 | 103 | other: "Bytes" |
|
104 | 104 | kb: "KB" |
|
105 | 105 | mb: "MB" |
|
106 | 106 | gb: "GB" |
|
107 | 107 | tb: "TB" |
|
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: "ist 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 | earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" |
|
149 | 149 | |
|
150 | 150 | actionview_instancetag_blank_option: Bitte auswΓ€hlen |
|
151 | 151 | |
|
152 | 152 | button_activate: Aktivieren |
|
153 | 153 | button_add: HinzufΓΌgen |
|
154 | 154 | button_annotate: Annotieren |
|
155 | 155 | button_apply: Anwenden |
|
156 | 156 | button_archive: Archivieren |
|
157 | 157 | button_back: ZurΓΌck |
|
158 | 158 | button_cancel: Abbrechen |
|
159 | 159 | button_change: Wechseln |
|
160 | 160 | button_change_password: Kennwort Γ€ndern |
|
161 | 161 | button_check_all: Alles auswΓ€hlen |
|
162 | 162 | button_clear: ZurΓΌcksetzen |
|
163 | 163 | button_close: SchlieΓen |
|
164 | 164 | button_collapse_all: Alle einklappen |
|
165 | 165 | button_configure: Konfigurieren |
|
166 | 166 | button_copy: Kopieren |
|
167 | 167 | button_copy_and_follow: Kopieren und Ticket anzeigen |
|
168 | 168 | button_create: Anlegen |
|
169 | 169 | button_create_and_continue: Anlegen und weiter |
|
170 | 170 | button_delete: LΓΆschen |
|
171 | 171 | button_delete_my_account: Mein Benutzerkonto lΓΆschen |
|
172 | 172 | button_download: Download |
|
173 | 173 | button_duplicate: Duplizieren |
|
174 | 174 | button_edit: Bearbeiten |
|
175 | 175 | button_edit_associated_wikipage: "ZugehΓΆrige Wikiseite bearbeiten: %{page_title}" |
|
176 | 176 | button_edit_section: Diesen Bereich bearbeiten |
|
177 | 177 | button_expand_all: Alle ausklappen |
|
178 | 178 | button_export: Exportieren |
|
179 | 179 | button_hide: Verstecken |
|
180 | 180 | button_list: Liste |
|
181 | 181 | button_lock: Sperren |
|
182 | 182 | button_log_time: Aufwand buchen |
|
183 | 183 | button_login: Anmelden |
|
184 | 184 | button_move: Verschieben |
|
185 | 185 | button_move_and_follow: Verschieben und Ticket anzeigen |
|
186 | 186 | button_quote: Zitieren |
|
187 | 187 | button_rename: Umbenennen |
|
188 | 188 | button_reopen: Γffnen |
|
189 | 189 | button_reply: Antworten |
|
190 | 190 | button_reset: ZurΓΌcksetzen |
|
191 | 191 | button_rollback: Auf diese Version zurΓΌcksetzen |
|
192 | 192 | button_save: Speichern |
|
193 | 193 | button_show: Anzeigen |
|
194 | 194 | button_sort: Sortieren |
|
195 | 195 | button_submit: OK |
|
196 | 196 | button_test: Testen |
|
197 | 197 | button_unarchive: Entarchivieren |
|
198 | 198 | button_uncheck_all: Alles abwΓ€hlen |
|
199 | 199 | button_unlock: Entsperren |
|
200 | 200 | button_unwatch: Nicht beobachten |
|
201 | 201 | button_update: Aktualisieren |
|
202 | 202 | button_view: Anzeigen |
|
203 | 203 | button_watch: Beobachten |
|
204 | 204 | |
|
205 | 205 | default_activity_design: Design |
|
206 | 206 | default_activity_development: Entwicklung |
|
207 | 207 | default_doc_category_tech: Technische Dokumentation |
|
208 | 208 | default_doc_category_user: Benutzerdokumentation |
|
209 | 209 | default_issue_status_closed: Erledigt |
|
210 | 210 | default_issue_status_feedback: Feedback |
|
211 | 211 | default_issue_status_in_progress: In Bearbeitung |
|
212 | 212 | default_issue_status_new: Neu |
|
213 | 213 | default_issue_status_rejected: Abgewiesen |
|
214 | 214 | default_issue_status_resolved: GelΓΆst |
|
215 | 215 | default_priority_high: Hoch |
|
216 | 216 | default_priority_immediate: Sofort |
|
217 | 217 | default_priority_low: Niedrig |
|
218 | 218 | default_priority_normal: Normal |
|
219 | 219 | default_priority_urgent: Dringend |
|
220 | 220 | default_role_developer: Entwickler |
|
221 | 221 | default_role_manager: Manager |
|
222 | 222 | default_role_reporter: Reporter |
|
223 | 223 | default_tracker_bug: Fehler |
|
224 | 224 | default_tracker_feature: Feature |
|
225 | 225 | default_tracker_support: UnterstΓΌtzung |
|
226 | 226 | |
|
227 | 227 | description_all_columns: Alle Spalten |
|
228 | 228 | description_available_columns: VerfΓΌgbare Spalten |
|
229 | 229 | description_choose_project: Projekte |
|
230 | 230 | description_date_from: Startdatum eintragen |
|
231 | 231 | description_date_range_interval: Zeitraum durch Start- und Enddatum festlegen |
|
232 | 232 | description_date_range_list: Zeitraum aus einer Liste wΓ€hlen |
|
233 | 233 | description_date_to: Enddatum eintragen |
|
234 | 234 | description_filter: Filter |
|
235 | 235 | description_issue_category_reassign: Neue Kategorie wΓ€hlen |
|
236 | 236 | description_message_content: Nachrichteninhalt |
|
237 | 237 | description_notes: Kommentare |
|
238 | 238 | description_project_scope: Suchbereich |
|
239 | 239 | description_query_sort_criteria_attribute: Sortierattribut |
|
240 | 240 | description_query_sort_criteria_direction: Sortierrichtung |
|
241 | 241 | description_search: Suchfeld |
|
242 | 242 | description_selected_columns: AusgewΓ€hlte Spalten |
|
243 | 243 | |
|
244 | 244 | description_user_mail_notification: Mailbenachrichtigungseinstellung |
|
245 | 245 | description_wiki_subpages_reassign: Neue Elternseite wΓ€hlen |
|
246 | 246 | |
|
247 | 247 | enumeration_activities: AktivitΓ€ten (Zeiterfassung) |
|
248 | 248 | enumeration_doc_categories: Dokumentenkategorien |
|
249 | 249 | enumeration_issue_priorities: Ticket-PrioritΓ€ten |
|
250 | 250 | enumeration_system_activity: System-AktivitΓ€t |
|
251 | 251 | |
|
252 | 252 | error_attachment_too_big: Diese Datei kann nicht hochgeladen werden, da sie die maximale DateigrΓΆΓe von (%{max_size}) ΓΌberschreitet. |
|
253 | 253 | error_can_not_archive_project: Dieses Projekt kann nicht archiviert werden. |
|
254 | 254 | error_can_not_delete_custom_field: Kann das benutzerdefinierte Feld nicht lΓΆschen. |
|
255 | 255 | error_can_not_delete_tracker: Dieser Tracker enthΓ€lt Tickets und kann nicht gelΓΆscht werden. |
|
256 | 256 | error_can_not_remove_role: Diese Rolle wird verwendet und kann nicht gelΓΆscht werden. |
|
257 | 257 | error_can_not_reopen_issue_on_closed_version: Das Ticket ist einer abgeschlossenen Version zugeordnet und kann daher nicht wieder geΓΆffnet werden. |
|
258 | 258 | error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %{value}" |
|
259 | 259 | error_issue_done_ratios_not_updated: Der Ticket-Fortschritt wurde nicht aktualisiert. |
|
260 | 260 | error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehΓΆrt nicht zu diesem Projekt.' |
|
261 | 261 | error_no_default_issue_status: Es ist kein Status als Standard definiert. Bitte ΓΌberprΓΌfen Sie Ihre Konfiguration (unter "Administration -> Ticket-Status"). |
|
262 | 262 | error_no_tracker_in_project: Diesem Projekt ist kein Tracker zugeordnet. Bitte ΓΌberprΓΌfen Sie die Projekteinstellungen. |
|
263 | 263 | error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden." |
|
264 | 264 | error_scm_annotate_big_text_file: Der Eintrag kann nicht umgesetzt werden, da er die maximale TextlΓ€nge ΓΌberschreitet. |
|
265 | 265 | error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %{value}" |
|
266 | 266 | error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv. |
|
267 | 267 | error_session_expired: Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an. |
|
268 | 268 | error_unable_delete_issue_status: "Der Ticket-Status konnte nicht gelΓΆscht werden." |
|
269 | 269 | error_unable_to_connect: Fehler beim Verbinden (%{value}) |
|
270 | 270 | error_workflow_copy_source: Bitte wΓ€hlen Sie einen Quell-Tracker und eine Quell-Rolle. |
|
271 | 271 | error_workflow_copy_target: Bitte wΓ€hlen Sie die Ziel-Tracker und -Rollen. |
|
272 | 272 | |
|
273 | 273 | field_account: Konto |
|
274 | 274 | field_active: Aktiv |
|
275 | 275 | field_activity: AktivitΓ€t |
|
276 | 276 | field_admin: Administrator |
|
277 | 277 | field_assignable: Tickets kΓΆnnen dieser Rolle zugewiesen werden |
|
278 | 278 | field_assigned_to: Zugewiesen an |
|
279 | 279 | field_assigned_to_role: ZustΓ€ndigkeitsrolle |
|
280 | 280 | field_attr_firstname: Vorname-Attribut |
|
281 | 281 | field_attr_lastname: Name-Attribut |
|
282 | 282 | field_attr_login: Mitgliedsname-Attribut |
|
283 | 283 | field_attr_mail: E-Mail-Attribut |
|
284 | 284 | field_auth_source: Authentifizierungs-Modus |
|
285 | 285 | field_auth_source_ldap_filter: LDAP-Filter |
|
286 | 286 | field_author: Autor |
|
287 | 287 | field_base_dn: Base DN |
|
288 | 288 | field_board_parent: Γbergeordnetes Forum |
|
289 | 289 | field_category: Kategorie |
|
290 | 290 | field_column_names: Spalten |
|
291 | 291 | field_closed_on: Geschlossen am |
|
292 | 292 | field_comments: Kommentar |
|
293 | 293 | field_comments_sorting: Kommentare anzeigen |
|
294 | 294 | field_commit_logs_encoding: Kodierung der Commit-Log-Meldungen |
|
295 | 295 | field_content: Inhalt |
|
296 | 296 | field_core_fields: Standardwerte |
|
297 | 297 | field_created_on: Angelegt |
|
298 | 298 | field_cvs_module: Modul |
|
299 | 299 | field_cvsroot: CVSROOT |
|
300 | 300 | field_default_value: Standardwert |
|
301 | 301 | field_default_status: Standardstatus |
|
302 | 302 | field_delay: Pufferzeit |
|
303 | 303 | field_description: Beschreibung |
|
304 | 304 | field_done_ratio: "% erledigt" |
|
305 | 305 | field_downloads: Downloads |
|
306 | 306 | field_due_date: Abgabedatum |
|
307 | 307 | field_editable: Bearbeitbar |
|
308 | 308 | field_effective_date: Datum |
|
309 | 309 | field_estimated_hours: GeschΓ€tzter Aufwand |
|
310 | 310 | field_field_format: Format |
|
311 | 311 | field_filename: Datei |
|
312 | 312 | field_filesize: GrΓΆΓe |
|
313 | 313 | field_firstname: Vorname |
|
314 | 314 | field_fixed_version: Zielversion |
|
315 | 315 | field_generate_password: Passwort generieren |
|
316 | 316 | field_group_by: Gruppiere Ergebnisse nach |
|
317 | 317 | field_hide_mail: E-Mail-Adresse nicht anzeigen |
|
318 | 318 | field_homepage: Projekt-Homepage |
|
319 | 319 | field_host: Host |
|
320 | 320 | field_hours: Stunden |
|
321 | 321 | field_identifier: Kennung |
|
322 | 322 | field_identity_url: OpenID-URL |
|
323 | 323 | field_inherit_members: Benutzer erben |
|
324 | 324 | field_is_closed: Ticket geschlossen |
|
325 | 325 | field_is_default: Standardeinstellung |
|
326 | 326 | field_is_filter: Als Filter benutzen |
|
327 | 327 | field_is_for_all: FΓΌr alle Projekte |
|
328 | 328 | field_is_in_roadmap: In der Roadmap anzeigen |
|
329 | 329 | field_is_private: Privat |
|
330 | 330 | field_is_public: Γffentlich |
|
331 | 331 | field_is_required: Erforderlich |
|
332 | 332 | field_issue: Ticket |
|
333 | 333 | field_issue_to: ZugehΓΆriges Ticket |
|
334 | 334 | field_issues_visibility: Ticket Sichtbarkeit |
|
335 | 335 | field_language: Sprache |
|
336 | 336 | field_last_login_on: Letzte Anmeldung |
|
337 | 337 | field_lastname: Nachname |
|
338 | 338 | field_login: Mitgliedsname |
|
339 | 339 | field_mail: E-Mail |
|
340 | 340 | field_mail_notification: Mailbenachrichtigung |
|
341 | 341 | field_max_length: Maximale LΓ€nge |
|
342 | 342 | field_member_of_group: ZustΓ€ndigkeitsgruppe |
|
343 | 343 | field_min_length: Minimale LΓ€nge |
|
344 | 344 | field_multiple: Mehrere Werte |
|
345 | 345 | field_must_change_passwd: Passwort beim nΓ€chsten Login Γ€ndern |
|
346 | 346 | field_name: Name |
|
347 | 347 | field_new_password: Neues Kennwort |
|
348 | 348 | field_notes: Kommentare |
|
349 | 349 | field_onthefly: On-the-fly-Benutzererstellung |
|
350 | 350 | field_parent: Unterprojekt von |
|
351 | 351 | field_parent_issue: Γbergeordnete Aufgabe |
|
352 | 352 | field_parent_title: Γbergeordnete Seite |
|
353 | 353 | field_password: Kennwort |
|
354 | 354 | field_password_confirmation: BestΓ€tigung |
|
355 | 355 | field_path_to_repository: Pfad zum Repository |
|
356 | 356 | field_port: Port |
|
357 | 357 | field_possible_values: MΓΆgliche Werte |
|
358 | 358 | field_principal: Auftraggeber |
|
359 | 359 | field_priority: PrioritΓ€t |
|
360 | 360 | field_private_notes: Privater Kommentar |
|
361 | 361 | field_project: Projekt |
|
362 | 362 | field_redirect_existing_links: Existierende Links umleiten |
|
363 | 363 | field_regexp: RegulΓ€rer Ausdruck |
|
364 | 364 | field_repository_is_default: Haupt-Repository |
|
365 | 365 | field_role: Rolle |
|
366 | 366 | field_root_directory: Wurzelverzeichnis |
|
367 | 367 | field_scm_path_encoding: Pfad-Kodierung |
|
368 | 368 | field_searchable: Durchsuchbar |
|
369 | 369 | field_sharing: Gemeinsame Verwendung |
|
370 | 370 | field_spent_on: Datum |
|
371 | 371 | field_start_date: Beginn |
|
372 | 372 | field_start_page: Hauptseite |
|
373 | 373 | field_status: Status |
|
374 | 374 | field_subject: Thema |
|
375 | 375 | field_subproject: Unterprojekt von |
|
376 | 376 | field_summary: Zusammenfassung |
|
377 | 377 | field_text: Textfeld |
|
378 | 378 | field_time_entries: Logzeit |
|
379 | 379 | field_time_zone: Zeitzone |
|
380 | 380 | field_timeout: Auszeit (in Sekunden) |
|
381 | 381 | field_title: Titel |
|
382 | 382 | field_tracker: Tracker |
|
383 | 383 | field_type: Typ |
|
384 | 384 | field_updated_on: Aktualisiert |
|
385 | 385 | field_url: URL |
|
386 | 386 | field_user: Benutzer |
|
387 | 387 | field_users_visibility: Benutzer Sichtbarkeit |
|
388 | 388 | field_value: Wert |
|
389 | 389 | field_version: Version |
|
390 | 390 | field_visible: Sichtbar |
|
391 | 391 | field_warn_on_leaving_unsaved: Vor dem Verlassen einer Seite mit ungesichertem Text im Editor warnen |
|
392 | 392 | field_watcher: Beobachter |
|
393 | 393 | |
|
394 | 394 | general_csv_decimal_separator: ',' |
|
395 | 395 | general_csv_encoding: ISO-8859-1 |
|
396 | 396 | general_csv_separator: ';' |
|
397 | 397 | general_pdf_fontname: freesans |
|
398 | 398 | general_pdf_monospaced_fontname: freemono |
|
399 | 399 | general_first_day_of_week: '1' |
|
400 | 400 | general_lang_name: 'German (Deutsch)' |
|
401 | 401 | general_text_No: 'Nein' |
|
402 | 402 | general_text_Yes: 'Ja' |
|
403 | 403 | general_text_no: 'nein' |
|
404 | 404 | general_text_yes: 'ja' |
|
405 | 405 | |
|
406 | 406 | label_activity: AktivitΓ€t |
|
407 | 407 | label_add_another_file: Eine weitere Datei hinzufΓΌgen |
|
408 | 408 | label_add_note: Kommentar hinzufΓΌgen |
|
409 | 409 | label_add_projects: Projekt hinzufΓΌgen |
|
410 | 410 | label_added: hinzugefΓΌgt |
|
411 | 411 | label_added_time_by: "Von %{author} vor %{age} hinzugefΓΌgt" |
|
412 | 412 | label_additional_workflow_transitions_for_assignee: ZusΓ€tzliche Berechtigungen wenn der Benutzer der Zugewiesene ist |
|
413 | 413 | label_additional_workflow_transitions_for_author: ZusΓ€tzliche Berechtigungen wenn der Benutzer der Autor ist |
|
414 | 414 | label_administration: Administration |
|
415 | 415 | label_age: GeΓ€ndert vor |
|
416 | 416 | label_ago: vor |
|
417 | 417 | label_all: alle |
|
418 | 418 | label_all_time: gesamter Zeitraum |
|
419 | 419 | label_all_words: Alle WΓΆrter |
|
420 | 420 | label_and_its_subprojects: "%{value} und dessen Unterprojekte" |
|
421 | 421 | label_any: alle |
|
422 | 422 | label_any_issues_in_project: irgendein Ticket im Projekt |
|
423 | 423 | label_any_issues_not_in_project: irgendein Ticket nicht im Projekt |
|
424 | 424 | label_api_access_key: API-ZugriffsschlΓΌssel |
|
425 | 425 | label_api_access_key_created_on: Der API-ZugriffsschlΓΌssel wurde vor %{value} erstellt |
|
426 | 426 | label_applied_status: Zugewiesener Status |
|
427 | 427 | label_ascending: Aufsteigend |
|
428 | 428 | label_ask: Nachfragen |
|
429 | 429 | label_assigned_to_me_issues: Mir zugewiesene Tickets |
|
430 | 430 | label_associated_revisions: ZugehΓΆrige Revisionen |
|
431 | 431 | label_attachment: Datei |
|
432 | 432 | label_attachment_delete: Anhang lΓΆschen |
|
433 | 433 | label_attachment_new: Neue Datei |
|
434 | 434 | label_attachment_plural: Dateien |
|
435 | 435 | label_attribute: Attribut |
|
436 | 436 | label_attribute_of_assigned_to: "%{name} des Bearbeiters" |
|
437 | 437 | label_attribute_of_author: "%{name} des Autors" |
|
438 | 438 | label_attribute_of_fixed_version: "%{name} der Zielversion" |
|
439 | 439 | label_attribute_of_issue: "%{name} des Tickets" |
|
440 | 440 | label_attribute_of_project: "%{name} des Projekts" |
|
441 | 441 | label_attribute_of_user: "%{name} des Benutzers" |
|
442 | 442 | label_attribute_plural: Attribute |
|
443 | 443 | label_auth_source: Authentifizierungs-Modus |
|
444 | 444 | label_auth_source_new: Neuer Authentifizierungs-Modus |
|
445 | 445 | label_auth_source_plural: Authentifizierungs-Arten |
|
446 | 446 | label_authentication: Authentifizierung |
|
447 | 447 | label_between: zwischen |
|
448 | 448 | label_blocked_by: Blockiert durch |
|
449 | 449 | label_blocks: Blockiert |
|
450 | 450 | label_board: Forum |
|
451 | 451 | label_board_locked: Gesperrt |
|
452 | 452 | label_board_new: Neues Forum |
|
453 | 453 | label_board_plural: Foren |
|
454 | 454 | label_board_sticky: Wichtig (immer oben) |
|
455 | 455 | label_boolean: Boolean |
|
456 | 456 | label_branch: Zweig |
|
457 | 457 | label_browse: Codebrowser |
|
458 | 458 | label_bulk_edit_selected_issues: Alle ausgewΓ€hlten Tickets bearbeiten |
|
459 | 459 | label_bulk_edit_selected_time_entries: AusgewΓ€hlte ZeitaufwΓ€nde bearbeiten |
|
460 | 460 | label_calendar: Kalender |
|
461 | 461 | label_change_plural: Γnderungen |
|
462 | 462 | label_change_properties: Eigenschaften Γ€ndern |
|
463 | 463 | label_change_status: Statuswechsel |
|
464 | 464 | label_change_view_all: Alle Γnderungen anzeigen |
|
465 | 465 | label_changes_details: Details aller Γnderungen |
|
466 | 466 | label_changeset_plural: Changesets |
|
467 | 467 | label_checkboxes: Checkboxen |
|
468 | 468 | label_check_for_updates: Auf Updates prΓΌfen |
|
469 | 469 | label_child_revision: Nachfolger |
|
470 | 470 | label_chronological_order: in zeitlicher Reihenfolge |
|
471 | 471 | label_close_versions: VollstΓ€ndige Versionen schlieΓen |
|
472 | 472 | label_closed_issues: geschlossen |
|
473 | 473 | label_closed_issues_plural: geschlossen |
|
474 | 474 | label_comment: Kommentar |
|
475 | 475 | label_comment_add: Kommentar hinzufΓΌgen |
|
476 | 476 | label_comment_added: Kommentar hinzugefΓΌgt |
|
477 | 477 | label_comment_delete: Kommentar lΓΆschen |
|
478 | 478 | label_comment_plural: Kommentare |
|
479 | 479 | label_commits_per_author: Γbertragungen pro Autor |
|
480 | 480 | label_commits_per_month: Γbertragungen pro Monat |
|
481 | 481 | label_completed_versions: Abgeschlossene Versionen |
|
482 | 482 | label_confirmation: BestΓ€tigung |
|
483 | 483 | label_contains: enthΓ€lt |
|
484 | 484 | label_copied: kopiert |
|
485 | 485 | label_copied_from: Kopiert von |
|
486 | 486 | label_copied_to: Kopiert nach |
|
487 | 487 | label_copy_attachments: AnhΓ€nge kopieren |
|
488 | 488 | label_copy_same_as_target: So wie das Ziel |
|
489 | 489 | label_copy_source: Quelle |
|
490 | 490 | label_copy_subtasks: Unteraufgaben kopieren |
|
491 | 491 | label_copy_target: Ziel |
|
492 | 492 | label_copy_workflow_from: Workflow kopieren von |
|
493 | 493 | label_cross_project_descendants: Mit Unterprojekten |
|
494 | 494 | label_cross_project_hierarchy: Mit Projekthierarchie |
|
495 | 495 | label_cross_project_system: Mit allen Projekten |
|
496 | 496 | label_cross_project_tree: Mit Projektbaum |
|
497 | 497 | label_current_status: GegenwΓ€rtiger Status |
|
498 | 498 | label_current_version: GegenwΓ€rtige Version |
|
499 | 499 | label_custom_field: Benutzerdefiniertes Feld |
|
500 | 500 | label_custom_field_new: Neues Feld |
|
501 | 501 | label_custom_field_plural: Benutzerdefinierte Felder |
|
502 | 502 | label_custom_field_select_type: Bitte wΓ€hlen Sie den Objekttyp, zu dem das benutzerdefinierte Feld hinzugefΓΌgt werden soll |
|
503 | 503 | label_date: Datum |
|
504 | 504 | label_date_from: Von |
|
505 | 505 | label_date_from_to: von %{start} bis %{end} |
|
506 | 506 | label_date_range: Zeitraum |
|
507 | 507 | label_date_to: Bis |
|
508 | 508 | label_day_plural: Tage |
|
509 | 509 | label_default: Standard |
|
510 | 510 | label_default_columns: Standard-Spalten |
|
511 | 511 | label_deleted: gelΓΆscht |
|
512 | 512 | label_descending: Absteigend |
|
513 | 513 | label_details: Details |
|
514 | 514 | label_diff: diff |
|
515 | 515 | label_diff_inline: einspaltig |
|
516 | 516 | label_diff_side_by_side: nebeneinander |
|
517 | 517 | label_disabled: gesperrt |
|
518 | 518 | label_display: Anzeige |
|
519 | 519 | label_display_per_page: "Pro Seite: %{value}" |
|
520 | 520 | label_display_used_statuses_only: Zeige nur Status an, die von diesem Tracker verwendet werden |
|
521 | 521 | label_document: Dokument |
|
522 | 522 | label_document_added: Dokument hinzugefΓΌgt |
|
523 | 523 | label_document_new: Neues Dokument |
|
524 | 524 | label_document_plural: Dokumente |
|
525 | 525 | label_downloads_abbr: D/L |
|
526 | 526 | label_drop_down_list: Dropdown-Liste |
|
527 | 527 | label_duplicated_by: Dupliziert durch |
|
528 | 528 | label_duplicates: Duplikat von |
|
529 | 529 | label_edit_attachments: AngehΓ€ngte Dateien bearbeiten |
|
530 | 530 | label_enumeration_new: Neuer Wert |
|
531 | 531 | label_enumerations: AufzΓ€hlungen |
|
532 | 532 | label_environment: Umgebung |
|
533 | 533 | label_equals: ist |
|
534 | 534 | label_example: Beispiel |
|
535 | 535 | label_export_options: "%{export_format} Export-Eigenschaften" |
|
536 | 536 | label_export_to: "Auch abrufbar als:" |
|
537 | 537 | label_f_hour: "%{value} Stunde" |
|
538 | 538 | label_f_hour_plural: "%{value} Stunden" |
|
539 | 539 | label_feed_plural: Feeds |
|
540 | 540 | label_feeds_access_key: Atom-ZugriffsschlΓΌssel |
|
541 | 541 | label_feeds_access_key_created_on: "Atom-ZugriffsschlΓΌssel vor %{value} erstellt" |
|
542 | 542 | label_fields_permissions: Feldberechtigungen |
|
543 | 543 | label_file_added: Datei hinzugefΓΌgt |
|
544 | 544 | label_file_plural: Dateien |
|
545 | 545 | label_filter_add: Filter hinzufΓΌgen |
|
546 | 546 | label_filter_plural: Filter |
|
547 | 547 | label_float: FlieΓkommazahl |
|
548 | 548 | label_follows: Nachfolger von |
|
549 | 549 | label_gantt: Gantt-Diagramm |
|
550 | 550 | label_gantt_progress_line: Fortschrittslinie |
|
551 | 551 | label_general: Allgemein |
|
552 | 552 | label_generate_key: Generieren |
|
553 | 553 | label_git_report_last_commit: Bericht des letzten Commits fΓΌr Dateien und Verzeichnisse |
|
554 | 554 | label_greater_or_equal: ">=" |
|
555 | 555 | label_group: Gruppe |
|
556 | 556 | label_group_anonymous: Anonyme Benutzer |
|
557 | 557 | label_group_new: Neue Gruppe |
|
558 | 558 | label_group_non_member: Nichtmitglieder |
|
559 | 559 | label_group_plural: Gruppen |
|
560 | 560 | label_help: Hilfe |
|
561 | 561 | label_hidden: Versteckt |
|
562 | 562 | label_history: Historie |
|
563 | 563 | label_home: Hauptseite |
|
564 | 564 | label_in: in |
|
565 | 565 | label_in_less_than: in weniger als |
|
566 | 566 | label_in_more_than: in mehr als |
|
567 | 567 | label_in_the_next_days: in den nΓ€chsten |
|
568 | 568 | label_in_the_past_days: in den letzten |
|
569 | 569 | label_incoming_emails: Eingehende E-Mails |
|
570 | 570 | label_index_by_date: Seiten nach Datum sortiert |
|
571 | 571 | label_index_by_title: Seiten nach Titel sortiert |
|
572 | 572 | label_information: Information |
|
573 | 573 | label_information_plural: Informationen |
|
574 | 574 | label_integer: Zahl |
|
575 | 575 | label_internal: Intern |
|
576 | 576 | label_issue: Ticket |
|
577 | 577 | label_issue_added: Ticket hinzugefΓΌgt |
|
578 | 578 | label_issue_assigned_to_updated: Bearbeiter aktualisiert |
|
579 | 579 | label_issue_category: Ticket-Kategorie |
|
580 | 580 | label_issue_category_new: Neue Kategorie |
|
581 | 581 | label_issue_category_plural: Ticket-Kategorien |
|
582 | 582 | label_issue_new: Neues Ticket |
|
583 | 583 | label_issue_note_added: Notiz hinzugefΓΌgt |
|
584 | 584 | label_issue_plural: Tickets |
|
585 | 585 | label_issue_priority_updated: PrioritΓ€t aktualisiert |
|
586 | 586 | label_issue_status: Ticket-Status |
|
587 | 587 | label_issue_status_new: Neuer Status |
|
588 | 588 | label_issue_status_plural: Ticket-Status |
|
589 | 589 | label_issue_status_updated: Status aktualisiert |
|
590 | 590 | label_issue_tracking: Tickets |
|
591 | 591 | label_issue_updated: Ticket aktualisiert |
|
592 | 592 | label_issue_view_all: Alle Tickets anzeigen |
|
593 | 593 | label_issue_watchers: Beobachter |
|
594 | 594 | label_issues_by: "Tickets pro %{value}" |
|
595 | 595 | label_issues_visibility_all: Alle Tickets |
|
596 | 596 | label_issues_visibility_own: Tickets die folgender Benutzer erstellt hat oder die ihm zugewiesen sind |
|
597 | 597 | label_issues_visibility_public: Alle ΓΆffentlichen Tickets |
|
598 | 598 | label_item_position: "%{position}/%{count}" |
|
599 | 599 | label_jump_to_a_project: Zu einem Projekt springen... |
|
600 | 600 | label_language_based: SprachabhΓ€ngig |
|
601 | 601 | label_last_changes: "%{count} letzte Γnderungen" |
|
602 | 602 | label_last_login: Letzte Anmeldung |
|
603 | 603 | label_last_month: voriger Monat |
|
604 | 604 | label_last_n_days: "die letzten %{count} Tage" |
|
605 | 605 | label_last_n_weeks: letzte %{count} Wochen |
|
606 | 606 | label_last_week: vorige Woche |
|
607 | 607 | label_latest_compatible_version: Letzte kompatible Version |
|
608 | 608 | label_latest_revision: Aktuellste Revision |
|
609 | 609 | label_latest_revision_plural: Aktuellste Revisionen |
|
610 | 610 | label_ldap_authentication: LDAP-Authentifizierung |
|
611 | 611 | label_less_or_equal: "<=" |
|
612 | 612 | label_less_than_ago: vor weniger als |
|
613 | 613 | label_link: Link |
|
614 | 614 | label_link_copied_issue: Kopierte Tickets verlinken |
|
615 | 615 | label_link_values_to: Werte mit URL verknΓΌpfen |
|
616 | 616 | label_list: Liste |
|
617 | 617 | label_loading: Lade... |
|
618 | 618 | label_logged_as: Angemeldet als |
|
619 | 619 | label_login: Anmelden |
|
620 | 620 | label_login_with_open_id_option: oder mit OpenID anmelden |
|
621 | 621 | label_logout: Abmelden |
|
622 | 622 | label_only: nur |
|
623 | 623 | label_max_size: Maximale GrΓΆΓe |
|
624 | 624 | label_me: ich |
|
625 | 625 | label_member: Mitglied |
|
626 | 626 | label_member_new: Neues Mitglied |
|
627 | 627 | label_member_plural: Mitglieder |
|
628 | 628 | label_message_last: Letzter Forenbeitrag |
|
629 | 629 | label_message_new: Neues Thema |
|
630 | 630 | label_message_plural: ForenbeitrΓ€ge |
|
631 | 631 | label_message_posted: Forenbeitrag hinzugefΓΌgt |
|
632 | 632 | label_min_max_length: LΓ€nge (Min. - Max.) |
|
633 | 633 | label_missing_api_access_key: Der API-ZugriffsschlΓΌssel fehlt. |
|
634 | 634 | label_missing_feeds_access_key: Der Atom-ZugriffsschlΓΌssel fehlt. |
|
635 | 635 | label_modified: geΓ€ndert |
|
636 | 636 | label_module_plural: Module |
|
637 | 637 | label_month: Monat |
|
638 | 638 | label_months_from: Monate ab |
|
639 | 639 | label_more: Mehr |
|
640 | 640 | label_more_than_ago: vor mehr als |
|
641 | 641 | label_my_account: Mein Konto |
|
642 | 642 | label_my_page: Meine Seite |
|
643 | 643 | label_my_page_block: VerfΓΌgbare Widgets |
|
644 | 644 | label_my_projects: Meine Projekte |
|
645 | 645 | label_my_queries: Meine eigenen Abfragen |
|
646 | 646 | label_new: Neu |
|
647 | 647 | label_new_statuses_allowed: Neue Berechtigungen |
|
648 | 648 | label_news: News |
|
649 | 649 | label_news_added: News hinzugefΓΌgt |
|
650 | 650 | label_news_comment_added: Kommentar zu einer News hinzugefΓΌgt |
|
651 | 651 | label_news_latest: Letzte News |
|
652 | 652 | label_news_new: News hinzufΓΌgen |
|
653 | 653 | label_news_plural: News |
|
654 | 654 | label_news_view_all: Alle News anzeigen |
|
655 | 655 | label_next: Weiter |
|
656 | 656 | label_no_change_option: (Keine Γnderung) |
|
657 | 657 | label_no_data: Nichts anzuzeigen |
|
658 | 658 | label_no_issues_in_project: keine Tickets im Projekt |
|
659 | 659 | label_nobody: Niemand |
|
660 | 660 | label_none: kein |
|
661 | 661 | label_not_contains: enthΓ€lt nicht |
|
662 | 662 | label_not_equals: ist nicht |
|
663 | 663 | label_open_issues: offen |
|
664 | 664 | label_open_issues_plural: offen |
|
665 | 665 | label_optional_description: Beschreibung (optional) |
|
666 | 666 | label_options: Optionen |
|
667 | 667 | label_overall_activity: AktivitΓ€ten aller Projekte anzeigen |
|
668 | 668 | label_overall_spent_time: Aufgewendete Zeit aller Projekte anzeigen |
|
669 | 669 | label_overview: Γbersicht |
|
670 | 670 | label_parent_revision: VorgΓ€nger |
|
671 | 671 | label_password_lost: Kennwort vergessen |
|
672 | 672 | label_password_required: Bitte geben Sie Ihr Kennwort ein |
|
673 | 673 | label_permissions: Berechtigungen |
|
674 | 674 | label_permissions_report: BerechtigungsΓΌbersicht |
|
675 | 675 | label_personalize_page: Diese Seite anpassen |
|
676 | 676 | label_planning: Terminplanung |
|
677 | 677 | label_please_login: Anmelden |
|
678 | 678 | label_plugins: Plugins |
|
679 | 679 | label_precedes: VorgΓ€nger von |
|
680 | 680 | label_preferences: PrΓ€ferenzen |
|
681 | 681 | label_preview: Vorschau |
|
682 | 682 | label_previous: ZurΓΌck |
|
683 | 683 | label_principal_search: "Nach Benutzer oder Gruppe suchen:" |
|
684 | 684 | label_profile: Profil |
|
685 | 685 | label_project: Projekt |
|
686 | 686 | label_project_all: Alle Projekte |
|
687 | 687 | label_project_copy_notifications: Sende Mailbenachrichtigungen beim Kopieren des Projekts. |
|
688 | 688 | label_project_latest: Neueste Projekte |
|
689 | 689 | label_project_new: Neues Projekt |
|
690 | 690 | label_project_plural: Projekte |
|
691 | 691 | label_public_projects: Γffentliche Projekte |
|
692 | 692 | label_query: Benutzerdefinierte Abfrage |
|
693 | 693 | label_query_new: Neue Abfrage |
|
694 | 694 | label_query_plural: Benutzerdefinierte Abfragen |
|
695 | 695 | label_radio_buttons: Radio-Buttons |
|
696 | 696 | label_read: Lesen... |
|
697 | 697 | label_readonly: Nur-Lese-Zugriff |
|
698 | 698 | label_register: Registrieren |
|
699 | 699 | label_registered_on: Angemeldet am |
|
700 | 700 | label_registration_activation_by_email: Kontoaktivierung durch E-Mail |
|
701 | 701 | label_registration_automatic_activation: Automatische Kontoaktivierung |
|
702 | 702 | label_registration_manual_activation: Manuelle Kontoaktivierung |
|
703 | 703 | label_related_issues: ZugehΓΆrige Tickets |
|
704 | 704 | label_relates_to: Beziehung mit |
|
705 | 705 | label_relation_delete: Beziehung lΓΆschen |
|
706 | 706 | label_relation_new: Neue Beziehung |
|
707 | 707 | label_renamed: umbenannt |
|
708 | 708 | label_reply_plural: Antworten |
|
709 | 709 | label_report: Bericht |
|
710 | 710 | label_report_plural: Berichte |
|
711 | 711 | label_reported_issues: Erstellte Tickets |
|
712 | 712 | label_repository: Projektarchiv |
|
713 | 713 | label_repository_new: Neues Repository |
|
714 | 714 | label_repository_plural: Projektarchive |
|
715 | 715 | label_required: Erforderlich |
|
716 | 716 | label_result_plural: Resultate |
|
717 | 717 | label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge |
|
718 | 718 | label_revision: Revision |
|
719 | 719 | label_revision_id: Revision %{value} |
|
720 | 720 | label_revision_plural: Revisionen |
|
721 | 721 | label_roadmap: Roadmap |
|
722 | 722 | label_roadmap_due_in: "FΓ€llig in %{value}" |
|
723 | 723 | label_roadmap_no_issues: Keine Tickets fΓΌr diese Version |
|
724 | 724 | label_roadmap_overdue: "seit %{value} verspΓ€tet" |
|
725 | 725 | label_role: Rolle |
|
726 | 726 | label_role_and_permissions: Rollen und Rechte |
|
727 | 727 | label_role_anonymous: Anonymous |
|
728 | 728 | label_role_new: Neue Rolle |
|
729 | 729 | label_role_non_member: Nichtmitglied |
|
730 | 730 | label_role_plural: Rollen |
|
731 | 731 | label_scm: Versionskontrollsystem |
|
732 | 732 | label_search: Suche |
|
733 | 733 | label_search_for_watchers: Nach hinzufΓΌgbaren Beobachtern suchen |
|
734 | 734 | label_search_titles_only: Nur Titel durchsuchen |
|
735 | 735 | label_send_information: Sende Kontoinformationen an Benutzer |
|
736 | 736 | label_send_test_email: Test-E-Mail senden |
|
737 | 737 | label_session_expiration: Ende einer Sitzung |
|
738 | 738 | label_settings: Konfiguration |
|
739 | 739 | label_show_closed_projects: Geschlossene Projekte anzeigen |
|
740 | 740 | label_show_completed_versions: Abgeschlossene Versionen anzeigen |
|
741 | 741 | label_sort: Sortierung |
|
742 | 742 | label_sort_by: "Sortiert nach %{value}" |
|
743 | 743 | label_sort_higher: Eins hΓΆher |
|
744 | 744 | label_sort_highest: An den Anfang |
|
745 | 745 | label_sort_lower: Eins tiefer |
|
746 | 746 | label_sort_lowest: Ans Ende |
|
747 | 747 | label_spent_time: Aufgewendete Zeit |
|
748 | 748 | label_statistics: Statistiken |
|
749 | 749 | label_status_transitions: StatusΓ€nderungen |
|
750 | 750 | label_stay_logged_in: Angemeldet bleiben |
|
751 | 751 | label_string: Text |
|
752 | 752 | label_subproject_new: Neues Unterprojekt |
|
753 | 753 | label_subproject_plural: Unterprojekte |
|
754 | 754 | label_subtask_plural: Unteraufgaben |
|
755 | 755 | label_tag: Markierung |
|
756 | 756 | label_text: Langer Text |
|
757 | 757 | label_theme: Stil |
|
758 | 758 | label_this_month: aktueller Monat |
|
759 | 759 | label_this_week: aktuelle Woche |
|
760 | 760 | label_this_year: aktuelles Jahr |
|
761 | 761 | label_time_entry_plural: BenΓΆtigte Zeit |
|
762 | 762 | label_time_tracking: Zeiterfassung |
|
763 | 763 | label_today: heute |
|
764 | 764 | label_topic_plural: Themen |
|
765 | 765 | label_total: Gesamtzahl |
|
766 | 766 | label_total_time: Gesamtzeit |
|
767 | 767 | label_tracker: Tracker |
|
768 | 768 | label_tracker_new: Neuer Tracker |
|
769 | 769 | label_tracker_plural: Tracker |
|
770 | 770 | label_unknown_plugin: Unbekanntes Plugin |
|
771 | 771 | label_update_issue_done_ratios: Ticket-Fortschritt aktualisieren |
|
772 | 772 | label_updated_time: "Vor %{value} aktualisiert" |
|
773 | 773 | label_updated_time_by: "Von %{author} vor %{age} aktualisiert" |
|
774 | 774 | label_used_by: Benutzt von |
|
775 | 775 | label_user: Benutzer |
|
776 | 776 | label_user_activity: "AktivitΓ€t von %{value}" |
|
777 | 777 | label_user_anonymous: Anonym |
|
778 | 778 | label_user_mail_no_self_notified: "Ich mΓΆchte nicht ΓΌber Γnderungen benachrichtigt werden, die ich selbst durchfΓΌhre." |
|
779 | 779 | label_user_mail_option_all: "FΓΌr alle Ereignisse in all meinen Projekten" |
|
780 | 780 | label_user_mail_option_none: Keine Ereignisse |
|
781 | 781 | label_user_mail_option_only_assigned: Nur fΓΌr Aufgaben fΓΌr die ich zustΓ€ndig bin |
|
782 | 782 | label_user_mail_option_only_my_events: Nur fΓΌr Aufgaben die ich beobachte oder an welchen ich mitarbeite |
|
783 | 783 | label_user_mail_option_only_owner: Nur fΓΌr Aufgaben die ich angelegt habe |
|
784 | 784 | label_user_mail_option_selected: "FΓΌr alle Ereignisse in den ausgewΓ€hlten Projekten" |
|
785 | 785 | label_user_new: Neuer Benutzer |
|
786 | 786 | label_user_plural: Benutzer |
|
787 | 787 | label_user_search: "Nach Benutzer suchen:" |
|
788 | 788 | label_users_visibility_all: Alle aktiven Benutzer |
|
789 | 789 | label_users_visibility_members_of_visible_projects: Mitglieder von sichtbaren Projekten |
|
790 | 790 | label_version: Version |
|
791 | 791 | label_version_new: Neue Version |
|
792 | 792 | label_version_plural: Versionen |
|
793 | 793 | label_version_sharing_descendants: Mit Unterprojekten |
|
794 | 794 | label_version_sharing_hierarchy: Mit Projekthierarchie |
|
795 | 795 | label_version_sharing_none: Nicht gemeinsam verwenden |
|
796 | 796 | label_version_sharing_system: Mit allen Projekten |
|
797 | 797 | label_version_sharing_tree: Mit Projektbaum |
|
798 | 798 | label_view_all_revisions: Alle Revisionen anzeigen |
|
799 | 799 | label_view_diff: Unterschiede anzeigen |
|
800 | 800 | label_view_revisions: Revisionen anzeigen |
|
801 | 801 | label_visibility_private: nur fΓΌr mich |
|
802 | 802 | label_visibility_public: fΓΌr jeden Benutzer |
|
803 | 803 | label_visibility_roles: nur fΓΌr diese Rollen |
|
804 | 804 | label_watched_issues: Beobachtete Tickets |
|
805 | 805 | label_week: Woche |
|
806 | 806 | label_wiki: Wiki |
|
807 | 807 | label_wiki_content_added: Wiki-Seite hinzugefΓΌgt |
|
808 | 808 | label_wiki_content_updated: Wiki-Seite aktualisiert |
|
809 | 809 | label_wiki_edit: Wiki-Bearbeitung |
|
810 | 810 | label_wiki_edit_plural: Wiki-Bearbeitungen |
|
811 | 811 | label_wiki_page: Wiki-Seite |
|
812 | 812 | label_wiki_page_plural: Wiki-Seiten |
|
813 | 813 | label_workflow: Workflow |
|
814 | 814 | label_x_closed_issues_abbr: |
|
815 | 815 | zero: 0 geschlossen |
|
816 | 816 | one: 1 geschlossen |
|
817 | 817 | other: "%{count} geschlossen" |
|
818 | 818 | label_x_comments: |
|
819 | 819 | zero: keine Kommentare |
|
820 | 820 | one: 1 Kommentar |
|
821 | 821 | other: "%{count} Kommentare" |
|
822 | 822 | label_x_issues: |
|
823 | 823 | zero: 0 Tickets |
|
824 | 824 | one: 1 Ticket |
|
825 | 825 | other: "%{count} Tickets" |
|
826 | 826 | label_x_open_issues_abbr: |
|
827 | 827 | zero: 0 offen |
|
828 | 828 | one: 1 offen |
|
829 | 829 | other: "%{count} offen" |
|
830 | 830 | label_x_projects: |
|
831 | 831 | zero: keine Projekte |
|
832 | 832 | one: 1 Projekt |
|
833 | 833 | other: "%{count} Projekte" |
|
834 | 834 | label_year: Jahr |
|
835 | 835 | label_yesterday: gestern |
|
836 | 836 | |
|
837 | 837 | mail_body_account_activation_request: "Ein neuer Benutzer (%{value}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:" |
|
838 | 838 | mail_body_account_information: Ihre Konto-Informationen |
|
839 | 839 | mail_body_account_information_external: "Sie kΓΆnnen sich mit Ihrem Konto %{value} anmelden." |
|
840 | 840 | mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu Γ€ndern:' |
|
841 | 841 | mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:' |
|
842 | 842 | mail_body_reminder: "%{count} Tickets, die Ihnen zugewiesen sind, mΓΌssen in den nΓ€chsten %{days} Tagen abgegeben werden:" |
|
843 | 843 | mail_body_wiki_content_added: "Die Wiki-Seite '%{id}' wurde von %{author} hinzugefΓΌgt." |
|
844 | 844 | mail_body_wiki_content_updated: "Die Wiki-Seite '%{id}' wurde von %{author} aktualisiert." |
|
845 | 845 | mail_subject_account_activation_request: "Antrag auf %{value} Kontoaktivierung" |
|
846 | 846 | mail_subject_lost_password: "Ihr %{value} Kennwort" |
|
847 | 847 | mail_subject_register: "%{value} Kontoaktivierung" |
|
848 | 848 | mail_subject_reminder: "%{count} Tickets mΓΌssen in den nΓ€chsten %{days} Tagen abgegeben werden" |
|
849 | 849 | mail_subject_wiki_content_added: "Wiki-Seite '%{id}' hinzugefΓΌgt" |
|
850 | 850 | mail_subject_wiki_content_updated: "Wiki-Seite '%{id}' erfolgreich aktualisiert" |
|
851 | 851 | mail_subject_security_notification: "Sicherheitshinweis" |
|
852 | 852 | mail_body_security_notification_change: "%{field} wurde geΓΒ€ndert." |
|
853 | 853 | mail_body_security_notification_change_to: "%{field} wurde geΓΒ€ndert zu %{value}." |
|
854 | 854 | mail_body_security_notification_add: "%{field} %{value} wurde hinzugefΓΒΌgt." |
|
855 | 855 | mail_body_security_notification_remove: "%{field} %{value} wurde entfernt." |
|
856 | 856 | mail_body_security_notification_notify_enabled: "E-Mail-Adresse %{value} erhΓ€lt nun Benachrichtigungen." |
|
857 | 857 | mail_body_security_notification_notify_disabled: "E-Mail-Adresse %{value} erhΓ€lt keine Benachrichtigungen mehr." |
|
858 | 858 | |
|
859 | 859 | notice_account_activated: Ihr Konto ist aktiviert. Sie kΓΆnnen sich jetzt anmelden. |
|
860 | 860 | notice_account_deleted: Ihr Benutzerkonto wurde unwiderruflich gelΓΆscht. |
|
861 | 861 | notice_account_invalid_credentials: Benutzer oder Kennwort ist ungΓΌltig. |
|
862 | 862 | notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wΓ€hlen, wurde Ihnen geschickt. |
|
863 | 863 | notice_account_locked: Ihr Konto ist gesperrt. |
|
864 | 864 | notice_account_not_activated_yet: Sie haben Ihr Konto noch nicht aktiviert. Wenn Sie die Aktivierungsmail erneut erhalten wollen, <a href="%{url}">klicken Sie bitte hier</a>. |
|
865 | 865 | notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert. |
|
866 | 866 | notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators." |
|
867 | 867 | notice_account_register_done: Konto wurde erfolgreich angelegt. Eine E-Mail mit weiteren Instruktionen zur Kontoaktivierung wurde an %{email} gesendet. |
|
868 | 868 | notice_account_unknown_email: Unbekannter Benutzer. |
|
869 | 869 | notice_account_updated: Konto wurde erfolgreich aktualisiert. |
|
870 | 870 | notice_account_wrong_password: Falsches Kennwort. |
|
871 | 871 | notice_api_access_key_reseted: Ihr API-ZugriffsschlΓΌssel wurde zurΓΌckgesetzt. |
|
872 | 872 | notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. UnmΓΆglich, das Kennwort zu Γ€ndern. |
|
873 | 873 | notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen. |
|
874 | 874 | notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten (%{value})." |
|
875 | 875 | notice_email_sent: "Eine E-Mail wurde an %{value} gesendet." |
|
876 | 876 | notice_failed_to_save_issues: "%{count} von %{total} ausgewΓ€hlten Tickets konnte(n) nicht gespeichert werden: %{ids}." |
|
877 | 877 | notice_failed_to_save_members: "Benutzer konnte nicht gespeichert werden: %{errors}." |
|
878 | 878 | notice_failed_to_save_time_entries: "Gescheitert %{count} ZeiteintrΓ€ge fΓΌr %{total} von ausgewΓ€hlten: %{ids} zu speichern." |
|
879 | 879 | notice_feeds_access_key_reseted: Ihr Atom-ZugriffsschlΓΌssel wurde zurΓΌckgesetzt. |
|
880 | 880 | notice_file_not_found: Anhang existiert nicht oder ist gelΓΆscht worden. |
|
881 | 881 | notice_gantt_chart_truncated: Die Grafik ist unvollstΓ€ndig, da das Maximum der anzeigbaren Aufgaben ΓΌberschritten wurde (%{max}) |
|
882 | 882 | notice_issue_done_ratios_updated: Der Ticket-Fortschritt wurde aktualisiert. |
|
883 | 883 | notice_issue_successful_create: Ticket %{id} erstellt. |
|
884 | 884 | notice_issue_update_conflict: Das Ticket wurde wΓ€hrend Ihrer Bearbeitung von einem anderen Nutzer ΓΌberarbeitet. |
|
885 | 885 | notice_locking_conflict: Datum wurde von einem anderen Benutzer geΓ€ndert. |
|
886 | 886 | notice_new_password_must_be_different: Das neue Passwort muss sich vom dem aktuellen |
|
887 | 887 | unterscheiden |
|
888 | 888 | notice_no_issue_selected: "Kein Ticket ausgewΓ€hlt! Bitte wΓ€hlen Sie die Tickets, die Sie bearbeiten mΓΆchten." |
|
889 | 889 | notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen. |
|
890 | 890 | notice_not_authorized_archived_project: Das Projekt wurde archiviert und ist daher nicht nicht verfΓΌgbar. |
|
891 | 891 | notice_successful_connection: Verbindung erfolgreich. |
|
892 | 892 | notice_successful_create: Erfolgreich angelegt |
|
893 | 893 | notice_successful_delete: Erfolgreich gelΓΆscht. |
|
894 | 894 | notice_successful_update: Erfolgreich aktualisiert. |
|
895 | 895 | notice_unable_delete_time_entry: Der Zeiterfassungseintrag konnte nicht gelΓΆscht werden. |
|
896 | 896 | notice_unable_delete_version: Die Version konnte nicht gelΓΆscht werden. |
|
897 | 897 | notice_user_successful_create: Benutzer %{id} angelegt. |
|
898 | 898 | |
|
899 | 899 | permission_add_issue_notes: Kommentare hinzufΓΌgen |
|
900 | 900 | permission_add_issue_watchers: Beobachter hinzufΓΌgen |
|
901 | 901 | permission_add_issues: Tickets hinzufΓΌgen |
|
902 | 902 | permission_add_messages: ForenbeitrΓ€ge hinzufΓΌgen |
|
903 | 903 | permission_add_project: Projekt erstellen |
|
904 | 904 | permission_add_subprojects: Unterprojekte erstellen |
|
905 | 905 | permission_add_documents: Dokumente hinzufΓΌgen |
|
906 | 906 | permission_browse_repository: Projektarchiv ansehen |
|
907 | 907 | permission_close_project: SchlieΓen / erneutes Γffnen eines Projekts |
|
908 | 908 | permission_comment_news: News kommentieren |
|
909 | 909 | permission_commit_access: Commit-Zugriff |
|
910 | 910 | permission_delete_issue_watchers: Beobachter lΓΆschen |
|
911 | 911 | permission_delete_issues: Tickets lΓΆschen |
|
912 | 912 | permission_delete_messages: ForenbeitrΓ€ge lΓΆschen |
|
913 | 913 | permission_delete_own_messages: Eigene ForenbeitrΓ€ge lΓΆschen |
|
914 | 914 | permission_delete_wiki_pages: Wiki-Seiten lΓΆschen |
|
915 | 915 | permission_delete_wiki_pages_attachments: AnhΓ€nge lΓΆschen |
|
916 | 916 | permission_delete_documents: Dokumente lΓΆschen |
|
917 | 917 | permission_edit_issue_notes: Kommentare bearbeiten |
|
918 | 918 | permission_edit_issues: Tickets bearbeiten |
|
919 | 919 | permission_edit_messages: ForenbeitrΓ€ge bearbeiten |
|
920 | 920 | permission_edit_own_issue_notes: Eigene Kommentare bearbeiten |
|
921 | 921 | permission_edit_own_messages: Eigene ForenbeitrΓ€ge bearbeiten |
|
922 | 922 | permission_edit_own_time_entries: Selbst gebuchte AufwΓ€nde bearbeiten |
|
923 | 923 | permission_edit_project: Projekt bearbeiten |
|
924 | 924 | permission_edit_time_entries: Gebuchte AufwΓ€nde bearbeiten |
|
925 | 925 | permission_edit_wiki_pages: Wiki-Seiten bearbeiten |
|
926 | 926 | permission_edit_documents: Dokumente bearbeiten |
|
927 | 927 | permission_export_wiki_pages: Wiki-Seiten exportieren |
|
928 | 928 | permission_log_time: AufwΓ€nde buchen |
|
929 | 929 | permission_manage_boards: Foren verwalten |
|
930 | 930 | permission_manage_categories: Ticket-Kategorien verwalten |
|
931 | 931 | permission_manage_files: Dateien verwalten |
|
932 | 932 | permission_manage_issue_relations: Ticket-Beziehungen verwalten |
|
933 | 933 | permission_manage_members: Mitglieder verwalten |
|
934 | 934 | permission_manage_news: News verwalten |
|
935 | 935 | permission_manage_project_activities: AktivitΓ€ten (Zeiterfassung) verwalten |
|
936 | 936 | permission_manage_public_queries: Γffentliche Filter verwalten |
|
937 | 937 | permission_manage_related_issues: ZugehΓΆrige Tickets verwalten |
|
938 | 938 | permission_manage_repository: Projektarchiv verwalten |
|
939 | 939 | permission_manage_subtasks: Unteraufgaben verwalten |
|
940 | 940 | permission_manage_versions: Versionen verwalten |
|
941 | 941 | permission_manage_wiki: Wiki verwalten |
|
942 | 942 | permission_move_issues: Tickets verschieben |
|
943 | 943 | permission_protect_wiki_pages: Wiki-Seiten schΓΌtzen |
|
944 | 944 | permission_rename_wiki_pages: Wiki-Seiten umbenennen |
|
945 | 945 | permission_save_queries: Filter speichern |
|
946 | 946 | permission_select_project_modules: Projektmodule auswΓ€hlen |
|
947 | 947 | permission_set_issues_private: Tickets privat oder ΓΆffentlich markieren |
|
948 | 948 | permission_set_notes_private: Kommentar als privat markieren |
|
949 | 949 | permission_set_own_issues_private: Eigene Tickets privat oder ΓΆffentlich markieren |
|
950 | 950 | permission_view_calendar: Kalender ansehen |
|
951 | 951 | permission_view_changesets: Changesets ansehen |
|
952 | 952 | permission_view_documents: Dokumente ansehen |
|
953 | 953 | permission_view_files: Dateien ansehen |
|
954 | 954 | permission_view_gantt: Gantt-Diagramm ansehen |
|
955 | 955 | permission_view_issue_watchers: Liste der Beobachter ansehen |
|
956 | 956 | permission_view_issues: Tickets anzeigen |
|
957 | 957 | permission_view_messages: ForenbeitrΓ€ge ansehen |
|
958 | 958 | permission_view_private_notes: Private Kommentare sehen |
|
959 | 959 | permission_view_time_entries: Gebuchte AufwΓ€nde ansehen |
|
960 | 960 | permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen |
|
961 | 961 | permission_view_wiki_pages: Wiki ansehen |
|
962 | 962 | |
|
963 | 963 | project_module_boards: Foren |
|
964 | 964 | project_module_calendar: Kalender |
|
965 | 965 | project_module_documents: Dokumente |
|
966 | 966 | project_module_files: Dateien |
|
967 | 967 | project_module_gantt: Gantt |
|
968 | 968 | project_module_issue_tracking: Ticket-Verfolgung |
|
969 | 969 | project_module_news: News |
|
970 | 970 | project_module_repository: Projektarchiv |
|
971 | 971 | project_module_time_tracking: Zeiterfassung |
|
972 | 972 | project_module_wiki: Wiki |
|
973 | 973 | project_status_active: aktiv |
|
974 | 974 | project_status_archived: archiviert |
|
975 | 975 | project_status_closed: geschlossen |
|
976 | 976 | |
|
977 | 977 | setting_activity_days_default: Anzahl Tage pro Seite der Projekt-AktivitΓ€t |
|
978 | 978 | setting_app_subtitle: Applikations-Untertitel |
|
979 | 979 | setting_app_title: Applikations-Titel |
|
980 | 980 | setting_attachment_max_size: Max. DateigrΓΆΓe |
|
981 | 981 | setting_autofetch_changesets: Changesets automatisch abrufen |
|
982 | 982 | setting_autologin: Automatische Anmeldung lΓ€uft ab nach |
|
983 | 983 | setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden |
|
984 | 984 | setting_cache_formatted_text: Formatierten Text im Cache speichern |
|
985 | 985 | setting_commit_cross_project_ref: Erlauben auf Tickets aller anderen Projekte zu referenzieren |
|
986 | 986 | setting_commit_fix_keywords: SchlΓΌsselwΓΆrter (Status) |
|
987 | 987 | setting_commit_logtime_activity_id: AktivitΓ€t fΓΌr die Zeiterfassung |
|
988 | 988 | setting_commit_logtime_enabled: Aktiviere Zeitlogging |
|
989 | 989 | setting_commit_ref_keywords: SchlΓΌsselwΓΆrter (Beziehungen) |
|
990 | 990 | setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben |
|
991 | 991 | setting_cross_project_subtasks: ProjektΓΌbergreifende Unteraufgaben erlauben |
|
992 | 992 | setting_date_format: Datumsformat |
|
993 | 993 | setting_default_issue_start_date_to_creation_date: Aktuelles Datum als Beginn fΓΌr neue Tickets verwenden |
|
994 | 994 | setting_default_language: Standardsprache |
|
995 | 995 | setting_default_notification_option: Standard Benachrichtigungsoptionen |
|
996 | 996 | setting_default_projects_modules: StandardmΓ€Γig aktivierte Module fΓΌr neue Projekte |
|
997 | 997 | setting_default_projects_public: Neue Projekte sind standardmΓ€Γig ΓΆffentlich |
|
998 | 998 | setting_default_projects_tracker_ids: StandardmΓ€Γig aktivierte Tracker fΓΌr neue Projekte |
|
999 | 999 | setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen |
|
1000 | 1000 | setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen |
|
1001 | 1001 | setting_emails_footer: E-Mail-FuΓzeile |
|
1002 | 1002 | setting_emails_header: E-Mail-Kopfzeile |
|
1003 | 1003 | setting_enabled_scm: Aktivierte Versionskontrollsysteme |
|
1004 | 1004 | setting_feeds_limit: Max. Anzahl EintrΓ€ge pro Atom-Feed |
|
1005 | 1005 | setting_file_max_size_displayed: Maximale GrΓΆΓe inline angezeigter Textdateien |
|
1006 | 1006 | setting_force_default_language_for_anonymous: Standardsprache fΓΌr anonyme Benutzer erzwingen |
|
1007 | 1007 | setting_force_default_language_for_loggedin: Standardsprache fΓΌr angemeldete Benutzer erzwingen |
|
1008 | 1008 | setting_gantt_items_limit: Maximale Anzahl von Aufgaben die im Gantt-Chart angezeigt werden |
|
1009 | 1009 | setting_gravatar_default: Standard-Gravatar-Bild |
|
1010 | 1010 | setting_gravatar_enabled: Gravatar-Benutzerbilder benutzen |
|
1011 | 1011 | setting_host_name: Hostname |
|
1012 | 1012 | setting_issue_done_ratio: Berechne den Ticket-Fortschritt mittels |
|
1013 | 1013 | setting_issue_done_ratio_issue_field: Ticket-Feld %-erledigt |
|
1014 | 1014 | setting_issue_done_ratio_issue_status: Ticket-Status |
|
1015 | 1015 | setting_issue_group_assignment: Ticketzuweisung an Gruppen erlauben |
|
1016 | 1016 | setting_issue_list_default_columns: Standard-Spalten in der Ticket-Auflistung |
|
1017 | 1017 | setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export |
|
1018 | 1018 | setting_jsonp_enabled: JSONP UnterstΓΌtzung aktivieren |
|
1019 | 1019 | setting_link_copied_issue: Tickets beim kopieren verlinken |
|
1020 | 1020 | setting_login_required: Authentifizierung erforderlich |
|
1021 | 1021 | setting_mail_from: E-Mail-Absender |
|
1022 | 1022 | setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren |
|
1023 | setting_mail_handler_api_key: API-SchlΓΌssel | |
|
1023 | setting_mail_handler_api_key: API-SchlΓΌssel fΓΌr eingehende E-Mails | |
|
1024 | setting_sys_api_key: API-SchlΓΌssel fΓΌr Webservice zur Projektarchiv-Verwaltung | |
|
1024 | 1025 | setting_mail_handler_body_delimiters: "Schneide E-Mails nach einer dieser Zeilen ab" |
|
1025 | 1026 | setting_mail_handler_excluded_filenames: AnhΓ€nge nach Namen ausschlieΓen |
|
1026 | 1027 | setting_new_project_user_role_id: Rolle, die einem Nicht-Administrator zugeordnet wird, der ein Projekt erstellt |
|
1027 | 1028 | setting_non_working_week_days: Arbeitsfreie Tage |
|
1028 | 1029 | setting_openid: Erlaube OpenID-Anmeldung und -Registrierung |
|
1029 | 1030 | setting_password_min_length: MindestlΓ€nge des Kennworts |
|
1030 | 1031 | setting_password_max_age: Erzwinge Passwortwechsel nach |
|
1032 | setting_lost_password: Erlaube Passwort-ZurΓΌcksetzen per E-Mail | |
|
1031 | 1033 | setting_per_page_options: Objekte pro Seite |
|
1032 | 1034 | setting_plain_text_mail: Nur reinen Text (kein HTML) senden |
|
1033 | 1035 | setting_protocol: Protokoll |
|
1034 | 1036 | setting_repositories_encodings: Enkodierung von AnhΓ€ngen und Repositories |
|
1035 | 1037 | setting_repository_log_display_limit: Maximale Anzahl anzuzeigender Revisionen in der Historie einer Datei |
|
1036 | 1038 | setting_rest_api_enabled: REST-Schnittstelle aktivieren |
|
1037 | 1039 | setting_self_registration: Registrierung ermΓΆglichen |
|
1038 | 1040 | setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren |
|
1039 | 1041 | setting_session_lifetime: LΓ€ngste Dauer einer Sitzung |
|
1040 | 1042 | setting_session_timeout: ZeitΓΌberschreitung bei InaktivitΓ€t |
|
1041 | 1043 | setting_start_of_week: Wochenanfang |
|
1042 | 1044 | setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen |
|
1043 | 1045 | setting_text_formatting: Textformatierung |
|
1044 | 1046 | setting_thumbnails_enabled: Vorschaubilder von DateianhΓ€ngen anzeigen |
|
1045 | 1047 | setting_thumbnails_size: GrΓΆΓe der Vorschaubilder (in Pixel) |
|
1046 | 1048 | setting_time_format: Zeitformat |
|
1047 | 1049 | setting_unsubscribe: Erlaubt Benutzern das eigene Benutzerkonto zu lΓΆschen |
|
1048 | 1050 | setting_user_format: Benutzer-Anzeigeformat |
|
1049 | 1051 | setting_welcome_text: Willkommenstext |
|
1050 | 1052 | setting_wiki_compression: Wiki-Historie komprimieren |
|
1051 | 1053 | |
|
1052 | 1054 | status_active: aktiv |
|
1053 | 1055 | status_locked: gesperrt |
|
1054 | 1056 | status_registered: nicht aktivierte |
|
1055 | 1057 | |
|
1056 | 1058 | text_account_destroy_confirmation: "MΓΆchten Sie wirklich fortfahren?\nIhr Benutzerkonto wird fΓΌr immer gelΓΆscht und kann nicht wiederhergestellt werden." |
|
1057 | 1059 | text_are_you_sure: Sind Sie sicher? |
|
1058 | 1060 | text_assign_time_entries_to_project: Gebuchte AufwΓ€nde dem Projekt zuweisen |
|
1059 | 1061 | text_caracters_maximum: "Max. %{count} Zeichen." |
|
1060 | 1062 | text_caracters_minimum: "Muss mindestens %{count} Zeichen lang sein." |
|
1061 | 1063 | text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt). |
|
1062 | 1064 | text_convert_available: ImageMagick Konvertierung verfΓΌgbar (optional) |
|
1063 | 1065 | text_custom_field_possible_values_info: 'Eine Zeile pro Wert' |
|
1064 | 1066 | text_default_administrator_account_changed: Administrator-Kennwort geΓ€ndert |
|
1065 | 1067 | text_destroy_time_entries: Gebuchte AufwΓ€nde lΓΆschen |
|
1066 | 1068 | text_destroy_time_entries_question: Es wurden bereits %{hours} Stunden auf dieses Ticket gebucht. Was soll mit den AufwΓ€nden geschehen? |
|
1067 | 1069 | text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen ΓΌberschreitet.' |
|
1068 | 1070 | 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." |
|
1069 | 1071 | text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:' |
|
1070 | 1072 | text_enumeration_destroy_question: "%{count} Objekt(e) sind diesem Wert zugeordnet." |
|
1071 | 1073 | text_file_repository_writable: Verzeichnis fΓΌr Dateien beschreibbar |
|
1072 | 1074 | text_git_repository_note: Repository steht fΓΌr sich alleine (bare) und liegt lokal (z.B. /gitrepo, c:\gitrepo) |
|
1073 | 1075 | text_issue_added: "Ticket %{id} wurde erstellt von %{author}." |
|
1074 | 1076 | text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen |
|
1075 | 1077 | text_issue_category_destroy_question: "Einige Tickets (%{count}) sind dieser Kategorie zugeodnet. Was mΓΆchten Sie tun?" |
|
1076 | 1078 | text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen |
|
1077 | 1079 | text_issue_conflict_resolution_add_notes: Meine Γnderungen ΓΌbernehmen und alle anderen Γnderungen verwerfen |
|
1078 | 1080 | text_issue_conflict_resolution_cancel: Meine Γnderungen verwerfen und %{link} neu anzeigen |
|
1079 | 1081 | text_issue_conflict_resolution_overwrite: Meine Γnderungen trotzdem ΓΌbernehmen (vorherige Notizen bleiben erhalten aber manche kΓΆnnen ΓΌberschrieben werden) |
|
1080 | 1082 | text_issue_updated: "Ticket %{id} wurde aktualisiert von %{author}." |
|
1081 | 1083 | text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewΓ€hlten Tickets lΓΆschen mΓΆchten?' |
|
1082 | 1084 | text_issues_destroy_descendants_confirmation: Dies wird auch %{count} Unteraufgabe/n lΓΆschen. |
|
1083 | 1085 | text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen |
|
1084 | 1086 | text_journal_added: "%{label} %{value} wurde hinzugefΓΌgt" |
|
1085 | 1087 | text_journal_changed: "%{label} wurde von %{old} zu %{new} geΓ€ndert" |
|
1086 | 1088 | text_journal_changed_no_detail: "%{label} aktualisiert" |
|
1087 | 1089 | text_journal_deleted: "%{label} %{old} wurde gelΓΆscht" |
|
1088 | 1090 | text_journal_set_to: "%{label} wurde auf %{value} gesetzt" |
|
1089 | 1091 | text_length_between: "LΓ€nge zwischen %{min} und %{max} Zeichen." |
|
1090 | 1092 | text_line_separated: Mehrere Werte sind erlaubt (eine Zeile pro Wert). |
|
1091 | 1093 | text_load_default_configuration: Standard-Konfiguration laden |
|
1092 | 1094 | text_mercurial_repository_note: Lokales repository (e.g. /hgrepo, c:\hgrepo) |
|
1093 | 1095 | text_min_max_length_info: 0 heiΓt keine BeschrΓ€nkung |
|
1094 | 1096 | 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 diese abΓ€ndern." |
|
1095 | 1097 | 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?" |
|
1096 | 1098 | text_plugin_assets_writable: Verzeichnis fΓΌr Plugin-Assets beschreibbar |
|
1097 | 1099 | text_project_closed: Dieses Projekt ist geschlossen und kann nicht bearbeitet werden. |
|
1098 | 1100 | text_project_destroy_confirmation: Sind Sie sicher, dass Sie das Projekt lΓΆschen wollen? |
|
1099 | 1101 | text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern, Binde- und Unterstriche erlaubt, muss mit einem Kleinbuchstaben beginnen.<br />Einmal gespeichert, kann die Kennung nicht mehr geΓ€ndert werden.' |
|
1100 | 1102 | text_reassign_time_entries: 'Gebuchte AufwΓ€nde diesem Ticket zuweisen:' |
|
1101 | 1103 | text_regexp_info: z. B. ^[A-Z0-9]+$ |
|
1102 | 1104 | text_repository_identifier_info: 'Kleinbuchstaben (a-z), Ziffern, Binde- und Unterstriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geΓ€ndert werden.' |
|
1103 | 1105 | 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." |
|
1104 | 1106 | text_rmagick_available: RMagick verfΓΌgbar (optional) |
|
1105 | 1107 | text_scm_command: Kommando |
|
1106 | 1108 | text_scm_command_not_available: SCM-Kommando ist nicht verfΓΌgbar. Bitte prΓΌfen Sie die Einstellungen im Administrationspanel. |
|
1107 | 1109 | text_scm_command_version: Version |
|
1108 | 1110 | text_scm_config: Die SCM-Kommandos kΓΆnnen in der in config/configuration.yml konfiguriert werden. Redmine muss anschlieΓend neu gestartet werden. |
|
1109 | 1111 | text_scm_path_encoding_note: "Standard: UTF-8" |
|
1110 | 1112 | text_select_mail_notifications: Bitte wΓ€hlen Sie die Aktionen aus, fΓΌr die eine Mailbenachrichtigung gesendet werden soll. |
|
1111 | 1113 | text_select_project_modules: 'Bitte wΓ€hlen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:' |
|
1112 | 1114 | text_session_expiration_settings: "Achtung: Γnderungen kΓΆnnen aktuelle Sitzungen beenden, Ihre eingeschlossen!" |
|
1113 | 1115 | text_status_changed_by_changeset: "Status geΓ€ndert durch Changeset %{value}." |
|
1114 | 1116 | text_subprojects_destroy_warning: "Dessen Unterprojekte (%{value}) werden ebenfalls gelΓΆscht." |
|
1115 | 1117 | text_subversion_repository_note: 'Beispiele: file:///, http://, https://, svn://, svn+[tunnelscheme]://' |
|
1116 | 1118 | text_time_entries_destroy_confirmation: Sind Sie sicher, dass Sie die ausgewΓ€hlten ZeitaufwΓ€nde lΓΆschen mΓΆchten? |
|
1117 | 1119 | text_time_logged_by_changeset: Angewendet in Changeset %{value}. |
|
1118 | 1120 | text_tip_issue_begin_day: Aufgabe, die an diesem Tag beginnt |
|
1119 | 1121 | text_tip_issue_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet |
|
1120 | 1122 | text_tip_issue_end_day: Aufgabe, die an diesem Tag endet |
|
1121 | 1123 | text_tracker_no_workflow: Kein Workflow fΓΌr diesen Tracker definiert. |
|
1122 | 1124 | text_turning_multiple_off: Wenn Sie die Mehrfachauswahl deaktivieren, werden Felder mit Mehrfachauswahl bereinigt. |
|
1123 | 1125 | Dadurch wird sichergestellt, dass lediglich ein Wert pro Feld ausgewΓ€hlt ist. |
|
1124 | 1126 | text_unallowed_characters: Nicht erlaubte Zeichen |
|
1125 | 1127 | 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)." |
|
1126 | 1128 | text_user_wrote: "%{value} schrieb:" |
|
1127 | 1129 | text_warn_on_leaving_unsaved: Die aktuellen Γnderungen gehen verloren, wenn Sie diese Seite verlassen. |
|
1128 | 1130 | text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sΓ€mtlichem Inhalt lΓΆschen mΓΆchten? |
|
1129 | 1131 | text_wiki_page_destroy_children: LΓΆsche alle Unterseiten |
|
1130 | 1132 | text_wiki_page_destroy_question: "Diese Seite hat %{descendants} Unterseite(n). Was mΓΆchten Sie tun?" |
|
1131 | 1133 | text_wiki_page_nullify_children: Verschiebe die Unterseiten auf die oberste Ebene |
|
1132 | 1134 | text_wiki_page_reassign_children: Ordne die Unterseiten dieser Seite zu |
|
1133 | 1135 | text_workflow_edit: Workflow zum Bearbeiten auswΓ€hlen |
|
1134 | 1136 | text_zoom_in: Ansicht vergrΓΆΓern |
|
1135 | 1137 | text_zoom_out: Ansicht verkleinern |
|
1136 | 1138 | |
|
1137 | 1139 | version_status_closed: abgeschlossen |
|
1138 | 1140 | version_status_locked: gesperrt |
|
1139 | 1141 | version_status_open: offen |
|
1140 | 1142 | |
|
1141 | 1143 | warning_attachments_not_saved: "%{count} Datei(en) konnten nicht gespeichert werden." |
|
1142 | 1144 | label_search_attachments_yes: Namen und Beschreibungen von AnhΓ€ngen durchsuchen |
|
1143 | 1145 | label_search_attachments_no: Keine AnhΓ€nge suchen |
|
1144 | 1146 | label_search_attachments_only: Nur AnhΓ€nge suchen |
|
1145 | 1147 | label_search_open_issues_only: Nur offene Tickets |
|
1146 | 1148 | field_address: E-Mail |
|
1147 | 1149 | setting_max_additional_emails: Maximale Anzahl zusΓ€tzlicher E-Mailadressen |
|
1148 | 1150 | label_email_address_plural: E-Mails |
|
1149 | 1151 | label_email_address_add: E-Mailadresse hinzufΓΌgen |
|
1150 | 1152 | label_enable_notifications: Benachrichtigungen aktivieren |
|
1151 | 1153 | label_disable_notifications: Benachrichtigungen deaktivieren |
|
1152 | 1154 | setting_search_results_per_page: Suchergebnisse pro Seite |
|
1153 | 1155 | label_blank_value: leer |
|
1154 | 1156 | permission_copy_issues: Tickets kopieren |
|
1155 | 1157 | error_password_expired: Your password has expired or the administrator requires you |
|
1156 | 1158 | to change it. |
|
1157 | 1159 | field_time_entries_visibility: Time logs visibility |
|
1158 | 1160 | field_remote_ip: IP-Adresse |
|
1159 | 1161 | label_parent_task_attributes: Parent tasks attributes |
|
1160 | 1162 | label_parent_task_attributes_derived: Calculated from subtasks |
|
1161 | 1163 | label_parent_task_attributes_independent: Independent of subtasks |
|
1162 | 1164 | label_time_entries_visibility_all: All time entries |
|
1163 | 1165 | label_time_entries_visibility_own: Time entries created by the user |
|
1164 | 1166 | label_member_management: Member management |
|
1165 | 1167 | label_member_management_all_roles: Alle Rollen |
|
1166 | 1168 | label_member_management_selected_roles_only: Nur diese Rollen |
|
1167 | 1169 | label_total_spent_time: Aufgewendete Zeit aller Projekte anzeigen |
|
1168 | 1170 | notice_import_finished: Alle %{count} EintrΓ€ge wurden importiert. |
|
1169 | 1171 | notice_import_finished_with_errors: ! '%{count} von %{total} EintrΓ€gen konnten nicht |
|
1170 | 1172 | importiert werden.' |
|
1171 | 1173 | error_invalid_file_encoding: The file is not a valid %{encoding} encoded file |
|
1172 | 1174 | error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the |
|
1173 | 1175 | settings below |
|
1174 | 1176 | error_can_not_read_import_file: Beim Einlesen der Datei ist ein Fehler aufgetreten |
|
1175 | 1177 | permission_import_issues: Tickets importieren |
|
1176 | 1178 | label_import_issues: Tickets importieren |
|
1177 | 1179 | label_select_file_to_import: Bitte wΓ€hlen Sie eine Datei fΓΌr den Import aus |
|
1178 | 1180 | label_fields_separator: Trennzeichen |
|
1179 | 1181 | label_fields_wrapper: Field wrapper |
|
1180 | 1182 | label_encoding: Encoding |
|
1181 | 1183 | label_comma_char: Komma |
|
1182 | 1184 | label_semi_colon_char: Semikolon |
|
1183 | 1185 | label_quote_char: AnfΓΌhrungszeichen |
|
1184 | 1186 | label_double_quote_char: Doppelte AnfΓΌhrungszeichen |
|
1185 | 1187 | label_fields_mapping: Fields mapping |
|
1186 | 1188 | label_file_content_preview: File content preview |
|
1187 | 1189 | label_create_missing_values: Create missing values |
|
1188 | 1190 | button_import: Importieren |
|
1189 | 1191 | field_total_estimated_hours: Total estimated time |
|
1190 | 1192 | label_api: API |
|
1191 | 1193 | label_total_plural: Totals |
|
1192 | 1194 | label_assigned_issues: Assigned issues |
|
1193 | 1195 | label_field_format_enumeration: Key/value list |
|
1194 | 1196 | label_f_hour_short: '%{value} h' |
|
1195 | 1197 | field_default_version: Standard-Version |
|
1196 | 1198 | error_attachment_extension_not_allowed: Attachment Erweiterung %{extension} ist nicht zugelassen |
|
1197 | 1199 | setting_attachment_extensions_allowed: Zugelassene Erweiterungen |
|
1198 | 1200 | setting_attachment_extensions_denied: Nicht zugelassene Erweiterungen |
|
1199 | 1201 | label_any_open_issues: any open issues |
|
1200 | 1202 | label_no_open_issues: no open issues |
|
1201 | 1203 | label_default_values_for_new_users: Standardwerte fΓΌr neue Benutzer |
|
1202 | 1204 | error_ldap_bind_credentials: Invalid LDAP Account/Password |
@@ -1,1180 +1,1182 | |||
|
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_hours: |
|
53 | 53 | one: "1 hour" |
|
54 | 54 | other: "%{count} hours" |
|
55 | 55 | x_days: |
|
56 | 56 | one: "1 day" |
|
57 | 57 | other: "%{count} days" |
|
58 | 58 | about_x_months: |
|
59 | 59 | one: "about 1 month" |
|
60 | 60 | other: "about %{count} months" |
|
61 | 61 | x_months: |
|
62 | 62 | one: "1 month" |
|
63 | 63 | other: "%{count} months" |
|
64 | 64 | about_x_years: |
|
65 | 65 | one: "about 1 year" |
|
66 | 66 | other: "about %{count} years" |
|
67 | 67 | over_x_years: |
|
68 | 68 | one: "over 1 year" |
|
69 | 69 | other: "over %{count} years" |
|
70 | 70 | almost_x_years: |
|
71 | 71 | one: "almost 1 year" |
|
72 | 72 | other: "almost %{count} years" |
|
73 | 73 | |
|
74 | 74 | number: |
|
75 | 75 | format: |
|
76 | 76 | separator: "." |
|
77 | 77 | delimiter: "" |
|
78 | 78 | precision: 3 |
|
79 | 79 | |
|
80 | 80 | human: |
|
81 | 81 | format: |
|
82 | 82 | delimiter: "" |
|
83 | 83 | precision: 3 |
|
84 | 84 | storage_units: |
|
85 | 85 | format: "%n %u" |
|
86 | 86 | units: |
|
87 | 87 | byte: |
|
88 | 88 | one: "Byte" |
|
89 | 89 | other: "Bytes" |
|
90 | 90 | kb: "KB" |
|
91 | 91 | mb: "MB" |
|
92 | 92 | gb: "GB" |
|
93 | 93 | tb: "TB" |
|
94 | 94 | |
|
95 | 95 | # Used in array.to_sentence. |
|
96 | 96 | support: |
|
97 | 97 | array: |
|
98 | 98 | sentence_connector: "and" |
|
99 | 99 | skip_last_comma: false |
|
100 | 100 | |
|
101 | 101 | activerecord: |
|
102 | 102 | errors: |
|
103 | 103 | template: |
|
104 | 104 | header: |
|
105 | 105 | one: "1 error prohibited this %{model} from being saved" |
|
106 | 106 | other: "%{count} errors prohibited this %{model} from being saved" |
|
107 | 107 | messages: |
|
108 | 108 | inclusion: "is not included in the list" |
|
109 | 109 | exclusion: "is reserved" |
|
110 | 110 | invalid: "is invalid" |
|
111 | 111 | confirmation: "doesn't match confirmation" |
|
112 | 112 | accepted: "must be accepted" |
|
113 | 113 | empty: "cannot be empty" |
|
114 | 114 | blank: "cannot be blank" |
|
115 | 115 | too_long: "is too long (maximum is %{count} characters)" |
|
116 | 116 | too_short: "is too short (minimum is %{count} characters)" |
|
117 | 117 | wrong_length: "is the wrong length (should be %{count} characters)" |
|
118 | 118 | taken: "has already been taken" |
|
119 | 119 | not_a_number: "is not a number" |
|
120 | 120 | not_a_date: "is not a valid date" |
|
121 | 121 | greater_than: "must be greater than %{count}" |
|
122 | 122 | greater_than_or_equal_to: "must be greater than or equal to %{count}" |
|
123 | 123 | equal_to: "must be equal to %{count}" |
|
124 | 124 | less_than: "must be less than %{count}" |
|
125 | 125 | less_than_or_equal_to: "must be less than or equal to %{count}" |
|
126 | 126 | odd: "must be odd" |
|
127 | 127 | even: "must be even" |
|
128 | 128 | greater_than_start_date: "must be greater than start date" |
|
129 | 129 | not_same_project: "doesn't belong to the same project" |
|
130 | 130 | circular_dependency: "This relation would create a circular dependency" |
|
131 | 131 | cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks" |
|
132 | 132 | earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" |
|
133 | 133 | |
|
134 | 134 | actionview_instancetag_blank_option: Please select |
|
135 | 135 | |
|
136 | 136 | general_text_No: 'No' |
|
137 | 137 | general_text_Yes: 'Yes' |
|
138 | 138 | general_text_no: 'no' |
|
139 | 139 | general_text_yes: 'yes' |
|
140 | 140 | general_lang_name: 'English' |
|
141 | 141 | general_csv_separator: ',' |
|
142 | 142 | general_csv_decimal_separator: '.' |
|
143 | 143 | general_csv_encoding: ISO-8859-1 |
|
144 | 144 | general_pdf_fontname: freesans |
|
145 | 145 | general_pdf_monospaced_fontname: freemono |
|
146 | 146 | general_first_day_of_week: '7' |
|
147 | 147 | |
|
148 | 148 | notice_account_updated: Account was successfully updated. |
|
149 | 149 | notice_account_invalid_credentials: Invalid user or password |
|
150 | 150 | notice_account_password_updated: Password was successfully updated. |
|
151 | 151 | notice_account_wrong_password: Wrong password |
|
152 | 152 | notice_account_register_done: Account was successfully created. An email containing the instructions to activate your account was sent to %{email}. |
|
153 | 153 | notice_account_unknown_email: Unknown user. |
|
154 | 154 | notice_account_not_activated_yet: You haven't activated your account yet. If you want to receive a new activation email, please <a href="%{url}">click this link</a>. |
|
155 | 155 | notice_account_locked: Your account is locked. |
|
156 | 156 | notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. |
|
157 | 157 | notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. |
|
158 | 158 | notice_account_activated: Your account has been activated. You can now log in. |
|
159 | 159 | notice_successful_create: Successful creation. |
|
160 | 160 | notice_successful_update: Successful update. |
|
161 | 161 | notice_successful_delete: Successful deletion. |
|
162 | 162 | notice_successful_connection: Successful connection. |
|
163 | 163 | notice_file_not_found: The page you were trying to access doesn't exist or has been removed. |
|
164 | 164 | notice_locking_conflict: Data has been updated by another user. |
|
165 | 165 | notice_not_authorized: You are not authorized to access this page. |
|
166 | 166 | notice_not_authorized_archived_project: The project you're trying to access has been archived. |
|
167 | 167 | notice_email_sent: "An email was sent to %{value}" |
|
168 | 168 | notice_email_error: "An error occurred while sending mail (%{value})" |
|
169 | 169 | notice_feeds_access_key_reseted: Your Atom access key was reset. |
|
170 | 170 | notice_api_access_key_reseted: Your API access key was reset. |
|
171 | 171 | notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." |
|
172 | 172 | notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}." |
|
173 | 173 | notice_failed_to_save_members: "Failed to save member(s): %{errors}." |
|
174 | 174 | notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." |
|
175 | 175 | notice_account_pending: "Your account was created and is now pending administrator approval." |
|
176 | 176 | notice_default_data_loaded: Default configuration successfully loaded. |
|
177 | 177 | notice_unable_delete_version: Unable to delete version. |
|
178 | 178 | notice_unable_delete_time_entry: Unable to delete time log entry. |
|
179 | 179 | notice_issue_done_ratios_updated: Issue done ratios updated. |
|
180 | 180 | notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})" |
|
181 | 181 | notice_issue_successful_create: "Issue %{id} created." |
|
182 | 182 | notice_issue_update_conflict: "The issue has been updated by an other user while you were editing it." |
|
183 | 183 | notice_account_deleted: "Your account has been permanently deleted." |
|
184 | 184 | notice_user_successful_create: "User %{id} created." |
|
185 | 185 | notice_new_password_must_be_different: The new password must be different from the current password |
|
186 | 186 | notice_import_finished: "All %{count} items have been imported." |
|
187 | 187 | notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported." |
|
188 | 188 | |
|
189 | 189 | error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" |
|
190 | 190 | error_scm_not_found: "The entry or revision was not found in the repository." |
|
191 | 191 | error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" |
|
192 | 192 | error_scm_annotate: "The entry does not exist or cannot be annotated." |
|
193 | 193 | error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size." |
|
194 | 194 | error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' |
|
195 | 195 | error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' |
|
196 | 196 | error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' |
|
197 | 197 | error_can_not_delete_custom_field: Unable to delete custom field |
|
198 | 198 | error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted." |
|
199 | 199 | error_can_not_remove_role: "This role is in use and cannot be deleted." |
|
200 | 200 | error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened' |
|
201 | 201 | error_can_not_archive_project: This project cannot be archived |
|
202 | 202 | error_issue_done_ratios_not_updated: "Issue done ratios not updated." |
|
203 | 203 | error_workflow_copy_source: 'Please select a source tracker or role' |
|
204 | 204 | error_workflow_copy_target: 'Please select target tracker(s) and role(s)' |
|
205 | 205 | error_unable_delete_issue_status: 'Unable to delete issue status' |
|
206 | 206 | error_unable_to_connect: "Unable to connect (%{value})" |
|
207 | 207 | error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" |
|
208 | 208 | error_session_expired: "Your session has expired. Please login again." |
|
209 | 209 | warning_attachments_not_saved: "%{count} file(s) could not be saved." |
|
210 | 210 | error_password_expired: "Your password has expired or the administrator requires you to change it." |
|
211 | 211 | error_invalid_file_encoding: "The file is not a valid %{encoding} encoded file" |
|
212 | 212 | error_invalid_csv_file_or_settings: "The file is not a CSV file or does not match the settings below" |
|
213 | 213 | error_can_not_read_import_file: "An error occurred while reading the file to import" |
|
214 | 214 | error_attachment_extension_not_allowed: "Attachment extension %{extension} is not allowed" |
|
215 | 215 | error_ldap_bind_credentials: "Invalid LDAP Account/Password" |
|
216 | 216 | |
|
217 | 217 | mail_subject_lost_password: "Your %{value} password" |
|
218 | 218 | mail_body_lost_password: 'To change your password, click on the following link:' |
|
219 | 219 | mail_subject_register: "Your %{value} account activation" |
|
220 | 220 | mail_body_register: 'To activate your account, click on the following link:' |
|
221 | 221 | mail_body_account_information_external: "You can use your %{value} account to log in." |
|
222 | 222 | mail_body_account_information: Your account information |
|
223 | 223 | mail_subject_account_activation_request: "%{value} account activation request" |
|
224 | 224 | mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" |
|
225 | 225 | mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" |
|
226 | 226 | mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" |
|
227 | 227 | mail_subject_wiki_content_added: "'%{id}' wiki page has been added" |
|
228 | 228 | mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." |
|
229 | 229 | mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" |
|
230 | 230 | mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." |
|
231 | 231 | mail_subject_security_notification: "Security notification" |
|
232 | 232 | mail_body_security_notification_change: "%{field} was changed." |
|
233 | 233 | mail_body_security_notification_change_to: "%{field} was changed to %{value}." |
|
234 | 234 | mail_body_security_notification_add: "%{field} %{value} was added." |
|
235 | 235 | mail_body_security_notification_remove: "%{field} %{value} was removed." |
|
236 | 236 | mail_body_security_notification_notify_enabled: "Email address %{value} now receives notifications." |
|
237 | 237 | mail_body_security_notification_notify_disabled: "Email address %{value} no longer receives notifications." |
|
238 | 238 | |
|
239 | 239 | field_name: Name |
|
240 | 240 | field_description: Description |
|
241 | 241 | field_summary: Summary |
|
242 | 242 | field_is_required: Required |
|
243 | 243 | field_firstname: First name |
|
244 | 244 | field_lastname: Last name |
|
245 | 245 | field_mail: Email |
|
246 | 246 | field_address: Email |
|
247 | 247 | field_filename: File |
|
248 | 248 | field_filesize: Size |
|
249 | 249 | field_downloads: Downloads |
|
250 | 250 | field_author: Author |
|
251 | 251 | field_created_on: Created |
|
252 | 252 | field_updated_on: Updated |
|
253 | 253 | field_closed_on: Closed |
|
254 | 254 | field_field_format: Format |
|
255 | 255 | field_is_for_all: For all projects |
|
256 | 256 | field_possible_values: Possible values |
|
257 | 257 | field_regexp: Regular expression |
|
258 | 258 | field_min_length: Minimum length |
|
259 | 259 | field_max_length: Maximum length |
|
260 | 260 | field_value: Value |
|
261 | 261 | field_category: Category |
|
262 | 262 | field_title: Title |
|
263 | 263 | field_project: Project |
|
264 | 264 | field_issue: Issue |
|
265 | 265 | field_status: Status |
|
266 | 266 | field_notes: Notes |
|
267 | 267 | field_is_closed: Issue closed |
|
268 | 268 | field_is_default: Default value |
|
269 | 269 | field_tracker: Tracker |
|
270 | 270 | field_subject: Subject |
|
271 | 271 | field_due_date: Due date |
|
272 | 272 | field_assigned_to: Assignee |
|
273 | 273 | field_priority: Priority |
|
274 | 274 | field_fixed_version: Target version |
|
275 | 275 | field_user: User |
|
276 | 276 | field_principal: Principal |
|
277 | 277 | field_role: Role |
|
278 | 278 | field_homepage: Homepage |
|
279 | 279 | field_is_public: Public |
|
280 | 280 | field_parent: Subproject of |
|
281 | 281 | field_is_in_roadmap: Issues displayed in roadmap |
|
282 | 282 | field_login: Login |
|
283 | 283 | field_mail_notification: Email notifications |
|
284 | 284 | field_admin: Administrator |
|
285 | 285 | field_last_login_on: Last connection |
|
286 | 286 | field_language: Language |
|
287 | 287 | field_effective_date: Date |
|
288 | 288 | field_password: Password |
|
289 | 289 | field_new_password: New password |
|
290 | 290 | field_password_confirmation: Confirmation |
|
291 | 291 | field_version: Version |
|
292 | 292 | field_type: Type |
|
293 | 293 | field_host: Host |
|
294 | 294 | field_port: Port |
|
295 | 295 | field_account: Account |
|
296 | 296 | field_base_dn: Base DN |
|
297 | 297 | field_attr_login: Login attribute |
|
298 | 298 | field_attr_firstname: Firstname attribute |
|
299 | 299 | field_attr_lastname: Lastname attribute |
|
300 | 300 | field_attr_mail: Email attribute |
|
301 | 301 | field_onthefly: On-the-fly user creation |
|
302 | 302 | field_start_date: Start date |
|
303 | 303 | field_done_ratio: "% Done" |
|
304 | 304 | field_auth_source: Authentication mode |
|
305 | 305 | field_hide_mail: Hide my email address |
|
306 | 306 | field_comments: Comment |
|
307 | 307 | field_url: URL |
|
308 | 308 | field_start_page: Start page |
|
309 | 309 | field_subproject: Subproject |
|
310 | 310 | field_hours: Hours |
|
311 | 311 | field_activity: Activity |
|
312 | 312 | field_spent_on: Date |
|
313 | 313 | field_identifier: Identifier |
|
314 | 314 | field_is_filter: Used as a filter |
|
315 | 315 | field_issue_to: Related issue |
|
316 | 316 | field_delay: Delay |
|
317 | 317 | field_assignable: Issues can be assigned to this role |
|
318 | 318 | field_redirect_existing_links: Redirect existing links |
|
319 | 319 | field_estimated_hours: Estimated time |
|
320 | 320 | field_column_names: Columns |
|
321 | 321 | field_time_entries: Log time |
|
322 | 322 | field_time_zone: Time zone |
|
323 | 323 | field_searchable: Searchable |
|
324 | 324 | field_default_value: Default value |
|
325 | 325 | field_comments_sorting: Display comments |
|
326 | 326 | field_parent_title: Parent page |
|
327 | 327 | field_editable: Editable |
|
328 | 328 | field_watcher: Watcher |
|
329 | 329 | field_identity_url: OpenID URL |
|
330 | 330 | field_content: Content |
|
331 | 331 | field_group_by: Group results by |
|
332 | 332 | field_sharing: Sharing |
|
333 | 333 | field_parent_issue: Parent task |
|
334 | 334 | field_member_of_group: "Assignee's group" |
|
335 | 335 | field_assigned_to_role: "Assignee's role" |
|
336 | 336 | field_text: Text field |
|
337 | 337 | field_visible: Visible |
|
338 | 338 | field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" |
|
339 | 339 | field_issues_visibility: Issues visibility |
|
340 | 340 | field_is_private: Private |
|
341 | 341 | field_commit_logs_encoding: Commit messages encoding |
|
342 | 342 | field_scm_path_encoding: Path encoding |
|
343 | 343 | field_path_to_repository: Path to repository |
|
344 | 344 | field_root_directory: Root directory |
|
345 | 345 | field_cvsroot: CVSROOT |
|
346 | 346 | field_cvs_module: Module |
|
347 | 347 | field_repository_is_default: Main repository |
|
348 | 348 | field_multiple: Multiple values |
|
349 | 349 | field_auth_source_ldap_filter: LDAP filter |
|
350 | 350 | field_core_fields: Standard fields |
|
351 | 351 | field_timeout: "Timeout (in seconds)" |
|
352 | 352 | field_board_parent: Parent forum |
|
353 | 353 | field_private_notes: Private notes |
|
354 | 354 | field_inherit_members: Inherit members |
|
355 | 355 | field_generate_password: Generate password |
|
356 | 356 | field_must_change_passwd: Must change password at next logon |
|
357 | 357 | field_default_status: Default status |
|
358 | 358 | field_users_visibility: Users visibility |
|
359 | 359 | field_time_entries_visibility: Time logs visibility |
|
360 | 360 | field_total_estimated_hours: Total estimated time |
|
361 | 361 | field_default_version: Default version |
|
362 | 362 | field_remote_ip: IP address |
|
363 | 363 | |
|
364 | 364 | setting_app_title: Application title |
|
365 | 365 | setting_app_subtitle: Application subtitle |
|
366 | 366 | setting_welcome_text: Welcome text |
|
367 | 367 | setting_default_language: Default language |
|
368 | 368 | setting_login_required: Authentication required |
|
369 | 369 | setting_self_registration: Self-registration |
|
370 | 370 | setting_attachment_max_size: Maximum attachment size |
|
371 | 371 | setting_issues_export_limit: Issues export limit |
|
372 | 372 | setting_mail_from: Emission email address |
|
373 | 373 | setting_bcc_recipients: Blind carbon copy recipients (bcc) |
|
374 | 374 | setting_plain_text_mail: Plain text mail (no HTML) |
|
375 | 375 | setting_host_name: Host name and path |
|
376 | 376 | setting_text_formatting: Text formatting |
|
377 | 377 | setting_wiki_compression: Wiki history compression |
|
378 | 378 | setting_feeds_limit: Maximum number of items in Atom feeds |
|
379 | 379 | setting_default_projects_public: New projects are public by default |
|
380 | 380 | setting_autofetch_changesets: Fetch commits automatically |
|
381 | 381 | setting_sys_api_enabled: Enable WS for repository management |
|
382 | 382 | setting_commit_ref_keywords: Referencing keywords |
|
383 | 383 | setting_commit_fix_keywords: Fixing keywords |
|
384 | 384 | setting_autologin: Autologin |
|
385 | 385 | setting_date_format: Date format |
|
386 | 386 | setting_time_format: Time format |
|
387 | 387 | setting_cross_project_issue_relations: Allow cross-project issue relations |
|
388 | 388 | setting_cross_project_subtasks: Allow cross-project subtasks |
|
389 | 389 | setting_issue_list_default_columns: Default columns displayed on the issue list |
|
390 | 390 | setting_repositories_encodings: Attachments and repositories encodings |
|
391 | 391 | setting_emails_header: Email header |
|
392 | 392 | setting_emails_footer: Email footer |
|
393 | 393 | setting_protocol: Protocol |
|
394 | 394 | setting_per_page_options: Objects per page options |
|
395 | 395 | setting_user_format: Users display format |
|
396 | 396 | setting_activity_days_default: Days displayed on project activity |
|
397 | 397 | setting_display_subprojects_issues: Display subprojects issues on main projects by default |
|
398 | 398 | setting_enabled_scm: Enabled SCM |
|
399 | 399 | setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" |
|
400 | 400 | setting_mail_handler_api_enabled: Enable WS for incoming emails |
|
401 | setting_mail_handler_api_key: API key | |
|
401 | setting_mail_handler_api_key: Incoming email WS API key | |
|
402 | setting_sys_api_key: Repository management WS API key | |
|
402 | 403 | setting_sequential_project_identifiers: Generate sequential project identifiers |
|
403 | 404 | setting_gravatar_enabled: Use Gravatar user icons |
|
404 | 405 | setting_gravatar_default: Default Gravatar image |
|
405 | 406 | setting_diff_max_lines_displayed: Maximum number of diff lines displayed |
|
406 | 407 | setting_file_max_size_displayed: Maximum size of text files displayed inline |
|
407 | 408 | setting_repository_log_display_limit: Maximum number of revisions displayed on file log |
|
408 | 409 | setting_openid: Allow OpenID login and registration |
|
409 | 410 | setting_password_max_age: Require password change after |
|
410 | 411 | setting_password_min_length: Minimum password length |
|
412 | setting_lost_password: Allow password reset via email | |
|
411 | 413 | setting_new_project_user_role_id: Role given to a non-admin user who creates a project |
|
412 | 414 | setting_default_projects_modules: Default enabled modules for new projects |
|
413 | 415 | setting_issue_done_ratio: Calculate the issue done ratio with |
|
414 | 416 | setting_issue_done_ratio_issue_field: Use the issue field |
|
415 | 417 | setting_issue_done_ratio_issue_status: Use the issue status |
|
416 | 418 | setting_start_of_week: Start calendars on |
|
417 | 419 | setting_rest_api_enabled: Enable REST web service |
|
418 | 420 | setting_cache_formatted_text: Cache formatted text |
|
419 | 421 | setting_default_notification_option: Default notification option |
|
420 | 422 | setting_commit_logtime_enabled: Enable time logging |
|
421 | 423 | setting_commit_logtime_activity_id: Activity for logged time |
|
422 | 424 | setting_gantt_items_limit: Maximum number of items displayed on the gantt chart |
|
423 | 425 | setting_issue_group_assignment: Allow issue assignment to groups |
|
424 | 426 | setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues |
|
425 | 427 | setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed |
|
426 | 428 | setting_unsubscribe: Allow users to delete their own account |
|
427 | 429 | setting_session_lifetime: Session maximum lifetime |
|
428 | 430 | setting_session_timeout: Session inactivity timeout |
|
429 | 431 | setting_thumbnails_enabled: Display attachment thumbnails |
|
430 | 432 | setting_thumbnails_size: Thumbnails size (in pixels) |
|
431 | 433 | setting_non_working_week_days: Non-working days |
|
432 | 434 | setting_jsonp_enabled: Enable JSONP support |
|
433 | 435 | setting_default_projects_tracker_ids: Default trackers for new projects |
|
434 | 436 | setting_mail_handler_excluded_filenames: Exclude attachments by name |
|
435 | 437 | setting_force_default_language_for_anonymous: Force default language for anonymous users |
|
436 | 438 | setting_force_default_language_for_loggedin: Force default language for logged-in users |
|
437 | 439 | setting_link_copied_issue: Link issues on copy |
|
438 | 440 | setting_max_additional_emails: Maximum number of additional email addresses |
|
439 | 441 | setting_search_results_per_page: Search results per page |
|
440 | 442 | setting_attachment_extensions_allowed: Allowed extensions |
|
441 | 443 | setting_attachment_extensions_denied: Disallowed extensions |
|
442 | 444 | |
|
443 | 445 | permission_add_project: Create project |
|
444 | 446 | permission_add_subprojects: Create subprojects |
|
445 | 447 | permission_edit_project: Edit project |
|
446 | 448 | permission_close_project: Close / reopen the project |
|
447 | 449 | permission_select_project_modules: Select project modules |
|
448 | 450 | permission_manage_members: Manage members |
|
449 | 451 | permission_manage_project_activities: Manage project activities |
|
450 | 452 | permission_manage_versions: Manage versions |
|
451 | 453 | permission_manage_categories: Manage issue categories |
|
452 | 454 | permission_view_issues: View Issues |
|
453 | 455 | permission_add_issues: Add issues |
|
454 | 456 | permission_edit_issues: Edit issues |
|
455 | 457 | permission_copy_issues: Copy issues |
|
456 | 458 | permission_manage_issue_relations: Manage issue relations |
|
457 | 459 | permission_set_issues_private: Set issues public or private |
|
458 | 460 | permission_set_own_issues_private: Set own issues public or private |
|
459 | 461 | permission_add_issue_notes: Add notes |
|
460 | 462 | permission_edit_issue_notes: Edit notes |
|
461 | 463 | permission_edit_own_issue_notes: Edit own notes |
|
462 | 464 | permission_view_private_notes: View private notes |
|
463 | 465 | permission_set_notes_private: Set notes as private |
|
464 | 466 | permission_move_issues: Move issues |
|
465 | 467 | permission_delete_issues: Delete issues |
|
466 | 468 | permission_manage_public_queries: Manage public queries |
|
467 | 469 | permission_save_queries: Save queries |
|
468 | 470 | permission_view_gantt: View gantt chart |
|
469 | 471 | permission_view_calendar: View calendar |
|
470 | 472 | permission_view_issue_watchers: View watchers list |
|
471 | 473 | permission_add_issue_watchers: Add watchers |
|
472 | 474 | permission_delete_issue_watchers: Delete watchers |
|
473 | 475 | permission_log_time: Log spent time |
|
474 | 476 | permission_view_time_entries: View spent time |
|
475 | 477 | permission_edit_time_entries: Edit time logs |
|
476 | 478 | permission_edit_own_time_entries: Edit own time logs |
|
477 | 479 | permission_manage_news: Manage news |
|
478 | 480 | permission_comment_news: Comment news |
|
479 | 481 | permission_view_documents: View documents |
|
480 | 482 | permission_add_documents: Add documents |
|
481 | 483 | permission_edit_documents: Edit documents |
|
482 | 484 | permission_delete_documents: Delete documents |
|
483 | 485 | permission_manage_files: Manage files |
|
484 | 486 | permission_view_files: View files |
|
485 | 487 | permission_manage_wiki: Manage wiki |
|
486 | 488 | permission_rename_wiki_pages: Rename wiki pages |
|
487 | 489 | permission_delete_wiki_pages: Delete wiki pages |
|
488 | 490 | permission_view_wiki_pages: View wiki |
|
489 | 491 | permission_view_wiki_edits: View wiki history |
|
490 | 492 | permission_edit_wiki_pages: Edit wiki pages |
|
491 | 493 | permission_delete_wiki_pages_attachments: Delete attachments |
|
492 | 494 | permission_protect_wiki_pages: Protect wiki pages |
|
493 | 495 | permission_manage_repository: Manage repository |
|
494 | 496 | permission_browse_repository: Browse repository |
|
495 | 497 | permission_view_changesets: View changesets |
|
496 | 498 | permission_commit_access: Commit access |
|
497 | 499 | permission_manage_boards: Manage forums |
|
498 | 500 | permission_view_messages: View messages |
|
499 | 501 | permission_add_messages: Post messages |
|
500 | 502 | permission_edit_messages: Edit messages |
|
501 | 503 | permission_edit_own_messages: Edit own messages |
|
502 | 504 | permission_delete_messages: Delete messages |
|
503 | 505 | permission_delete_own_messages: Delete own messages |
|
504 | 506 | permission_export_wiki_pages: Export wiki pages |
|
505 | 507 | permission_manage_subtasks: Manage subtasks |
|
506 | 508 | permission_manage_related_issues: Manage related issues |
|
507 | 509 | permission_import_issues: Import issues |
|
508 | 510 | |
|
509 | 511 | project_module_issue_tracking: Issue tracking |
|
510 | 512 | project_module_time_tracking: Time tracking |
|
511 | 513 | project_module_news: News |
|
512 | 514 | project_module_documents: Documents |
|
513 | 515 | project_module_files: Files |
|
514 | 516 | project_module_wiki: Wiki |
|
515 | 517 | project_module_repository: Repository |
|
516 | 518 | project_module_boards: Forums |
|
517 | 519 | project_module_calendar: Calendar |
|
518 | 520 | project_module_gantt: Gantt |
|
519 | 521 | |
|
520 | 522 | label_user: User |
|
521 | 523 | label_user_plural: Users |
|
522 | 524 | label_user_new: New user |
|
523 | 525 | label_user_anonymous: Anonymous |
|
524 | 526 | label_project: Project |
|
525 | 527 | label_project_new: New project |
|
526 | 528 | label_project_plural: Projects |
|
527 | 529 | label_x_projects: |
|
528 | 530 | zero: no projects |
|
529 | 531 | one: 1 project |
|
530 | 532 | other: "%{count} projects" |
|
531 | 533 | label_project_all: All Projects |
|
532 | 534 | label_project_latest: Latest projects |
|
533 | 535 | label_issue: Issue |
|
534 | 536 | label_issue_new: New issue |
|
535 | 537 | label_issue_plural: Issues |
|
536 | 538 | label_issue_view_all: View all issues |
|
537 | 539 | label_issues_by: "Issues by %{value}" |
|
538 | 540 | label_issue_added: Issue added |
|
539 | 541 | label_issue_updated: Issue updated |
|
540 | 542 | label_issue_note_added: Note added |
|
541 | 543 | label_issue_status_updated: Status updated |
|
542 | 544 | label_issue_assigned_to_updated: Assignee updated |
|
543 | 545 | label_issue_priority_updated: Priority updated |
|
544 | 546 | label_document: Document |
|
545 | 547 | label_document_new: New document |
|
546 | 548 | label_document_plural: Documents |
|
547 | 549 | label_document_added: Document added |
|
548 | 550 | label_role: Role |
|
549 | 551 | label_role_plural: Roles |
|
550 | 552 | label_role_new: New role |
|
551 | 553 | label_role_and_permissions: Roles and permissions |
|
552 | 554 | label_role_anonymous: Anonymous |
|
553 | 555 | label_role_non_member: Non member |
|
554 | 556 | label_member: Member |
|
555 | 557 | label_member_new: New member |
|
556 | 558 | label_member_plural: Members |
|
557 | 559 | label_tracker: Tracker |
|
558 | 560 | label_tracker_plural: Trackers |
|
559 | 561 | label_tracker_new: New tracker |
|
560 | 562 | label_workflow: Workflow |
|
561 | 563 | label_issue_status: Issue status |
|
562 | 564 | label_issue_status_plural: Issue statuses |
|
563 | 565 | label_issue_status_new: New status |
|
564 | 566 | label_issue_category: Issue category |
|
565 | 567 | label_issue_category_plural: Issue categories |
|
566 | 568 | label_issue_category_new: New category |
|
567 | 569 | label_custom_field: Custom field |
|
568 | 570 | label_custom_field_plural: Custom fields |
|
569 | 571 | label_custom_field_new: New custom field |
|
570 | 572 | label_enumerations: Enumerations |
|
571 | 573 | label_enumeration_new: New value |
|
572 | 574 | label_information: Information |
|
573 | 575 | label_information_plural: Information |
|
574 | 576 | label_please_login: Please log in |
|
575 | 577 | label_register: Register |
|
576 | 578 | label_login_with_open_id_option: or login with OpenID |
|
577 | 579 | label_password_lost: Lost password |
|
578 | 580 | label_password_required: Confirm your password to continue |
|
579 | 581 | label_home: Home |
|
580 | 582 | label_my_page: My page |
|
581 | 583 | label_my_account: My account |
|
582 | 584 | label_my_projects: My projects |
|
583 | 585 | label_my_page_block: My page block |
|
584 | 586 | label_administration: Administration |
|
585 | 587 | label_login: Sign in |
|
586 | 588 | label_logout: Sign out |
|
587 | 589 | label_help: Help |
|
588 | 590 | label_reported_issues: Reported issues |
|
589 | 591 | label_assigned_issues: Assigned issues |
|
590 | 592 | label_assigned_to_me_issues: Issues assigned to me |
|
591 | 593 | label_last_login: Last connection |
|
592 | 594 | label_registered_on: Registered on |
|
593 | 595 | label_activity: Activity |
|
594 | 596 | label_overall_activity: Overall activity |
|
595 | 597 | label_user_activity: "%{value}'s activity" |
|
596 | 598 | label_new: New |
|
597 | 599 | label_logged_as: Logged in as |
|
598 | 600 | label_environment: Environment |
|
599 | 601 | label_authentication: Authentication |
|
600 | 602 | label_auth_source: Authentication mode |
|
601 | 603 | label_auth_source_new: New authentication mode |
|
602 | 604 | label_auth_source_plural: Authentication modes |
|
603 | 605 | label_subproject_plural: Subprojects |
|
604 | 606 | label_subproject_new: New subproject |
|
605 | 607 | label_and_its_subprojects: "%{value} and its subprojects" |
|
606 | 608 | label_min_max_length: Min - Max length |
|
607 | 609 | label_list: List |
|
608 | 610 | label_date: Date |
|
609 | 611 | label_integer: Integer |
|
610 | 612 | label_float: Float |
|
611 | 613 | label_boolean: Boolean |
|
612 | 614 | label_string: Text |
|
613 | 615 | label_text: Long text |
|
614 | 616 | label_attribute: Attribute |
|
615 | 617 | label_attribute_plural: Attributes |
|
616 | 618 | label_no_data: No data to display |
|
617 | 619 | label_change_status: Change status |
|
618 | 620 | label_history: History |
|
619 | 621 | label_attachment: File |
|
620 | 622 | label_attachment_new: New file |
|
621 | 623 | label_attachment_delete: Delete file |
|
622 | 624 | label_attachment_plural: Files |
|
623 | 625 | label_file_added: File added |
|
624 | 626 | label_report: Report |
|
625 | 627 | label_report_plural: Reports |
|
626 | 628 | label_news: News |
|
627 | 629 | label_news_new: Add news |
|
628 | 630 | label_news_plural: News |
|
629 | 631 | label_news_latest: Latest news |
|
630 | 632 | label_news_view_all: View all news |
|
631 | 633 | label_news_added: News added |
|
632 | 634 | label_news_comment_added: Comment added to a news |
|
633 | 635 | label_settings: Settings |
|
634 | 636 | label_overview: Overview |
|
635 | 637 | label_version: Version |
|
636 | 638 | label_version_new: New version |
|
637 | 639 | label_version_plural: Versions |
|
638 | 640 | label_close_versions: Close completed versions |
|
639 | 641 | label_confirmation: Confirmation |
|
640 | 642 | label_export_to: 'Also available in:' |
|
641 | 643 | label_read: Read... |
|
642 | 644 | label_public_projects: Public projects |
|
643 | 645 | label_open_issues: open |
|
644 | 646 | label_open_issues_plural: open |
|
645 | 647 | label_closed_issues: closed |
|
646 | 648 | label_closed_issues_plural: closed |
|
647 | 649 | label_x_open_issues_abbr: |
|
648 | 650 | zero: 0 open |
|
649 | 651 | one: 1 open |
|
650 | 652 | other: "%{count} open" |
|
651 | 653 | label_x_closed_issues_abbr: |
|
652 | 654 | zero: 0 closed |
|
653 | 655 | one: 1 closed |
|
654 | 656 | other: "%{count} closed" |
|
655 | 657 | label_x_issues: |
|
656 | 658 | zero: 0 issues |
|
657 | 659 | one: 1 issue |
|
658 | 660 | other: "%{count} issues" |
|
659 | 661 | label_total: Total |
|
660 | 662 | label_total_plural: Totals |
|
661 | 663 | label_total_time: Total time |
|
662 | 664 | label_permissions: Permissions |
|
663 | 665 | label_current_status: Current status |
|
664 | 666 | label_new_statuses_allowed: New statuses allowed |
|
665 | 667 | label_all: all |
|
666 | 668 | label_any: any |
|
667 | 669 | label_none: none |
|
668 | 670 | label_nobody: nobody |
|
669 | 671 | label_next: Next |
|
670 | 672 | label_previous: Previous |
|
671 | 673 | label_used_by: Used by |
|
672 | 674 | label_details: Details |
|
673 | 675 | label_add_note: Add a note |
|
674 | 676 | label_calendar: Calendar |
|
675 | 677 | label_months_from: months from |
|
676 | 678 | label_gantt: Gantt |
|
677 | 679 | label_internal: Internal |
|
678 | 680 | label_last_changes: "last %{count} changes" |
|
679 | 681 | label_change_view_all: View all changes |
|
680 | 682 | label_personalize_page: Personalize this page |
|
681 | 683 | label_comment: Comment |
|
682 | 684 | label_comment_plural: Comments |
|
683 | 685 | label_x_comments: |
|
684 | 686 | zero: no comments |
|
685 | 687 | one: 1 comment |
|
686 | 688 | other: "%{count} comments" |
|
687 | 689 | label_comment_add: Add a comment |
|
688 | 690 | label_comment_added: Comment added |
|
689 | 691 | label_comment_delete: Delete comments |
|
690 | 692 | label_query: Custom query |
|
691 | 693 | label_query_plural: Custom queries |
|
692 | 694 | label_query_new: New query |
|
693 | 695 | label_my_queries: My custom queries |
|
694 | 696 | label_filter_add: Add filter |
|
695 | 697 | label_filter_plural: Filters |
|
696 | 698 | label_equals: is |
|
697 | 699 | label_not_equals: is not |
|
698 | 700 | label_in_less_than: in less than |
|
699 | 701 | label_in_more_than: in more than |
|
700 | 702 | label_in_the_next_days: in the next |
|
701 | 703 | label_in_the_past_days: in the past |
|
702 | 704 | label_greater_or_equal: '>=' |
|
703 | 705 | label_less_or_equal: '<=' |
|
704 | 706 | label_between: between |
|
705 | 707 | label_in: in |
|
706 | 708 | label_today: today |
|
707 | 709 | label_all_time: all time |
|
708 | 710 | label_yesterday: yesterday |
|
709 | 711 | label_this_week: this week |
|
710 | 712 | label_last_week: last week |
|
711 | 713 | label_last_n_weeks: "last %{count} weeks" |
|
712 | 714 | label_last_n_days: "last %{count} days" |
|
713 | 715 | label_this_month: this month |
|
714 | 716 | label_last_month: last month |
|
715 | 717 | label_this_year: this year |
|
716 | 718 | label_date_range: Date range |
|
717 | 719 | label_less_than_ago: less than days ago |
|
718 | 720 | label_more_than_ago: more than days ago |
|
719 | 721 | label_ago: days ago |
|
720 | 722 | label_contains: contains |
|
721 | 723 | label_not_contains: doesn't contain |
|
722 | 724 | label_any_issues_in_project: any issues in project |
|
723 | 725 | label_any_issues_not_in_project: any issues not in project |
|
724 | 726 | label_no_issues_in_project: no issues in project |
|
725 | 727 | label_any_open_issues: any open issues |
|
726 | 728 | label_no_open_issues: no open issues |
|
727 | 729 | label_day_plural: days |
|
728 | 730 | label_repository: Repository |
|
729 | 731 | label_repository_new: New repository |
|
730 | 732 | label_repository_plural: Repositories |
|
731 | 733 | label_browse: Browse |
|
732 | 734 | label_branch: Branch |
|
733 | 735 | label_tag: Tag |
|
734 | 736 | label_revision: Revision |
|
735 | 737 | label_revision_plural: Revisions |
|
736 | 738 | label_revision_id: "Revision %{value}" |
|
737 | 739 | label_associated_revisions: Associated revisions |
|
738 | 740 | label_added: added |
|
739 | 741 | label_modified: modified |
|
740 | 742 | label_copied: copied |
|
741 | 743 | label_renamed: renamed |
|
742 | 744 | label_deleted: deleted |
|
743 | 745 | label_latest_revision: Latest revision |
|
744 | 746 | label_latest_revision_plural: Latest revisions |
|
745 | 747 | label_view_revisions: View revisions |
|
746 | 748 | label_view_all_revisions: View all revisions |
|
747 | 749 | label_max_size: Maximum size |
|
748 | 750 | label_sort_highest: Move to top |
|
749 | 751 | label_sort_higher: Move up |
|
750 | 752 | label_sort_lower: Move down |
|
751 | 753 | label_sort_lowest: Move to bottom |
|
752 | 754 | label_roadmap: Roadmap |
|
753 | 755 | label_roadmap_due_in: "Due in %{value}" |
|
754 | 756 | label_roadmap_overdue: "%{value} late" |
|
755 | 757 | label_roadmap_no_issues: No issues for this version |
|
756 | 758 | label_search: Search |
|
757 | 759 | label_result_plural: Results |
|
758 | 760 | label_all_words: All words |
|
759 | 761 | label_wiki: Wiki |
|
760 | 762 | label_wiki_edit: Wiki edit |
|
761 | 763 | label_wiki_edit_plural: Wiki edits |
|
762 | 764 | label_wiki_page: Wiki page |
|
763 | 765 | label_wiki_page_plural: Wiki pages |
|
764 | 766 | label_index_by_title: Index by title |
|
765 | 767 | label_index_by_date: Index by date |
|
766 | 768 | label_current_version: Current version |
|
767 | 769 | label_preview: Preview |
|
768 | 770 | label_feed_plural: Feeds |
|
769 | 771 | label_changes_details: Details of all changes |
|
770 | 772 | label_issue_tracking: Issue tracking |
|
771 | 773 | label_spent_time: Spent time |
|
772 | 774 | label_total_spent_time: Total spent time |
|
773 | 775 | label_overall_spent_time: Overall spent time |
|
774 | 776 | label_f_hour: "%{value} hour" |
|
775 | 777 | label_f_hour_plural: "%{value} hours" |
|
776 | 778 | label_f_hour_short: "%{value} h" |
|
777 | 779 | label_time_tracking: Time tracking |
|
778 | 780 | label_change_plural: Changes |
|
779 | 781 | label_statistics: Statistics |
|
780 | 782 | label_commits_per_month: Commits per month |
|
781 | 783 | label_commits_per_author: Commits per author |
|
782 | 784 | label_diff: diff |
|
783 | 785 | label_view_diff: View differences |
|
784 | 786 | label_diff_inline: inline |
|
785 | 787 | label_diff_side_by_side: side by side |
|
786 | 788 | label_options: Options |
|
787 | 789 | label_copy_workflow_from: Copy workflow from |
|
788 | 790 | label_permissions_report: Permissions report |
|
789 | 791 | label_watched_issues: Watched issues |
|
790 | 792 | label_related_issues: Related issues |
|
791 | 793 | label_applied_status: Applied status |
|
792 | 794 | label_loading: Loading... |
|
793 | 795 | label_relation_new: New relation |
|
794 | 796 | label_relation_delete: Delete relation |
|
795 | 797 | label_relates_to: Related to |
|
796 | 798 | label_duplicates: Duplicates |
|
797 | 799 | label_duplicated_by: Duplicated by |
|
798 | 800 | label_blocks: Blocks |
|
799 | 801 | label_blocked_by: Blocked by |
|
800 | 802 | label_precedes: Precedes |
|
801 | 803 | label_follows: Follows |
|
802 | 804 | label_copied_to: Copied to |
|
803 | 805 | label_copied_from: Copied from |
|
804 | 806 | label_stay_logged_in: Stay logged in |
|
805 | 807 | label_disabled: disabled |
|
806 | 808 | label_show_completed_versions: Show completed versions |
|
807 | 809 | label_me: me |
|
808 | 810 | label_board: Forum |
|
809 | 811 | label_board_new: New forum |
|
810 | 812 | label_board_plural: Forums |
|
811 | 813 | label_board_locked: Locked |
|
812 | 814 | label_board_sticky: Sticky |
|
813 | 815 | label_topic_plural: Topics |
|
814 | 816 | label_message_plural: Messages |
|
815 | 817 | label_message_last: Last message |
|
816 | 818 | label_message_new: New message |
|
817 | 819 | label_message_posted: Message added |
|
818 | 820 | label_reply_plural: Replies |
|
819 | 821 | label_send_information: Send account information to the user |
|
820 | 822 | label_year: Year |
|
821 | 823 | label_month: Month |
|
822 | 824 | label_week: Week |
|
823 | 825 | label_date_from: From |
|
824 | 826 | label_date_to: To |
|
825 | 827 | label_language_based: Based on user's language |
|
826 | 828 | label_sort_by: "Sort by %{value}" |
|
827 | 829 | label_send_test_email: Send a test email |
|
828 | 830 | label_feeds_access_key: Atom access key |
|
829 | 831 | label_missing_feeds_access_key: Missing a Atom access key |
|
830 | 832 | label_feeds_access_key_created_on: "Atom access key created %{value} ago" |
|
831 | 833 | label_module_plural: Modules |
|
832 | 834 | label_added_time_by: "Added by %{author} %{age} ago" |
|
833 | 835 | label_updated_time_by: "Updated by %{author} %{age} ago" |
|
834 | 836 | label_updated_time: "Updated %{value} ago" |
|
835 | 837 | label_jump_to_a_project: Jump to a project... |
|
836 | 838 | label_file_plural: Files |
|
837 | 839 | label_changeset_plural: Changesets |
|
838 | 840 | label_default_columns: Default columns |
|
839 | 841 | label_no_change_option: (No change) |
|
840 | 842 | label_bulk_edit_selected_issues: Bulk edit selected issues |
|
841 | 843 | label_bulk_edit_selected_time_entries: Bulk edit selected time entries |
|
842 | 844 | label_theme: Theme |
|
843 | 845 | label_default: Default |
|
844 | 846 | label_search_titles_only: Search titles only |
|
845 | 847 | label_user_mail_option_all: "For any event on all my projects" |
|
846 | 848 | label_user_mail_option_selected: "For any event on the selected projects only..." |
|
847 | 849 | label_user_mail_option_none: "No events" |
|
848 | 850 | label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in" |
|
849 | 851 | label_user_mail_option_only_assigned: "Only for things I am assigned to" |
|
850 | 852 | label_user_mail_option_only_owner: "Only for things I am the owner of" |
|
851 | 853 | label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" |
|
852 | 854 | label_registration_activation_by_email: account activation by email |
|
853 | 855 | label_registration_manual_activation: manual account activation |
|
854 | 856 | label_registration_automatic_activation: automatic account activation |
|
855 | 857 | label_display_per_page: "Per page: %{value}" |
|
856 | 858 | label_age: Age |
|
857 | 859 | label_change_properties: Change properties |
|
858 | 860 | label_general: General |
|
859 | 861 | label_more: More |
|
860 | 862 | label_scm: SCM |
|
861 | 863 | label_plugins: Plugins |
|
862 | 864 | label_ldap_authentication: LDAP authentication |
|
863 | 865 | label_downloads_abbr: D/L |
|
864 | 866 | label_optional_description: Optional description |
|
865 | 867 | label_add_another_file: Add another file |
|
866 | 868 | label_preferences: Preferences |
|
867 | 869 | label_chronological_order: In chronological order |
|
868 | 870 | label_reverse_chronological_order: In reverse chronological order |
|
869 | 871 | label_planning: Planning |
|
870 | 872 | label_incoming_emails: Incoming emails |
|
871 | 873 | label_generate_key: Generate a key |
|
872 | 874 | label_issue_watchers: Watchers |
|
873 | 875 | label_example: Example |
|
874 | 876 | label_display: Display |
|
875 | 877 | label_sort: Sort |
|
876 | 878 | label_ascending: Ascending |
|
877 | 879 | label_descending: Descending |
|
878 | 880 | label_date_from_to: From %{start} to %{end} |
|
879 | 881 | label_wiki_content_added: Wiki page added |
|
880 | 882 | label_wiki_content_updated: Wiki page updated |
|
881 | 883 | label_group: Group |
|
882 | 884 | label_group_plural: Groups |
|
883 | 885 | label_group_new: New group |
|
884 | 886 | label_group_anonymous: Anonymous users |
|
885 | 887 | label_group_non_member: Non member users |
|
886 | 888 | label_time_entry_plural: Spent time |
|
887 | 889 | label_version_sharing_none: Not shared |
|
888 | 890 | label_version_sharing_descendants: With subprojects |
|
889 | 891 | label_version_sharing_hierarchy: With project hierarchy |
|
890 | 892 | label_version_sharing_tree: With project tree |
|
891 | 893 | label_version_sharing_system: With all projects |
|
892 | 894 | label_update_issue_done_ratios: Update issue done ratios |
|
893 | 895 | label_copy_source: Source |
|
894 | 896 | label_copy_target: Target |
|
895 | 897 | label_copy_same_as_target: Same as target |
|
896 | 898 | label_display_used_statuses_only: Only display statuses that are used by this tracker |
|
897 | 899 | label_api_access_key: API access key |
|
898 | 900 | label_missing_api_access_key: Missing an API access key |
|
899 | 901 | label_api_access_key_created_on: "API access key created %{value} ago" |
|
900 | 902 | label_profile: Profile |
|
901 | 903 | label_subtask_plural: Subtasks |
|
902 | 904 | label_project_copy_notifications: Send email notifications during the project copy |
|
903 | 905 | label_principal_search: "Search for user or group:" |
|
904 | 906 | label_user_search: "Search for user:" |
|
905 | 907 | label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author |
|
906 | 908 | label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee |
|
907 | 909 | label_issues_visibility_all: All issues |
|
908 | 910 | label_issues_visibility_public: All non private issues |
|
909 | 911 | label_issues_visibility_own: Issues created by or assigned to the user |
|
910 | 912 | label_git_report_last_commit: Report last commit for files and directories |
|
911 | 913 | label_parent_revision: Parent |
|
912 | 914 | label_child_revision: Child |
|
913 | 915 | label_export_options: "%{export_format} export options" |
|
914 | 916 | label_copy_attachments: Copy attachments |
|
915 | 917 | label_copy_subtasks: Copy subtasks |
|
916 | 918 | label_item_position: "%{position} of %{count}" |
|
917 | 919 | label_completed_versions: Completed versions |
|
918 | 920 | label_search_for_watchers: Search for watchers to add |
|
919 | 921 | label_session_expiration: Session expiration |
|
920 | 922 | label_show_closed_projects: View closed projects |
|
921 | 923 | label_status_transitions: Status transitions |
|
922 | 924 | label_fields_permissions: Fields permissions |
|
923 | 925 | label_readonly: Read-only |
|
924 | 926 | label_required: Required |
|
925 | 927 | label_hidden: Hidden |
|
926 | 928 | label_attribute_of_project: "Project's %{name}" |
|
927 | 929 | label_attribute_of_issue: "Issue's %{name}" |
|
928 | 930 | label_attribute_of_author: "Author's %{name}" |
|
929 | 931 | label_attribute_of_assigned_to: "Assignee's %{name}" |
|
930 | 932 | label_attribute_of_user: "User's %{name}" |
|
931 | 933 | label_attribute_of_fixed_version: "Target version's %{name}" |
|
932 | 934 | label_cross_project_descendants: With subprojects |
|
933 | 935 | label_cross_project_tree: With project tree |
|
934 | 936 | label_cross_project_hierarchy: With project hierarchy |
|
935 | 937 | label_cross_project_system: With all projects |
|
936 | 938 | label_gantt_progress_line: Progress line |
|
937 | 939 | label_visibility_private: to me only |
|
938 | 940 | label_visibility_roles: to these roles only |
|
939 | 941 | label_visibility_public: to any users |
|
940 | 942 | label_link: Link |
|
941 | 943 | label_only: only |
|
942 | 944 | label_drop_down_list: drop-down list |
|
943 | 945 | label_checkboxes: checkboxes |
|
944 | 946 | label_radio_buttons: radio buttons |
|
945 | 947 | label_link_values_to: Link values to URL |
|
946 | 948 | label_custom_field_select_type: Select the type of object to which the custom field is to be attached |
|
947 | 949 | label_check_for_updates: Check for updates |
|
948 | 950 | label_latest_compatible_version: Latest compatible version |
|
949 | 951 | label_unknown_plugin: Unknown plugin |
|
950 | 952 | label_add_projects: Add projects |
|
951 | 953 | label_users_visibility_all: All active users |
|
952 | 954 | label_users_visibility_members_of_visible_projects: Members of visible projects |
|
953 | 955 | label_edit_attachments: Edit attached files |
|
954 | 956 | label_link_copied_issue: Link copied issue |
|
955 | 957 | label_ask: Ask |
|
956 | 958 | label_search_attachments_yes: Search attachment filenames and descriptions |
|
957 | 959 | label_search_attachments_no: Do not search attachments |
|
958 | 960 | label_search_attachments_only: Search attachments only |
|
959 | 961 | label_search_open_issues_only: Open issues only |
|
960 | 962 | label_email_address_plural: Emails |
|
961 | 963 | label_email_address_add: Add email address |
|
962 | 964 | label_enable_notifications: Enable notifications |
|
963 | 965 | label_disable_notifications: Disable notifications |
|
964 | 966 | label_blank_value: blank |
|
965 | 967 | label_parent_task_attributes: Parent tasks attributes |
|
966 | 968 | label_parent_task_attributes_derived: Calculated from subtasks |
|
967 | 969 | label_parent_task_attributes_independent: Independent of subtasks |
|
968 | 970 | label_time_entries_visibility_all: All time entries |
|
969 | 971 | label_time_entries_visibility_own: Time entries created by the user |
|
970 | 972 | label_member_management: Member management |
|
971 | 973 | label_member_management_all_roles: All roles |
|
972 | 974 | label_member_management_selected_roles_only: Only these roles |
|
973 | 975 | label_import_issues: Import issues |
|
974 | 976 | label_select_file_to_import: Select the file to import |
|
975 | 977 | label_fields_separator: Field separator |
|
976 | 978 | label_fields_wrapper: Field wrapper |
|
977 | 979 | label_encoding: Encoding |
|
978 | 980 | label_comma_char: Comma |
|
979 | 981 | label_semi_colon_char: Semi colon |
|
980 | 982 | label_quote_char: Quote |
|
981 | 983 | label_double_quote_char: Double quote |
|
982 | 984 | label_fields_mapping: Fields mapping |
|
983 | 985 | label_file_content_preview: File content preview |
|
984 | 986 | label_create_missing_values: Create missing values |
|
985 | 987 | label_api: API |
|
986 | 988 | label_field_format_enumeration: Key/value list |
|
987 | 989 | label_default_values_for_new_users: Default values for new users |
|
988 | 990 | |
|
989 | 991 | button_login: Login |
|
990 | 992 | button_submit: Submit |
|
991 | 993 | button_save: Save |
|
992 | 994 | button_check_all: Check all |
|
993 | 995 | button_uncheck_all: Uncheck all |
|
994 | 996 | button_collapse_all: Collapse all |
|
995 | 997 | button_expand_all: Expand all |
|
996 | 998 | button_delete: Delete |
|
997 | 999 | button_create: Create |
|
998 | 1000 | button_create_and_continue: Create and continue |
|
999 | 1001 | button_test: Test |
|
1000 | 1002 | button_edit: Edit |
|
1001 | 1003 | button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" |
|
1002 | 1004 | button_add: Add |
|
1003 | 1005 | button_change: Change |
|
1004 | 1006 | button_apply: Apply |
|
1005 | 1007 | button_clear: Clear |
|
1006 | 1008 | button_lock: Lock |
|
1007 | 1009 | button_unlock: Unlock |
|
1008 | 1010 | button_download: Download |
|
1009 | 1011 | button_list: List |
|
1010 | 1012 | button_view: View |
|
1011 | 1013 | button_move: Move |
|
1012 | 1014 | button_move_and_follow: Move and follow |
|
1013 | 1015 | button_back: Back |
|
1014 | 1016 | button_cancel: Cancel |
|
1015 | 1017 | button_activate: Activate |
|
1016 | 1018 | button_sort: Sort |
|
1017 | 1019 | button_log_time: Log time |
|
1018 | 1020 | button_rollback: Rollback to this version |
|
1019 | 1021 | button_watch: Watch |
|
1020 | 1022 | button_unwatch: Unwatch |
|
1021 | 1023 | button_reply: Reply |
|
1022 | 1024 | button_archive: Archive |
|
1023 | 1025 | button_unarchive: Unarchive |
|
1024 | 1026 | button_reset: Reset |
|
1025 | 1027 | button_rename: Rename |
|
1026 | 1028 | button_change_password: Change password |
|
1027 | 1029 | button_copy: Copy |
|
1028 | 1030 | button_copy_and_follow: Copy and follow |
|
1029 | 1031 | button_annotate: Annotate |
|
1030 | 1032 | button_update: Update |
|
1031 | 1033 | button_configure: Configure |
|
1032 | 1034 | button_quote: Quote |
|
1033 | 1035 | button_duplicate: Duplicate |
|
1034 | 1036 | button_show: Show |
|
1035 | 1037 | button_hide: Hide |
|
1036 | 1038 | button_edit_section: Edit this section |
|
1037 | 1039 | button_export: Export |
|
1038 | 1040 | button_delete_my_account: Delete my account |
|
1039 | 1041 | button_close: Close |
|
1040 | 1042 | button_reopen: Reopen |
|
1041 | 1043 | button_import: Import |
|
1042 | 1044 | |
|
1043 | 1045 | status_active: active |
|
1044 | 1046 | status_registered: registered |
|
1045 | 1047 | status_locked: locked |
|
1046 | 1048 | |
|
1047 | 1049 | project_status_active: active |
|
1048 | 1050 | project_status_closed: closed |
|
1049 | 1051 | project_status_archived: archived |
|
1050 | 1052 | |
|
1051 | 1053 | version_status_open: open |
|
1052 | 1054 | version_status_locked: locked |
|
1053 | 1055 | version_status_closed: closed |
|
1054 | 1056 | |
|
1055 | 1057 | field_active: Active |
|
1056 | 1058 | |
|
1057 | 1059 | text_select_mail_notifications: Select actions for which email notifications should be sent. |
|
1058 | 1060 | text_regexp_info: eg. ^[A-Z0-9]+$ |
|
1059 | 1061 | text_min_max_length_info: 0 means no restriction |
|
1060 | 1062 | text_project_destroy_confirmation: Are you sure you want to delete this project and related data? |
|
1061 | 1063 | text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." |
|
1062 | 1064 | text_workflow_edit: Select a role and a tracker to edit the workflow |
|
1063 | 1065 | text_are_you_sure: Are you sure? |
|
1064 | 1066 | text_journal_changed: "%{label} changed from %{old} to %{new}" |
|
1065 | 1067 | text_journal_changed_no_detail: "%{label} updated" |
|
1066 | 1068 | text_journal_set_to: "%{label} set to %{value}" |
|
1067 | 1069 | text_journal_deleted: "%{label} deleted (%{old})" |
|
1068 | 1070 | text_journal_added: "%{label} %{value} added" |
|
1069 | 1071 | text_tip_issue_begin_day: issue beginning this day |
|
1070 | 1072 | text_tip_issue_end_day: issue ending this day |
|
1071 | 1073 | text_tip_issue_begin_end_day: issue beginning and ending this day |
|
1072 | 1074 | text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed, must start with a lower case letter.<br />Once saved, the identifier cannot be changed.' |
|
1073 | 1075 | text_caracters_maximum: "%{count} characters maximum." |
|
1074 | 1076 | text_caracters_minimum: "Must be at least %{count} characters long." |
|
1075 | 1077 | text_length_between: "Length between %{min} and %{max} characters." |
|
1076 | 1078 | text_tracker_no_workflow: No workflow defined for this tracker |
|
1077 | 1079 | text_unallowed_characters: Unallowed characters |
|
1078 | 1080 | text_comma_separated: Multiple values allowed (comma separated). |
|
1079 | 1081 | text_line_separated: Multiple values allowed (one line for each value). |
|
1080 | 1082 | text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages |
|
1081 | 1083 | text_issue_added: "Issue %{id} has been reported by %{author}." |
|
1082 | 1084 | text_issue_updated: "Issue %{id} has been updated by %{author}." |
|
1083 | 1085 | text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? |
|
1084 | 1086 | text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" |
|
1085 | 1087 | text_issue_category_destroy_assignments: Remove category assignments |
|
1086 | 1088 | text_issue_category_reassign_to: Reassign issues to this category |
|
1087 | 1089 | 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)." |
|
1088 | 1090 | 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." |
|
1089 | 1091 | text_load_default_configuration: Load the default configuration |
|
1090 | 1092 | text_status_changed_by_changeset: "Applied in changeset %{value}." |
|
1091 | 1093 | text_time_logged_by_changeset: "Applied in changeset %{value}." |
|
1092 | 1094 | text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' |
|
1093 | 1095 | text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)." |
|
1094 | 1096 | text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?' |
|
1095 | 1097 | text_select_project_modules: 'Select modules to enable for this project:' |
|
1096 | 1098 | text_default_administrator_account_changed: Default administrator account changed |
|
1097 | 1099 | text_file_repository_writable: Attachments directory writable |
|
1098 | 1100 | text_plugin_assets_writable: Plugin assets directory writable |
|
1099 | 1101 | text_rmagick_available: RMagick available (optional) |
|
1100 | 1102 | text_convert_available: ImageMagick convert available (optional) |
|
1101 | 1103 | text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" |
|
1102 | 1104 | text_destroy_time_entries: Delete reported hours |
|
1103 | 1105 | text_assign_time_entries_to_project: Assign reported hours to the project |
|
1104 | 1106 | text_reassign_time_entries: 'Reassign reported hours to this issue:' |
|
1105 | 1107 | text_user_wrote: "%{value} wrote:" |
|
1106 | 1108 | text_enumeration_destroy_question: "%{count} objects are assigned to the value β%{name}β." |
|
1107 | 1109 | text_enumeration_category_reassign_to: 'Reassign them to this value:' |
|
1108 | 1110 | 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." |
|
1109 | 1111 | 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." |
|
1110 | 1112 | text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' |
|
1111 | 1113 | text_custom_field_possible_values_info: 'One line for each value' |
|
1112 | 1114 | text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" |
|
1113 | 1115 | text_wiki_page_nullify_children: "Keep child pages as root pages" |
|
1114 | 1116 | text_wiki_page_destroy_children: "Delete child pages and all their descendants" |
|
1115 | 1117 | text_wiki_page_reassign_children: "Reassign child pages to this parent page" |
|
1116 | 1118 | 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?" |
|
1117 | 1119 | text_zoom_in: Zoom in |
|
1118 | 1120 | text_zoom_out: Zoom out |
|
1119 | 1121 | text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." |
|
1120 | 1122 | text_scm_path_encoding_note: "Default: UTF-8" |
|
1121 | 1123 | text_subversion_repository_note: "Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://" |
|
1122 | 1124 | text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo) |
|
1123 | 1125 | text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo) |
|
1124 | 1126 | text_scm_command: Command |
|
1125 | 1127 | text_scm_command_version: Version |
|
1126 | 1128 | text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it. |
|
1127 | 1129 | text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel. |
|
1128 | 1130 | text_issue_conflict_resolution_overwrite: "Apply my changes anyway (previous notes will be kept but some changes may be overwritten)" |
|
1129 | 1131 | text_issue_conflict_resolution_add_notes: "Add my notes and discard my other changes" |
|
1130 | 1132 | text_issue_conflict_resolution_cancel: "Discard all my changes and redisplay %{link}" |
|
1131 | 1133 | text_account_destroy_confirmation: "Are you sure you want to proceed?\nYour account will be permanently deleted, with no way to reactivate it." |
|
1132 | 1134 | text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours." |
|
1133 | 1135 | text_project_closed: This project is closed and read-only. |
|
1134 | 1136 | text_turning_multiple_off: "If you disable multiple values, multiple values will be removed in order to preserve only one value per item." |
|
1135 | 1137 | |
|
1136 | 1138 | default_role_manager: Manager |
|
1137 | 1139 | default_role_developer: Developer |
|
1138 | 1140 | default_role_reporter: Reporter |
|
1139 | 1141 | default_tracker_bug: Bug |
|
1140 | 1142 | default_tracker_feature: Feature |
|
1141 | 1143 | default_tracker_support: Support |
|
1142 | 1144 | default_issue_status_new: New |
|
1143 | 1145 | default_issue_status_in_progress: In Progress |
|
1144 | 1146 | default_issue_status_resolved: Resolved |
|
1145 | 1147 | default_issue_status_feedback: Feedback |
|
1146 | 1148 | default_issue_status_closed: Closed |
|
1147 | 1149 | default_issue_status_rejected: Rejected |
|
1148 | 1150 | default_doc_category_user: User documentation |
|
1149 | 1151 | default_doc_category_tech: Technical documentation |
|
1150 | 1152 | default_priority_low: Low |
|
1151 | 1153 | default_priority_normal: Normal |
|
1152 | 1154 | default_priority_high: High |
|
1153 | 1155 | default_priority_urgent: Urgent |
|
1154 | 1156 | default_priority_immediate: Immediate |
|
1155 | 1157 | default_activity_design: Design |
|
1156 | 1158 | default_activity_development: Development |
|
1157 | 1159 | |
|
1158 | 1160 | enumeration_issue_priorities: Issue priorities |
|
1159 | 1161 | enumeration_doc_categories: Document categories |
|
1160 | 1162 | enumeration_activities: Activities (time tracking) |
|
1161 | 1163 | enumeration_system_activity: System Activity |
|
1162 | 1164 | description_filter: Filter |
|
1163 | 1165 | description_search: Searchfield |
|
1164 | 1166 | description_choose_project: Projects |
|
1165 | 1167 | description_project_scope: Search scope |
|
1166 | 1168 | description_notes: Notes |
|
1167 | 1169 | description_message_content: Message content |
|
1168 | 1170 | description_query_sort_criteria_attribute: Sort attribute |
|
1169 | 1171 | description_query_sort_criteria_direction: Sort direction |
|
1170 | 1172 | description_user_mail_notification: Mail notification settings |
|
1171 | 1173 | description_available_columns: Available Columns |
|
1172 | 1174 | description_selected_columns: Selected Columns |
|
1173 | 1175 | description_all_columns: All Columns |
|
1174 | 1176 | description_issue_category_reassign: Choose issue category |
|
1175 | 1177 | description_wiki_subpages_reassign: Choose new parent page |
|
1176 | 1178 | description_date_range_list: Choose range from list |
|
1177 | 1179 | description_date_range_interval: Choose range by selecting start and end date |
|
1178 | 1180 | description_date_from: Enter start date |
|
1179 | 1181 | description_date_to: Enter end date |
|
1180 | 1182 | text_repository_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.' |
General Comments 0
You need to be logged in to leave comments.
Login now