##// END OF EJS Templates
Fills locales (#703, #3521)....
Jean-Philippe Lang -
r9797:7c6582009aa1
parent child
Show More

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

@@ -1,1054 +1,1058
1 1 ar:
2 2 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
3 3 direction: rtl
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: [الاحد, الاثنين, الثلاثاء, الاربعاء, الخميس, الجمعة, السبت]
14 14 abbr_day_names: [أح, اث, ث, ار, خ, ج, س]
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: [~, كانون الثاني, شباط, آذار, نيسان, أيار, حزيران, تموز, آب, أيلول, تشرين الأول, تشرين الثاني, كانون الأول]
18 18 abbr_month_names: [~, كانون الثاني, شباط, آذار, نيسان, أيار, حزيران, تموز, آب, أيلول, تشرين الأول, تشرين الثاني, كانون الأول]
19 19 # Used in date_select and datime_select.
20 20 order:
21 21 - :السنة
22 22 - :الشهر
23 23 - :اليوم
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: "صباحا"
32 32 pm: "مساءا"
33 33
34 34 datetime:
35 35 distance_in_words:
36 36 half_a_minute: "نصف دقيقة"
37 37 less_than_x_seconds:
38 38 one: "أقل من ثانية"
39 39 other: "ثواني %{count}أقل من "
40 40 x_seconds:
41 41 one: "ثانية"
42 42 other: "%{count}ثواني "
43 43 less_than_x_minutes:
44 44 one: "أقل من دقيقة"
45 45 other: "دقائق%{count}أقل من "
46 46 x_minutes:
47 47 one: "دقيقة"
48 48 other: "%{count} دقائق"
49 49 about_x_hours:
50 50 one: "حوالي ساعة"
51 51 other: "ساعات %{count}حوالي "
52 52 x_hours:
53 53 one: "1 hour"
54 54 other: "%{count} hours"
55 55 x_days:
56 56 one: "يوم"
57 57 other: "%{count} أيام"
58 58 about_x_months:
59 59 one: "حوالي شهر"
60 60 other: "أشهر %{count} حوالي"
61 61 x_months:
62 62 one: "شهر"
63 63 other: "%{count} أشهر"
64 64 about_x_years:
65 65 one: "حوالي سنة"
66 66 other: "سنوات %{count}حوالي "
67 67 over_x_years:
68 68 one: "اكثر من سنة"
69 69 other: "سنوات %{count}أكثر من "
70 70 almost_x_years:
71 71 one: "تقريبا سنة"
72 72 other: "سنوات %{count} نقريبا"
73 73 number:
74 74 format:
75 75 separator: "."
76 76 delimiter: ""
77 77 precision: 3
78 78
79 79 human:
80 80 format:
81 81 delimiter: ""
82 82 precision: 3
83 83 storage_units:
84 84 format: "%n %u"
85 85 units:
86 86 byte:
87 87 one: "Byte"
88 88 other: "Bytes"
89 89 kb: "KB"
90 90 mb: "MB"
91 91 gb: "GB"
92 92 tb: "TB"
93 93
94 94 # Used in array.to_sentence.
95 95 support:
96 96 array:
97 97 sentence_connector: "و"
98 98 skip_last_comma: خطأ
99 99
100 100 activerecord:
101 101 errors:
102 102 template:
103 103 header:
104 104 one: " %{model} خطأ يمنع تخزين"
105 105 other: " %{model} يمنع تخزين%{count}خطأ رقم "
106 106 messages:
107 107 inclusion: "غير مدرجة على القائمة"
108 108 exclusion: "محجوز"
109 109 invalid: "غير صالح"
110 110 confirmation: "غير متطابق"
111 111 accepted: "مقبولة"
112 112 empty: "لا يمكن ان تكون فارغة"
113 113 blank: "لا يمكن ان تكون فارغة"
114 114 too_long: " %{count}طويلة جدا، الحد الاقصى هو )"
115 115 too_short: " %{count}قصيرة جدا، الحد الادنى هو)"
116 116 wrong_length: " %{count}خطأ في الطول، يجب ان يكون )"
117 117 taken: "لقد اتخذت سابقا"
118 118 not_a_number: "ليس رقما"
119 119 not_a_date: "ليس تاريخا صالحا"
120 120 greater_than: "%{count}يجب ان تكون اكثر من "
121 121 greater_than_or_equal_to: "%{count}يجب ان تكون اكثر من او تساوي"
122 122 equal_to: "%{count}يجب ان تساوي"
123 123 less_than: " %{count}يجب ان تكون اقل من"
124 124 less_than_or_equal_to: " %{count}يجب ان تكون اقل من او تساوي"
125 125 odd: "must be odd"
126 126 even: "must be even"
127 127 greater_than_start_date: "يجب ان تكون اكثر من تاريخ البداية"
128 128 not_same_project: "لا ينتمي الى نفس المشروع"
129 129 circular_dependency: "هذه العلاقة سوف تخلق علاقة تبعية دائرية"
130 130 cant_link_an_issue_with_a_descendant: "لا يمكن ان تكون المشكلة مرتبطة بواحدة من المهام الفرعية"
131 131
132 132 actionview_instancetag_blank_option: الرجاء التحديد
133 133
134 134 general_text_No: 'لا'
135 135 general_text_Yes: 'نعم'
136 136 general_text_no: 'لا'
137 137 general_text_yes: 'نعم'
138 138 general_lang_name: 'Arabic (عربي)'
139 139 general_csv_separator: ','
140 140 general_csv_decimal_separator: '.'
141 141 general_csv_encoding: ISO-8859-1
142 142 general_pdf_encoding: UTF-8
143 143 general_first_day_of_week: '7'
144 144
145 145 notice_account_updated: لقد تم تجديد الحساب بنجاح.
146 146 notice_account_invalid_creditentials: اسم المستخدم او كلمة المرور غير صحيحة
147 147 notice_account_password_updated: لقد تم تجديد كلمة المرور بنجاح.
148 148 notice_account_wrong_password: كلمة المرور غير صحيحة
149 149 notice_account_register_done: لقد تم انشاء حسابك بنجاح، الرجاء تأكيد الطلب من البريد الالكتروني
150 150 notice_account_unknown_email: مستخدم غير معروف.
151 151 notice_can_t_change_password: هذا الحساب يستخدم جهاز خارجي غير مصرح به لا يمكن تغير كلمة المرور
152 152 notice_account_lost_email_sent: لقد تم ارسال رسالة على بريدك بالتعليمات اللازمة لتغير كلمة المرور
153 153 notice_account_activated: لقد تم تفعيل حسابك، يمكنك الدخول الان
154 154 notice_successful_create: لقد تم الانشاء بنجاح
155 155 notice_successful_update: لقد تم التحديث بنجاح
156 156 notice_successful_delete: لقد تم الحذف بنجاح
157 157 notice_successful_connection: لقد تم الربط بنجاح
158 158 notice_file_not_found: الصفحة التي تحاول الدخول اليها غير موجوده او تم حذفها
159 159 notice_locking_conflict: تم تحديث البيانات عن طريق مستخدم آخر.
160 160 notice_not_authorized: غير مصرح لك الدخول الى هذه المنطقة.
161 161 notice_not_authorized_archived_project: المشروع الذي تحاول الدخول اليه تم ارشفته
162 162 notice_email_sent: "%{value}تم ارسال رسالة الى "
163 163 notice_email_error: " (%{value})لقد حدث خطأ ما اثناء ارسال الرسالة الى "
164 164 notice_feeds_access_key_reseted: كلمة الدخول RSSلقد تم تعديل .
165 165 notice_api_access_key_reseted: كلمة الدخولAPIلقد تم تعديل .
166 166 notice_failed_to_save_issues: "فشل في حفظ الملف"
167 167 notice_failed_to_save_members: "فشل في حفظ الاعضاء: %{errors}."
168 168 notice_no_issue_selected: "لم يتم تحديد شيء، الرجاء تحديد المسألة التي تريد"
169 169 notice_account_pending: "لقد تم انشاء حسابك، الرجاء الانتظار حتى تتم الموافقة"
170 170 notice_default_data_loaded: تم تحميل التكوين الافتراضي بنجاح
171 171 notice_unable_delete_version: غير قادر على مسح النسخة.
172 172 notice_unable_delete_time_entry: غير قادر على مسح وقت الدخول.
173 173 notice_issue_done_ratios_updated: لقد تم تحديث النسب.
174 174 notice_gantt_chart_truncated: " (%{max})لقد تم اقتطاع الرسم البياني لانه تجاوز الاحد الاقصى لعدد العناصر المسموح عرضها "
175 175 notice_issue_successful_create: "%{id}لقد تم انشاء "
176 176
177 177
178 178 error_can_t_load_default_data: "لم يتم تحميل التكوين الافتراضي كاملا %{value}"
179 179 error_scm_not_found: "لم يتم العثور على ادخال في المستودع"
180 180 error_scm_command_failed: "حدث خطأ عند محاولة الوصول الى المستودع: %{value}"
181 181 error_scm_annotate: "الادخال غير موجود."
182 182 error_scm_annotate_big_text_file: "لا يمكن حفظ الادخال لانه تجاوز الحد الاقصى لحجم الملف."
183 183 error_issue_not_found_in_project: 'لم يتم العثور على المخرج او انه ينتمي الى مشروع اخر'
184 184 error_no_tracker_in_project: 'لا يوجد متتبع لهذا المشروع، الرجاء التحقق من إعدادات المشروع. '
185 185 error_no_default_issue_status: 'لم يتم التعرف على اي وضع افتراضي، الرجاء التحقق من التكوين الخاص بك (اذهب الى إدارة-إصدار الحالات)'
186 186 error_can_not_delete_custom_field: غير قادر على حذف الحقل المظلل
187 187 error_can_not_delete_tracker: "هذا المتتبع يحتوي على مسائل نشطة ولا يمكن حذفه"
188 188 error_can_not_remove_role: "هذا الدور قيد الاستخدام، لا يمكن حذفه"
189 189 error_can_not_reopen_issue_on_closed_version: 'لا يمكن إعادة فتح قضية معينه لاصدار مقفل'
190 190 error_can_not_archive_project: لا يمكن ارشفة هذا المشروع
191 191 error_issue_done_ratios_not_updated: "لم يتم تحديث النسب"
192 192 error_workflow_copy_source: 'الرجاء اختيار المتتبع او الادوار'
193 193 error_workflow_copy_target: 'الرجاء اختيار هدف المتتبع او هدف الادوار'
194 194 error_unable_delete_issue_status: 'غير قادر على حذف حالة القضية'
195 195 error_unable_to_connect: "تعذر الاتصال(%{value})"
196 196 error_attachment_too_big: " (%{max_size})لا يمكن تحميل هذا الملف، لقد تجاوز الحد الاقصى المسموح به "
197 197 warning_attachments_not_saved: "%{count}تعذر حفظ الملف"
198 198
199 199 mail_subject_lost_password: " %{value}كلمة المرور الخاصة بك "
200 200 mail_body_lost_password: 'لتغير كلمة المرور، انقر على الروابط التالية:'
201 201 mail_subject_register: " %{value}تفعيل حسابك "
202 202 mail_body_register: 'لتفعيل حسابك، انقر على الروابط التالية:'
203 203 mail_body_account_information_external: " %{value}اصبح بامكانك استخدام حسابك للدخول"
204 204 mail_body_account_information: معلومات حسابك
205 205 mail_subject_account_activation_request: "%{value}طلب تفعيل الحساب "
206 206 mail_body_account_activation_request: " (%{value})تم تسجيل حساب جديد، بانتظار الموافقة:"
207 207 mail_subject_reminder: "%{count}تم تأجيل المهام التالية "
208 208 mail_body_reminder: "%{count}يجب ان تقوم بتسليم المهام التالية :"
209 209 mail_subject_wiki_content_added: "'%{id}' تم اضافة صفحة ويكي"
210 210 mail_body_wiki_content_added: "The '%{id}' تم اضافة صفحة ويكي من قبل %{author}."
211 211 mail_subject_wiki_content_updated: "'%{id}' تم تحديث صفحة ويكي"
212 212 mail_body_wiki_content_updated: "The '%{id}'تم تحديث صفحة ويكي من قبل %{author}."
213 213
214 214 gui_validation_error: خطأ
215 215 gui_validation_error_plural: "%{count}أخطاء"
216 216
217 217 field_name: الاسم
218 218 field_description: الوصف
219 219 field_summary: الملخص
220 220 field_is_required: مطلوب
221 221 field_firstname: الاسم الاول
222 222 field_lastname: الاسم الاخير
223 223 field_mail: البريد الالكتروني
224 224 field_filename: اسم الملف
225 225 field_filesize: حجم الملف
226 226 field_downloads: التنزيل
227 227 field_author: المؤلف
228 228 field_created_on: تم الانشاء في
229 229 field_updated_on: تم التحديث
230 230 field_field_format: تنسيق الحقل
231 231 field_is_for_all: لكل المشروعات
232 232 field_possible_values: قيم محتملة
233 233 field_regexp: التعبير العادي
234 234 field_min_length: الحد الادنى للطول
235 235 field_max_length: الحد الاعلى للطول
236 236 field_value: القيمة
237 237 field_category: الفئة
238 238 field_title: العنوان
239 239 field_project: المشروع
240 240 field_issue: القضية
241 241 field_status: الحالة
242 242 field_notes: ملاحظات
243 243 field_is_closed: القضية مغلقة
244 244 field_is_default: القيمة الافتراضية
245 245 field_tracker: المتتبع
246 246 field_subject: الموضوع
247 247 field_due_date: تاريخ الاستحقاق
248 248 field_assigned_to: المحال اليه
249 249 field_priority: الأولوية
250 250 field_fixed_version: الاصدار المستهدف
251 251 field_user: المستخدم
252 252 field_principal: الرئيسي
253 253 field_role: دور
254 254 field_homepage: الصفحة الرئيسية
255 255 field_is_public: عام
256 256 field_parent: مشروع فرعي من
257 257 field_is_in_roadmap: القضايا المعروضة في خارطة الطريق
258 258 field_login: تسجيل الدخول
259 259 field_mail_notification: ملاحظات على البريد الالكتروني
260 260 field_admin: المدير
261 261 field_last_login_on: اخر اتصال
262 262 field_language: لغة
263 263 field_effective_date: تاريخ
264 264 field_password: كلمة المرور
265 265 field_new_password: كلمة المرور الجديدة
266 266 field_password_confirmation: تأكيد
267 267 field_version: إصدار
268 268 field_type: نوع
269 269 field_host: المضيف
270 270 field_port: المنفذ
271 271 field_account: الحساب
272 272 field_base_dn: DN قاعدة
273 273 field_attr_login: سمة الدخول
274 274 field_attr_firstname: سمة الاسم الاول
275 275 field_attr_lastname: سمة الاسم الاخير
276 276 field_attr_mail: سمة البريد الالكتروني
277 277 field_onthefly: إنشاء حساب مستخدم على تحرك
278 278 field_start_date: تاريخ البدية
279 279 field_done_ratio: "% تم"
280 280 field_auth_source: وضع المصادقة
281 281 field_hide_mail: إخفاء بريدي الإلكتروني
282 282 field_comments: تعليق
283 283 field_url: رابط
284 284 field_start_page: صفحة البداية
285 285 field_subproject: المشروع الفرعي
286 286 field_hours: ساعات
287 287 field_activity: النشاط
288 288 field_spent_on: تاريخ
289 289 field_identifier: المعرف
290 290 field_is_filter: استخدم كتصفية
291 291 field_issue_to: القضايا المتصلة
292 292 field_delay: تأخير
293 293 field_assignable: يمكن ان تستند القضايا الى هذا الدور
294 294 field_redirect_existing_links: إعادة توجيه الروابط الموجودة
295 295 field_estimated_hours: الوقت المتوقع
296 296 field_column_names: أعمدة
297 297 field_time_entries: وقت الدخول
298 298 field_time_zone: المنطقة الزمنية
299 299 field_searchable: يمكن البحث فيه
300 300 field_default_value: القيمة الافتراضية
301 301 field_comments_sorting: اعرض التعليقات
302 302 field_parent_title: صفحة الوالدين
303 303 field_editable: يمكن اعادة تحريره
304 304 field_watcher: مراقب
305 305 field_identity_url: افتح الرابط الخاص بالهوية الشخصية
306 306 field_content: المحتويات
307 307 field_group_by: مجموعة النتائج عن طريق
308 308 field_sharing: مشاركة
309 309 field_parent_issue: مهمة الوالدين
310 310 field_member_of_group: "مجموعة المحال"
311 311 field_assigned_to_role: "دور المحال"
312 312 field_text: حقل نصي
313 313 field_visible: غير مرئي
314 314 field_warn_on_leaving_unsaved: "الرجاء التحذير عند مغادرة صفحة والنص غير محفوظ"
315 315 field_issues_visibility: القضايا المرئية
316 316 field_is_private: خاص
317 317 field_commit_logs_encoding: رسائل الترميز
318 318 field_scm_path_encoding: ترميز المسار
319 319 field_path_to_repository: مسار المستودع
320 320 field_root_directory: دليل الجذر
321 321 field_cvsroot: CVSجذر
322 322 field_cvs_module: وحدة
323 323
324 324 setting_app_title: عنوان التطبيق
325 325 setting_app_subtitle: العنوان الفرعي للتطبيق
326 326 setting_welcome_text: نص الترحيب
327 327 setting_default_language: اللغة الافتراضية
328 328 setting_login_required: مطلوب المصادقة
329 329 setting_self_registration: التسجيل الذاتي
330 330 setting_attachment_max_size: الحد الاقصى للملفات المرفقة
331 331 setting_issues_export_limit: الحد الاقصى لقضايا التصدير
332 332 setting_mail_from: انبعاثات عنوان بريدك
333 333 setting_bcc_recipients: مستلمين النسخ المخفية (bcc)
334 334 setting_plain_text_mail: نص عادي (no HTML)
335 335 setting_host_name: اسم ومسار المستخدم
336 336 setting_text_formatting: تنسيق النص
337 337 setting_wiki_compression: ضغط تاريخ الويكي
338 338 setting_feeds_limit: Atom feeds الحد الاقصى لعدد البنود في
339 339 setting_default_projects_public: المشاريع الجديده متاحة للجميع افتراضيا
340 340 setting_autofetch_changesets: الإحضار التلقائي
341 341 setting_sys_api_enabled: من ادارة المستودع WS تمكين
342 342 setting_commit_ref_keywords: مرجعية الكلمات المفتاحية
343 343 setting_commit_fix_keywords: تصحيح الكلمات المفتاحية
344 344 setting_autologin: الدخول التلقائي
345 345 setting_date_format: تنسيق التاريخ
346 346 setting_time_format: تنسيق الوقت
347 347 setting_cross_project_issue_relations: السماح بادارج القضايا في هذا المشروع
348 348 setting_issue_list_default_columns: الاعمدة الافتراضية المعروضة في قائمة القضية
349 349 setting_repositories_encodings: ترميز المرفقات والمستودعات
350 350 setting_emails_header: رأس رسائل البريد الإلكتروني
351 351 setting_emails_footer: ذيل رسائل البريد الإلكتروني
352 352 setting_protocol: بروتوكول
353 353 setting_per_page_options: الكائنات لكل خيارات الصفحة
354 354 setting_user_format: تنسيق عرض المستخدم
355 355 setting_activity_days_default: الايام المعروضة على نشاط المشروع
356 356 setting_display_subprojects_issues: عرض القضايا الفرعية للمشارع الرئيسية بشكل افتراضي
357 357 setting_enabled_scm: SCM تمكين
358 358 setting_mail_handler_body_delimiters: "اقتطاع رسائل البريد الإلكتروني بعد هذه الخطوط"
359 359 setting_mail_handler_api_enabled: للرسائل الواردةWS تمكين
360 360 setting_mail_handler_api_key: API مفتاح
361 361 setting_sequential_project_identifiers: انشاء معرفات المشروع المتسلسلة
362 362 setting_gravatar_enabled: كأيقونة مستخدمGravatar استخدام
363 363 setting_gravatar_default: الافتراضيةGravatar صورة
364 364 setting_diff_max_lines_displayed: الحد الاقصى لعدد الخطوط
365 365 setting_file_max_size_displayed: الحد الأقصى لحجم النص المعروض على الملفات المرفقة
366 366 setting_repository_log_display_limit: الحد الاقصى لعدد التنقيحات المعروضة على ملف السجل
367 367 setting_openid: السماح بدخول اسم المستخدم المفتوح والتسجيل
368 368 setting_password_min_length: الحد الادني لطول كلمة المرور
369 369 setting_new_project_user_role_id: الدور المسند الى المستخدم غير المسؤول الذي يقوم بإنشاء المشروع
370 370 setting_default_projects_modules: تمكين الوحدات النمطية للمشاريع الجديدة بشكل افتراضي
371 371 setting_issue_done_ratio: حساب نسبة القضية المنتهية
372 372 setting_issue_done_ratio_issue_field: استخدم حقل القضية
373 373 setting_issue_done_ratio_issue_status: استخدم وضع القضية
374 374 setting_start_of_week: بدأ التقويم
375 375 setting_rest_api_enabled: تمكين باقي خدمات الويب
376 376 setting_cache_formatted_text: النص المسبق تنسيقه في ذاكرة التخزين المؤقت
377 377 setting_default_notification_option: خيار الاعلام الافتراضي
378 378 setting_commit_logtime_enabled: تميكن وقت الدخول
379 379 setting_commit_logtime_activity_id: النشاط في وقت الدخول
380 380 setting_gantt_items_limit: الحد الاقصى لعدد العناصر المعروضة على المخطط
381 381 setting_issue_group_assignment: السماح للإحالة الى المجموعات
382 382 setting_default_issue_start_date_to_creation_date: استخدام التاريخ الحالي كتاريخ بدأ للقضايا الجديدة
383 383
384 384 permission_add_project: إنشاء مشروع
385 385 permission_add_subprojects: إنشاء مشاريع فرعية
386 386 permission_edit_project: تعديل مشروع
387 387 permission_select_project_modules: تحديد شكل المشروع
388 388 permission_manage_members: إدارة الاعضاء
389 389 permission_manage_project_activities: ادارة اصدارات المشروع
390 390 permission_manage_versions: ادارة الاصدارات
391 391 permission_manage_categories: ادارة انواع القضايا
392 392 permission_view_issues: عرض القضايا
393 393 permission_add_issues: اضافة القضايا
394 394 permission_edit_issues: تعديل القضايا
395 395 permission_manage_issue_relations: ادارة علاقات القضايا
396 396 permission_set_issues_private: تعين قضايا عامة او خاصة
397 397 permission_set_own_issues_private: تعين القضايا الخاصة بك كقضايا عامة او خاصة
398 398 permission_add_issue_notes: اضافة ملاحظات
399 399 permission_edit_issue_notes: تعديل ملاحظات
400 400 permission_edit_own_issue_notes: تعديل ملاحظاتك
401 401 permission_move_issues: تحريك القضايا
402 402 permission_delete_issues: حذف القضايا
403 403 permission_manage_public_queries: ادارة الاستعلامات العامة
404 404 permission_save_queries: حفظ الاستعلامات
405 405 permission_view_gantt: عرض طريقة"جانت"
406 406 permission_view_calendar: عرض التقويم
407 407 permission_view_issue_watchers: عرض قائمة المراقبين
408 408 permission_add_issue_watchers: اضافة مراقبين
409 409 permission_delete_issue_watchers: حذف مراقبين
410 410 permission_log_time: الوقت المستغرق بالدخول
411 411 permission_view_time_entries: عرض الوقت المستغرق
412 412 permission_edit_time_entries: تعديل الدخولات الزمنية
413 413 permission_edit_own_time_entries: تعديل الدخولات الشخصية
414 414 permission_manage_news: ادارة الاخبار
415 415 permission_comment_news: اخبار التعليقات
416 416 permission_manage_documents: ادارة المستندات
417 417 permission_view_documents: عرض المستندات
418 418 permission_manage_files: ادارة الملفات
419 419 permission_view_files: عرض الملفات
420 420 permission_manage_wiki: ادارة ويكي
421 421 permission_rename_wiki_pages: اعادة تسمية صفحات ويكي
422 422 permission_delete_wiki_pages: حذق صفحات ويكي
423 423 permission_view_wiki_pages: عرض ويكي
424 424 permission_view_wiki_edits: عرض تاريخ ويكي
425 425 permission_edit_wiki_pages: تعديل صفحات ويكي
426 426 permission_delete_wiki_pages_attachments: حذف المرفقات
427 427 permission_protect_wiki_pages: حماية صفحات ويكي
428 428 permission_manage_repository: ادارة المستودعات
429 429 permission_browse_repository: استعراض المستودعات
430 430 permission_view_changesets: عرض طاقم التغيير
431 431 permission_commit_access: الوصول
432 432 permission_manage_boards: ادارة المنتديات
433 433 permission_view_messages: عرض الرسائل
434 434 permission_add_messages: نشر الرسائل
435 435 permission_edit_messages: تحرير الرسائل
436 436 permission_edit_own_messages: تحرير الرسائل الخاصة
437 437 permission_delete_messages: حذف الرسائل
438 438 permission_delete_own_messages: حذف الرسائل الخاصة
439 439 permission_export_wiki_pages: تصدير صفحات ويكي
440 440 permission_manage_subtasks: ادارة المهام الفرعية
441 441
442 442 project_module_issue_tracking: تعقب القضايا
443 443 project_module_time_tracking: التعقب الزمني
444 444 project_module_news: الاخبار
445 445 project_module_documents: المستندات
446 446 project_module_files: الملفات
447 447 project_module_wiki: ويكي
448 448 project_module_repository: المستودع
449 449 project_module_boards: المنتديات
450 450 project_module_calendar: التقويم
451 451 project_module_gantt: جانت
452 452
453 453 label_user: المستخدم
454 454 label_user_plural: المستخدمين
455 455 label_user_new: مستخدم جديد
456 456 label_user_anonymous: مجهول الهوية
457 457 label_project: مشروع
458 458 label_project_new: مشروع جديد
459 459 label_project_plural: مشاريع
460 460 label_x_projects:
461 461 zero: لا يوجد مشاريع
462 462 one: مشروع واحد
463 463 other: "%{count} مشاريع"
464 464 label_project_all: كل المشاريع
465 465 label_project_latest: احدث المشاريع
466 466 label_issue: قضية
467 467 label_issue_new: قضية جديدة
468 468 label_issue_plural: قضايا
469 469 label_issue_view_all: عرض كل القضايا
470 470 label_issues_by: " %{value}القضية لصحابها"
471 471 label_issue_added: تم اضافة القضية
472 472 label_issue_updated: تم تحديث القضية
473 473 label_issue_note_added: تم اضافة الملاحظة
474 474 label_issue_status_updated: تم تحديث الحالة
475 475 label_issue_priority_updated: تم تحديث الاولويات
476 476 label_document: مستند
477 477 label_document_new: مستند جديد
478 478 label_document_plural: مستندات
479 479 label_document_added: تم اضافة مستند
480 480 label_role: دور
481 481 label_role_plural: ادوار
482 482 label_role_new: دور جديد
483 483 label_role_and_permissions: الادوار والاذن
484 484 label_role_anonymous: مجهول الهوية
485 485 label_role_non_member: ليس عضو
486 486 label_member: عضو
487 487 label_member_new: عضو جديد
488 488 label_member_plural: اعضاء
489 489 label_tracker: المتتبع
490 490 label_tracker_plural: المتتبعين
491 491 label_tracker_new: متتبع جديد
492 492 label_workflow: سير العمل
493 493 label_issue_status: وضع القضية
494 494 label_issue_status_plural: اوضاع القضية
495 495 label_issue_status_new: وضع جديد
496 496 label_issue_category: نوع القضية
497 497 label_issue_category_plural: انواع القضايا
498 498 label_issue_category_new: نوع جديد
499 499 label_custom_field: تخصيص حقل
500 500 label_custom_field_plural: تخصيص حقول
501 501 label_custom_field_new: حقل مخصص جديد
502 502 label_enumerations: التعدادات
503 503 label_enumeration_new: قيمة جديدة
504 504 label_information: معلومة
505 505 label_information_plural: معلومات
506 506 label_please_login: برجى تسجيل الدخول
507 507 label_register: تسجيل
508 508 label_login_with_open_id_option: او الدخول بهوية مفتوحة
509 509 label_password_lost: فقدت كلمة السر
510 510 label_home: الصفحة الرئيسية
511 511 label_my_page: الصفحة الخاصة بي
512 512 label_my_account: حسابي
513 513 label_my_projects: مشاريعي الخاصة
514 514 label_my_page_block: حجب صفحتي الخاصة
515 515 label_administration: الإدارة
516 516 label_login: تسجيل الدخول
517 517 label_logout: تسجيل الخروج
518 518 label_help: مساعدة
519 519 label_reported_issues: أبلغ القضايا
520 520 label_assigned_to_me_issues: المسائل المعنية إلى
521 521 label_last_login: آخر اتصال
522 522 label_registered_on: مسجل على
523 523 label_activity: النشاط
524 524 label_overall_activity: النشاط العام
525 525 label_user_activity: "قيمة النشاط"
526 526 label_new: جديدة
527 527 label_logged_as: تم تسجيل دخولك
528 528 label_environment: البيئة
529 529 label_authentication: المصادقة
530 530 label_auth_source: وضع المصادقة
531 531 label_auth_source_new: وضع مصادقة جديدة
532 532 label_auth_source_plural: أوضاع المصادقة
533 533 label_subproject_plural: مشاريع فرعية
534 534 label_subproject_new: مشروع فرعي جديد
535 535 label_and_its_subprojects: "قيمةالمشاريع الفرعية الخاصة بك"
536 536 label_min_max_length: الحد الاقصى والادنى للطول
537 537 label_list: قائمة
538 538 label_date: تاريخ
539 539 label_integer: عدد صحيح
540 540 label_float: تعويم
541 541 label_boolean: منطقية
542 542 label_string: النص
543 543 label_text: نص طويل
544 544 label_attribute: سمة
545 545 label_attribute_plural: السمات
546 546 label_download: "تحميل"
547 547 label_download_plural: "تحميل"
548 548 label_no_data: لا توجد بيانات للعرض
549 549 label_change_status: تغيير الوضع
550 550 label_history: التاريخ
551 551 label_attachment: الملف
552 552 label_attachment_new: ملف جديد
553 553 label_attachment_delete: حذف الملف
554 554 label_attachment_plural: الملفات
555 555 label_file_added: الملف المضاف
556 556 label_report: تقرير
557 557 label_report_plural: التقارير
558 558 label_news: الأخبار
559 559 label_news_new: إضافة الأخبار
560 560 label_news_plural: الأخبار
561 561 label_news_latest: آخر الأخبار
562 562 label_news_view_all: عرض كل الأخبار
563 563 label_news_added: الأخبار المضافة
564 564 label_news_comment_added: إضافة التعليقات على أخبار
565 565 label_settings: إعدادات
566 566 label_overview: لمحة عامة
567 567 label_version: الإصدار
568 568 label_version_new: الإصدار الجديد
569 569 label_version_plural: الإصدارات
570 570 label_close_versions: أكملت إغلاق الإصدارات
571 571 label_confirmation: تأكيد
572 572 label_export_to: 'متوفرة أيضا في:'
573 573 label_read: القراءة...
574 574 label_public_projects: المشاريع العامة
575 575 label_open_issues: فتح قضية
576 576 label_open_issues_plural: فتح قضايا
577 577 label_closed_issues: قضية مغلقة
578 578 label_closed_issues_plural: قضايا مغلقة
579 579 label_x_open_issues_abbr_on_total:
580 580 zero: 0 مفتوح / %{total}
581 581 one: 1 مفتوح / %{total}
582 582 other: "%{count} مفتوح / %{total}"
583 583 label_x_open_issues_abbr:
584 584 zero: 0 مفتوح
585 585 one: 1 مقتوح
586 586 other: "%{count} مفتوح"
587 587 label_x_closed_issues_abbr:
588 588 zero: 0 مغلق
589 589 one: 1 مغلق
590 590 other: "%{count} مغلق"
591 591 label_total: الإجمالي
592 592 label_permissions: أذونات
593 593 label_current_status: الوضع الحالي
594 594 label_new_statuses_allowed: يسمح بادراج حالات جديدة
595 595 label_all: جميع
596 596 label_none: لا شيء
597 597 label_nobody: لا أحد
598 598 label_next: القادم
599 599 label_previous: السابق
600 600 label_used_by: التي يستخدمها
601 601 label_details: التفاصيل
602 602 label_add_note: إضافة ملاحظة
603 603 label_per_page: كل صفحة
604 604 label_calendar: التقويم
605 605 label_months_from: بعد أشهر من
606 606 label_gantt: جانت
607 607 label_internal: الداخلية
608 608 label_last_changes: "آخر التغييرات %{count}"
609 609 label_change_view_all: عرض كافة التغييرات
610 610 label_personalize_page: تخصيص هذه الصفحة
611 611 label_comment: تعليق
612 612 label_comment_plural: تعليقات
613 613 label_x_comments:
614 614 zero: لا يوجد تعليقات
615 615 one: تعليق واحد
616 616 other: "%{count} تعليقات"
617 617 label_comment_add: إضافة تعليق
618 618 label_comment_added: تم إضافة التعليق
619 619 label_comment_delete: حذف التعليقات
620 620 label_query: استعلام مخصص
621 621 label_query_plural: استعلامات مخصصة
622 622 label_query_new: استعلام جديد
623 623 label_my_queries: استعلاماتي المخصصة
624 624 label_filter_add: إضافة عامل تصفية
625 625 label_filter_plural: عوامل التصفية
626 626 label_equals: يساوي
627 627 label_not_equals: لا يساوي
628 628 label_in_less_than: في أقل من
629 629 label_in_more_than: في أكثر من
630 630 label_greater_or_equal: '>='
631 631 label_less_or_equal: '< ='
632 632 label_between: بين
633 633 label_in: في
634 634 label_today: اليوم
635 635 label_all_time: كل الوقت
636 636 label_yesterday: بالأمس
637 637 label_this_week: هذا الأسبوع
638 638 label_last_week: الأسبوع الماضي
639 639 label_last_n_days: "ايام %{count} اخر"
640 640 label_this_month: هذا الشهر
641 641 label_last_month: الشهر الماضي
642 642 label_this_year: هذا العام
643 643 label_date_range: نطاق التاريخ
644 644 label_less_than_ago: أقل من قبل أيام
645 645 label_more_than_ago: أكثر من قبل أيام
646 646 label_ago: منذ أيام
647 647 label_contains: يحتوي على
648 648 label_not_contains: لا يحتوي على
649 649 label_day_plural: أيام
650 650 label_repository: المستودع
651 651 label_repository_plural: المستودعات
652 652 label_browse: تصفح
653 653 label_modification: "%{count} تغير"
654 654 label_modification_plural: "%{count}تغيرات "
655 655 label_branch: فرع
656 656 label_tag: ربط
657 657 label_revision: مراجعة
658 658 label_revision_plural: تنقيحات
659 659 label_revision_id: " %{value}مراجعة"
660 660 label_associated_revisions: التنقيحات المرتبطة
661 661 label_added: إضافة
662 662 label_modified: تعديل
663 663 label_copied: نسخ
664 664 label_renamed: إعادة تسمية
665 665 label_deleted: حذف
666 666 label_latest_revision: آخر تنقيح
667 667 label_latest_revision_plural: أحدث المراجعات
668 668 label_view_revisions: عرض التنقيحات
669 669 label_view_all_revisions: عرض كافة المراجعات
670 670 label_max_size: الحد الأقصى للحجم
671 671 label_sort_highest: التحرك إلى أعلى
672 672 label_sort_higher: تحريك لأعلى
673 673 label_sort_lower: تحريك لأسفل
674 674 label_sort_lowest: الانتقال إلى أسفل
675 675 label_roadmap: خارطة الطريق
676 676 label_roadmap_due_in: " %{value}تستحق في "
677 677 label_roadmap_overdue: "%{value}تأخير"
678 678 label_roadmap_no_issues: لا يوجد قضايا لهذا الإصدار
679 679 label_search: البحث
680 680 label_result_plural: النتائج
681 681 label_all_words: كل الكلمات
682 682 label_wiki: ويكي
683 683 label_wiki_edit: تحرير ويكي
684 684 label_wiki_edit_plural: عمليات تحرير ويكي
685 685 label_wiki_page: صفحة ويكي
686 686 label_wiki_page_plural: ويكي صفحات
687 687 label_index_by_title: الفهرس حسب العنوان
688 688 label_index_by_date: الفهرس حسب التاريخ
689 689 label_current_version: الإصدار الحالي
690 690 label_preview: معاينة
691 691 label_feed_plural: موجز ويب
692 692 label_changes_details: تفاصيل جميع التغييرات
693 693 label_issue_tracking: تعقب القضايا
694 694 label_spent_time: أمضى بعض الوقت
695 695 label_overall_spent_time: الوقت الذي تم انفاقه كاملا
696 696 label_f_hour: "%{value} ساعة"
697 697 label_f_hour_plural: "%{value} ساعات"
698 698 label_time_tracking: تعقب الوقت
699 699 label_change_plural: التغييرات
700 700 label_statistics: إحصاءات
701 701 label_commits_per_month: يثبت في الشهر
702 702 label_commits_per_author: يثبت لكل مؤلف
703 703 label_diff: الاختلافات
704 704 label_view_diff: عرض الاختلافات
705 705 label_diff_inline: مضمنة
706 706 label_diff_side_by_side: جنبا إلى جنب
707 707 label_options: خيارات
708 708 label_copy_workflow_from: نسخ سير العمل من
709 709 label_permissions_report: تقرير أذونات
710 710 label_watched_issues: شاهد القضايا
711 711 label_related_issues: القضايا ذات الصلة
712 712 label_applied_status: تطبيق مركز
713 713 label_loading: تحميل...
714 714 label_relation_new: علاقة جديدة
715 715 label_relation_delete: حذف العلاقة
716 716 label_relates_to: ذات الصلة إلى
717 717 label_duplicates: التكرارات
718 718 label_duplicated_by: ازدواج
719 719 label_blocks: حظر
720 720 label_blocked_by: حظر بواسطة
721 721 label_precedes: يسبق
722 722 label_follows: يتبع
723 723 label_end_to_start: نهاية لبدء
724 724 label_end_to_end: نهاية إلى نهاية
725 725 label_start_to_start: بدء إلى بدء
726 726 label_start_to_end: بداية لنهاية
727 727 label_stay_logged_in: تسجيل الدخول في
728 728 label_disabled: تعطيل
729 729 label_show_completed_versions: أكملت إظهار إصدارات
730 730 label_me: لي
731 731 label_board: المنتدى
732 732 label_board_new: منتدى جديد
733 733 label_board_plural: المنتديات
734 734 label_board_locked: تأمين
735 735 label_board_sticky: لزجة
736 736 label_topic_plural: المواضيع
737 737 label_message_plural: رسائل
738 738 label_message_last: آخر رسالة
739 739 label_message_new: رسالة جديدة
740 740 label_message_posted: تم اضافة الرسالة
741 741 label_reply_plural: الردود
742 742 label_send_information: إرسال معلومات الحساب للمستخدم
743 743 label_year: سنة
744 744 label_month: شهر
745 745 label_week: أسبوع
746 746 label_date_from: من
747 747 label_date_to: إلى
748 748 label_language_based: استناداً إلى لغة المستخدم
749 749 label_sort_by: " %{value}الترتيب حسب "
750 750 label_send_test_email: ارسل رسالة الكترونية كاختبار
751 751 label_feeds_access_key: RSS مفتاح دخول
752 752 label_missing_feeds_access_key: مفقودRSS مفتاح دخول
753 753 label_feeds_access_key_created_on: "RSS تم انشاء مفتاح %{value} منذ"
754 754 label_module_plural: الوحدات النمطية
755 755 label_added_time_by: " تم اضافته من قبل%{author} %{age} منذ"
756 756 label_updated_time_by: " تم تحديثه من قبل%{author} %{age} منذ"
757 757 label_updated_time: "تم التحديث %{value} منذ"
758 758 label_jump_to_a_project: الانتقال إلى مشروع...
759 759 label_file_plural: الملفات
760 760 label_changeset_plural: اعدادات التغير
761 761 label_default_columns: الاعمدة الافتراضية
762 762 label_no_change_option: (أي تغيير)
763 763 label_bulk_edit_selected_issues: تحرير القضايا المظللة
764 764 label_bulk_edit_selected_time_entries: تعديل كل الإدخالات في كل الاوقات
765 765 label_theme: الموضوع
766 766 label_default: الافتراضي
767 767 label_search_titles_only: البحث في العناوين فقط
768 768 label_user_mail_option_all: "جميع الخيارات"
769 769 label_user_mail_option_selected: "الخيارات المظللة فقط"
770 770 label_user_mail_option_none: "لم يتم تحديد اي خيارات"
771 771 label_user_mail_option_only_my_events: "السماح لي فقط بمشاهدة الاحداث الخاصة"
772 772 label_user_mail_option_only_assigned: "فقط الخيارات التي تم تعيينها"
773 773 label_user_mail_option_only_owner: "فقط للخيارات التي املكها"
774 774 label_user_mail_no_self_notified: "لا تريد اعلامك بالتغيرات التي تجريها بنفسك"
775 775 label_registration_activation_by_email: حساب التنشيط عبر البريد الإلكتروني
776 776 label_registration_manual_activation: تنشيط الحساب اليدوي
777 777 label_registration_automatic_activation: تنشيط الحساب التلقائي
778 778 label_display_per_page: "لكل صفحة: %{value}"
779 779 label_age: العمر
780 780 label_change_properties: تغيير الخصائص
781 781 label_general: عامة
782 782 label_more: أكثر
783 783 label_scm: scm
784 784 label_plugins: الإضافات
785 785 label_ldap_authentication: مصادقة LDAP
786 786 label_downloads_abbr: D/L
787 787 label_optional_description: وصف اختياري
788 788 label_add_another_file: إضافة ملف آخر
789 789 label_preferences: تفضيلات
790 790 label_chronological_order: في ترتيب زمني
791 791 label_reverse_chronological_order: في ترتيب زمني عكسي
792 792 label_planning: التخطيط
793 793 label_incoming_emails: رسائل البريد الإلكتروني الوارد
794 794 label_generate_key: إنشاء مفتاح
795 795 label_issue_watchers: المراقبون
796 796 label_example: مثال
797 797 label_display: العرض
798 798 label_sort: فرز
799 799 label_ascending: تصاعدي
800 800 label_descending: تنازلي
801 801 label_date_from_to: من %{start} الى %{end}
802 802 label_wiki_content_added: إضافة صفحة ويكي
803 803 label_wiki_content_updated: تحديث صفحة ويكي
804 804 label_group: مجموعة
805 805 label_group_plural: المجموعات
806 806 label_group_new: مجموعة جديدة
807 807 label_time_entry_plural: أمضى بعض الوقت
808 808 label_version_sharing_none: لم يشارك
809 809 label_version_sharing_descendants: يشارك
810 810 label_version_sharing_hierarchy: مع التسلسل الهرمي للمشروع
811 811 label_version_sharing_tree: مع شجرة المشروع
812 812 label_version_sharing_system: مع جميع المشاريع
813 813 label_update_issue_done_ratios: تحديث قضيةالنسب
814 814 label_copy_source: مصدر
815 815 label_copy_target: الهدف
816 816 label_copy_same_as_target: نفس الهدف
817 817 label_display_used_statuses_only: عرض الحالات المستخدمة من قبل هذا "تعقب" فقط
818 818 label_api_access_key: مفتاح الوصول إلى API
819 819 label_missing_api_access_key: API لم يتم الحصول على مفتاح الوصول
820 820 label_api_access_key_created_on: " API إنشاء مفتاح الوصول إلى"
821 821 label_profile: الملف الشخصي
822 822 label_subtask_plural: المهام الفرعية
823 823 label_project_copy_notifications: إرسال إشعار الى البريد الإلكتروني عند نسخ المشروع
824 824 label_principal_search: "البحث عن مستخدم أو مجموعة:"
825 825 label_user_search: "البحث عن المستخدم:"
826 826 label_additional_workflow_transitions_for_author: الانتقالات الإضافية المسموح بها عند المستخدم صاحب البلاغ
827 827 label_additional_workflow_transitions_for_assignee: الانتقالات الإضافية المسموح بها عند المستخدم المحال إليه
828 828 label_issues_visibility_all: جميع القضايا
829 829 label_issues_visibility_public: جميع القضايا الخاصة
830 830 label_issues_visibility_own: القضايا التي أنشأها المستخدم
831 831 label_git_report_last_commit: اعتماد التقرير الأخير للملفات والدلائل
832 832 label_parent_revision: الوالدين
833 833 label_child_revision: الطفل
834 834 label_export_options: "%{export_format} خيارات التصدير"
835 835
836 836 button_login: دخول
837 837 button_submit: تثبيت
838 838 button_save: حفظ
839 839 button_check_all: نحديد الكل
840 840 button_uncheck_all: عدم تحديد الكل
841 841 button_collapse_all: تقليص الكل
842 842 button_expand_all: عرض الكل
843 843 button_delete: حذف
844 844 button_create: انشاء
845 845 button_create_and_continue: انشاء واستمرار
846 846 button_test: اختبار
847 847 button_edit: تعديل
848 848 button_edit_associated_wikipage: "تغير صفحة ويكي: %{page_title}"
849 849 button_add: اضافة
850 850 button_change: تغير
851 851 button_apply: تطبيق
852 852 button_clear: واضح
853 853 button_lock: قفل
854 854 button_unlock: الغاء القفل
855 855 button_download: تنزيل
856 856 button_list: قائمة
857 857 button_view: عرض
858 858 button_move: تحرك
859 859 button_move_and_follow: تحرك واتبع
860 860 button_back: رجوع
861 861 button_cancel: إلغاء
862 862 button_activate: تنشيط
863 863 button_sort: ترتيب
864 864 button_log_time: وقت الدخول
865 865 button_rollback: الرجوع الى هذا الاصدار
866 866 button_watch: يشاهد
867 867 button_unwatch: إلغاء المشاهدة
868 868 button_reply: رد
869 869 button_archive: الارشيف
870 870 button_unarchive: إلغاء الارشفة
871 871 button_reset: إعادة
872 872 button_rename: إعادة التسمية
873 873 button_change_password: تغير كلمة المرور
874 874 button_copy: نسخ
875 875 button_copy_and_follow: نسخ واتباع
876 876 button_annotate: تعليق
877 877 button_update: تحديث
878 878 button_configure: تكوين
879 879 button_quote: يقتبس
880 880 button_duplicate: يضاعف
881 881 button_show: يظهر
882 882 button_edit_section: يعدل هذا الجزء
883 883 button_export: يستورد
884 884
885 885 status_active: نشيط
886 886 status_registered: مسجل
887 887 status_locked: مقفل
888 888
889 889 version_status_open: مفتوح
890 890 version_status_locked: مقفل
891 891 version_status_closed: مغلق
892 892
893 893 field_active: فعال
894 894
895 895 text_select_mail_notifications: حدد الامور التي يجب ابلاغك بها عن طريق البريد الالكتروني
896 896 text_regexp_info: مثال. ^[A-Z0-9]+$
897 897 text_min_max_length_info: الحد الاقصى والادني لطول المعلومات
898 898 text_project_destroy_confirmation: هل أنت متأكد من أنك تريد حذف هذا المشروع والبيانات ذات الصلة؟
899 899 text_subprojects_destroy_warning: "subproject(s): سيتم حذف أيضا."
900 900 text_workflow_edit: حدد دوراً وتعقب لتحرير سير العمل
901 901 text_are_you_sure: هل أنت متأكد؟
902 902 text_are_you_sure_with_children: "حذف الموضوع وجميع المسائل المتعلقة بالطفل؟"
903 903 text_journal_changed: "%{label} تغير %{old} الى %{new}"
904 904 text_journal_changed_no_detail: "%{label} تم التحديث"
905 905 text_journal_set_to: "%{label} تغير الى %{value}"
906 906 text_journal_deleted: "%{label} تم الحذف (%{old})"
907 907 text_journal_added: "%{label} %{value} تم الاضافة"
908 908 text_tip_issue_begin_day: قضية بدأت اليوم
909 909 text_tip_issue_end_day: قضية انتهت اليوم
910 910 text_tip_issue_begin_end_day: قضية بدأت وانتهت اليوم
911 911 text_caracters_maximum: "%{count} الحد الاقصى."
912 912 text_caracters_minimum: "الحد الادنى %{count}"
913 913 text_length_between: "الطول %{min} بين %{max} رمز"
914 914 text_tracker_no_workflow: لم يتم تحديد سير العمل لهذا المتتبع
915 915 text_unallowed_characters: رموز غير مسموحة
916 916 text_comma_separated: مسموح رموز متنوعة يفصلها فاصلة .
917 917 text_line_separated: مسموح رموز متنوعة يفصلها سطور
918 918 text_issues_ref_in_commit_messages: الرجوع واصلاح القضايا في رسائل المشتكين
919 919 text_issue_added: "القضية %{id} تم ابلاغها عن طريق %{author}."
920 920 text_issue_updated: "القضية %{id} تم تحديثها عن طريق %{author}."
921 921 text_wiki_destroy_confirmation: هل انت متأكد من رغبتك في حذف هذا الويكي ومحتوياته؟
922 922 text_issue_category_destroy_question: "بعض القضايا (%{count}) مرتبطة بهذه الفئة، ماذا تريد ان تفعل بها؟"
923 923 text_issue_category_destroy_assignments: حذف الفئة
924 924 text_issue_category_reassign_to: اعادة تثبيت البنود في الفئة
925 925 text_user_mail_option: "بالنسبة للمشاريع غير المحددة، سوف يتم ابلاغك عن المشاريع التي تشاهدها او تشارك بها فقط!"
926 926 text_no_configuration_data: "الادوار والمتتبع وحالات القضية ومخطط سير العمل لم يتم تحديد وضعها الافتراضي بعد. "
927 927 text_load_default_configuration: احمل الاعدادات الافتراضية
928 928 text_status_changed_by_changeset: " طبق التغيرات المعينة على %{value}."
929 929 text_time_logged_by_changeset: "تم تطبيق التغيرات المعينة على %{value}."
930 930 text_issues_destroy_confirmation: هل انت متأكد من حذف البنود المظللة؟'
931 931 text_issues_destroy_descendants_confirmation: "سوف يؤدي هذا الى حذف %{count} المهام الفرعية ايضا."
932 932 text_time_entries_destroy_confirmation: "هل انت متأكد من رغبتك في حذف الادخالات الزمنية المحددة؟"
933 933 text_select_project_modules: قم بتحديد الوضع المناسب لهذا المشروع:'
934 934 text_default_administrator_account_changed: تم تعديل الاعدادات الافتراضية لحساب المدير
935 935 text_file_repository_writable: المرفقات قابلة للكتابة
936 936 text_plugin_assets_writable: الدليل المساعد قابل للكتابة
937 937 text_destroy_time_entries_question: " ساعة على القضية التي تود حذفها، ماذا تريد ان تفعل؟ %{hours} تم تثبيت"
938 938 text_destroy_time_entries: قم بحذف الساعات المسجلة
939 939 text_assign_time_entries_to_project: ثبت الساعات المسجلة على التقرير
940 940 text_reassign_time_entries: 'اعادة تثبيت الساعات المسجلة لهذه القضية:'
941 941 text_user_wrote: "%{value} كتب:"
942 942 text_enumeration_destroy_question: "%{count} الكائنات المعنية لهذه القيمة"
943 943 text_enumeration_category_reassign_to: اعادة تثبيت الكائنات التالية لهذه القيمة:'
944 944 text_email_delivery_not_configured: "لم يتم تسليم البريد الالكتروني"
945 945 text_diff_truncated: '... لقد تم اقتطلع هذا الجزء لانه تجاوز الحد الاقصى المسموح بعرضه'
946 946 text_custom_field_possible_values_info: 'سطر لكل قيمة'
947 947 text_wiki_page_nullify_children: "الاحتفاظ بصفحات الطفل كصفحات جذر"
948 948 text_wiki_page_destroy_children: "حذف صفحات الطفل وجميع أولادهم"
949 949 text_wiki_page_reassign_children: "إعادة تعيين صفحات تابعة لهذه الصفحة الأصلية"
950 950 text_own_membership_delete_confirmation: "انت على وشك إزالة بعض أو كافة الأذونات الخاصة بك، لن تكون قادراً على تحرير هذا المشروع بعد ذلك. هل أنت متأكد من أنك تريد المتابعة؟"
951 951 text_zoom_in: تصغير
952 952 text_zoom_out: تكبير
953 953 text_warn_on_leaving_unsaved: "الصفحة تحتوي على نص غير مخزن، سوف يفقد النص اذا تم الخروج من الصفحة."
954 954 text_scm_path_encoding_note: "الافتراضي: UTF-8"
955 955 text_git_repository_note: مستودع فارغ ومحلي
956 956 text_mercurial_repository_note: مستودع محلي
957 957 text_scm_command: امر
958 958 text_scm_command_version: اصدار
959 959 text_scm_config: الرجاء اعادة تشغيل التطبيق
960 960 text_scm_command_not_available: الامر غير متوفر، الرجاء التحقق من لوحة التحكم
961 961
962 962 default_role_manager: مدير
963 963 default_role_developer: مطور
964 964 default_role_reporter: مراسل
965 965 default_tracker_bug: الشوائب
966 966 default_tracker_feature: خاصية
967 967 default_tracker_support: دعم
968 968 default_issue_status_new: جديد
969 969 default_issue_status_in_progress: جاري التحميل
970 970 default_issue_status_resolved: الحل
971 971 default_issue_status_feedback: التغذية الراجعة
972 972 default_issue_status_closed: مغلق
973 973 default_issue_status_rejected: مرفوض
974 974 default_doc_category_user: مستندات المستخدم
975 975 default_doc_category_tech: المستندات التقنية
976 976 default_priority_low: قليل
977 977 default_priority_normal: عادي
978 978 default_priority_high: عالي
979 979 default_priority_urgent: طارئ
980 980 default_priority_immediate: مباشرة
981 981 default_activity_design: تصميم
982 982 default_activity_development: تطوير
983 983
984 984 enumeration_issue_priorities: الاولويات
985 985 enumeration_doc_categories: تصنيف المستندات
986 986 enumeration_activities: الانشطة
987 987 enumeration_system_activity: نشاط النظام
988 988 description_filter: فلترة
989 989 description_search: حقل البحث
990 990 description_choose_project: مشاريع
991 991 description_project_scope: مجال البحث
992 992 description_notes: ملاحظات
993 993 description_message_content: محتويات الرسالة
994 994 description_query_sort_criteria_attribute: نوع الترتيب
995 995 description_query_sort_criteria_direction: اتجاه الترتيب
996 996 description_user_mail_notification: إعدادات البريد الالكتروني
997 997 description_available_columns: الاعمدة المتوفرة
998 998 description_selected_columns: الاعمدة المحددة
999 999 description_all_columns: كل الاعمدة
1000 1000 description_issue_category_reassign: اختر التصنيف
1001 1001 description_wiki_subpages_reassign: اختر صفحة جديدة
1002 1002 description_date_range_list: اختر المجال من القائمة
1003 1003 description_date_range_interval: اختر المدة عن طريق اختيار تاريخ البداية والنهاية
1004 1004 description_date_from: ادخل تاريخ البداية
1005 1005 description_date_to: ادخل تاريخ الانتهاء
1006 1006 text_rmagick_available: RMagick available (optional)
1007 1007 text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do?
1008 1008 text_repository_usernames_mapping: |-
1009 1009 Select or update the Redmine user mapped to each username found in the repository log.
1010 1010 Users with the same Redmine and repository username or email are automatically mapped.
1011 1011 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1012 1012 label_x_issues:
1013 1013 zero: 0 قضية
1014 1014 one: 1 قضية
1015 1015 other: "%{count} قضايا"
1016 1016 label_repository_new: New repository
1017 1017 field_repository_is_default: Main repository
1018 1018 label_copy_attachments: Copy attachments
1019 1019 label_item_position: "%{position}/%{count}"
1020 1020 label_completed_versions: Completed versions
1021 1021 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1022 1022 field_multiple: Multiple values
1023 1023 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1024 1024 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1025 1025 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1026 1026 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1027 1027 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1028 1028 permission_manage_related_issues: Manage related issues
1029 1029 field_ldap_filter: LDAP filter
1030 1030 label_search_for_watchers: Search for watchers to add
1031 1031 notice_account_deleted: Your account has been permanently deleted.
1032 1032 setting_unsubscribe: Allow users to delete their own account
1033 1033 button_delete_my_account: Delete my account
1034 1034 text_account_destroy_confirmation: |-
1035 1035 Are you sure you want to proceed?
1036 1036 Your account will be permanently deleted, with no way to reactivate it.
1037 1037 error_session_expired: Your session has expired. Please login again.
1038 1038 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1039 1039 setting_session_lifetime: Session maximum lifetime
1040 1040 setting_session_timeout: Session inactivity timeout
1041 1041 label_session_expiration: Session expiration
1042 1042 permission_close_project: Close / reopen the project
1043 1043 label_show_closed_projects: View closed projects
1044 1044 button_close: Close
1045 1045 button_reopen: Reopen
1046 1046 project_status_active: active
1047 1047 project_status_closed: closed
1048 1048 project_status_archived: archived
1049 1049 text_project_closed: This project is closed and read-only.
1050 1050 notice_user_successful_create: User %{id} created.
1051 1051 field_core_fields: Standard fields
1052 1052 field_timeout: Timeout (in seconds)
1053 1053 setting_thumbnails_enabled: Display attachment thumbnails
1054 1054 setting_thumbnails_size: Thumbnails size (in pixels)
1055 label_status_transitions: Status transitions
1056 label_fields_permissions: Fields permissions
1057 label_readonly: Read-only
1058 label_required: Required
@@ -1,1052 +1,1056
1 1 # Bulgarian translation by Ivan Cenov i_cenov@botevgrad.com
2 2 bg:
3 3 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
4 4 direction: ltr
5 5 date:
6 6 formats:
7 7 # Use the strftime parameters for formats.
8 8 # When no format has been given, it uses default.
9 9 # You can provide other formats here if you like!
10 10 default: "%d-%m-%Y"
11 11 short: "%b %d"
12 12 long: "%B %d, %Y"
13 13
14 14 day_names: [Неделя, Понеделник, Вторник, Сряда, Четвъртък, Петък, Събота]
15 15 abbr_day_names: [Нед, Пон, Вто, Сря, Чет, Пет, Съб]
16 16
17 17 # Don't forget the nil at the beginning; there's no such thing as a 0th month
18 18 month_names: [~, Януари, Февруари, Март, Април, Май, Юни, Юли, Август, Септември, Октомври, Ноември, Декември]
19 19 abbr_month_names: [~, Яну, Фев, Мар, Апр, Май, Юни, Юли, Авг, Сеп, Окт, Ное, Дек]
20 20 # Used in date_select and datime_select.
21 21 order:
22 22 - :year
23 23 - :month
24 24 - :day
25 25
26 26 time:
27 27 formats:
28 28 default: "%a, %d %b %Y %H:%M:%S %z"
29 29 time: "%H:%M"
30 30 short: "%d %b %H:%M"
31 31 long: "%B %d, %Y %H:%M"
32 32 am: "am"
33 33 pm: "pm"
34 34
35 35 datetime:
36 36 distance_in_words:
37 37 half_a_minute: "half a minute"
38 38 less_than_x_seconds:
39 39 one: "по-малко от 1 секунда"
40 40 other: "по-малко от %{count} секунди"
41 41 x_seconds:
42 42 one: "1 секунда"
43 43 other: "%{count} секунди"
44 44 less_than_x_minutes:
45 45 one: "по-малко от 1 минута"
46 46 other: "по-малко от %{count} минути"
47 47 x_minutes:
48 48 one: "1 минута"
49 49 other: "%{count} минути"
50 50 about_x_hours:
51 51 one: "около 1 час"
52 52 other: "около %{count} часа"
53 53 x_hours:
54 54 one: "1 hour"
55 55 other: "%{count} hours"
56 56 x_days:
57 57 one: "1 ден"
58 58 other: "%{count} дена"
59 59 about_x_months:
60 60 one: "около 1 месец"
61 61 other: "около %{count} месеца"
62 62 x_months:
63 63 one: "1 месец"
64 64 other: "%{count} месеца"
65 65 about_x_years:
66 66 one: "около 1 година"
67 67 other: "около %{count} години"
68 68 over_x_years:
69 69 one: "над 1 година"
70 70 other: "над %{count} години"
71 71 almost_x_years:
72 72 one: "почти 1 година"
73 73 other: "почти %{count} години"
74 74
75 75 number:
76 76 format:
77 77 separator: "."
78 78 delimiter: ""
79 79 precision: 3
80 80
81 81 human:
82 82 format:
83 83 delimiter: ""
84 84 precision: 3
85 85 storage_units:
86 86 format: "%n %u"
87 87 units:
88 88 byte:
89 89 one: байт
90 90 other: байта
91 91 kb: "KB"
92 92 mb: "MB"
93 93 gb: "GB"
94 94 tb: "TB"
95 95
96 96 # Used in array.to_sentence.
97 97 support:
98 98 array:
99 99 sentence_connector: "и"
100 100 skip_last_comma: false
101 101
102 102 activerecord:
103 103 errors:
104 104 template:
105 105 header:
106 106 one: "1 грешка попречи този %{model} да бъде записан"
107 107 other: "%{count} грешки попречиха този %{model} да бъде записан"
108 108 messages:
109 109 inclusion: "не съществува в списъка"
110 110 exclusion: запазено"
111 111 invalid: невалидно"
112 112 confirmation: "липсва одобрение"
113 113 accepted: "трябва да се приеме"
114 114 empty: "не може да е празно"
115 115 blank: "не може да е празно"
116 116 too_long: прекалено дълго"
117 117 too_short: прекалено късо"
118 118 wrong_length: с грешна дължина"
119 119 taken: "вече съществува"
120 120 not_a_number: "не е число"
121 121 not_a_date: невалидна дата"
122 122 greater_than: "трябва да бъде по-голям[a/о] от %{count}"
123 123 greater_than_or_equal_to: "трябва да бъде по-голям[a/о] от или равен[a/o] на %{count}"
124 124 equal_to: "трябва да бъде равен[a/o] на %{count}"
125 125 less_than: "трябва да бъде по-малък[a/o] от %{count}"
126 126 less_than_or_equal_to: "трябва да бъде по-малък[a/o] от или равен[a/o] на %{count}"
127 127 odd: "трябва да бъде нечетен[a/o]"
128 128 even: "трябва да бъде четен[a/o]"
129 129 greater_than_start_date: "трябва да е след началната дата"
130 130 not_same_project: "не е от същия проект"
131 131 circular_dependency: "Тази релация ще доведе до безкрайна зависимост"
132 132 cant_link_an_issue_with_a_descendant: "Една задача не може да бъде свързвана към своя подзадача"
133 133
134 134 actionview_instancetag_blank_option: Изберете
135 135
136 136 general_text_No: 'Не'
137 137 general_text_Yes: 'Да'
138 138 general_text_no: 'не'
139 139 general_text_yes: 'да'
140 140 general_lang_name: 'Bulgarian (Български)'
141 141 general_csv_separator: ','
142 142 general_csv_decimal_separator: '.'
143 143 general_csv_encoding: UTF-8
144 144 general_pdf_encoding: UTF-8
145 145 general_first_day_of_week: '1'
146 146
147 147 notice_account_updated: Профилът е обновен успешно.
148 148 notice_account_invalid_creditentials: Невалиден потребител или парола.
149 149 notice_account_password_updated: Паролата е успешно променена.
150 150 notice_account_wrong_password: Грешна парола
151 151 notice_account_register_done: Профилът е създаден успешно.
152 152 notice_account_unknown_email: Непознат e-mail.
153 153 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
154 154 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
155 155 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
156 156 notice_successful_create: Успешно създаване.
157 157 notice_successful_update: Успешно обновяване.
158 158 notice_successful_delete: Успешно изтриване.
159 159 notice_successful_connection: Успешно свързване.
160 160 notice_file_not_found: Несъществуваща или преместена страница.
161 161 notice_locking_conflict: Друг потребител променя тези данни в момента.
162 162 notice_not_authorized: Нямате право на достъп до тази страница.
163 163 notice_not_authorized_archived_project: Проектът, който се опитвате да видите е архивиран. Ако смятате, че това не е правилно, обърнете се към администратора за разархивиране.
164 164 notice_email_sent: "Изпратен e-mail на %{value}"
165 165 notice_email_error: "Грешка при изпращане на e-mail (%{value})"
166 166 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
167 167 notice_api_access_key_reseted: Вашият API ключ за достъп беше изчистен.
168 168 notice_failed_to_save_issues: "Неуспешен запис на %{count} задачи от %{total} избрани: %{ids}."
169 169 notice_failed_to_save_time_entries: "Невъзможност за запис на %{count} записа за използвано време от %{total} избрани: %{ids}."
170 170 notice_failed_to_save_members: "Невъзможност за запис на член(ове): %{errors}."
171 171 notice_no_issue_selected: "Няма избрани задачи."
172 172 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
173 173 notice_default_data_loaded: Примерната информация е заредена успешно.
174 174 notice_unable_delete_version: Невъзможност за изтриване на версия
175 175 notice_unable_delete_time_entry: Невъзможност за изтриване на запис за използвано време.
176 176 notice_issue_done_ratios_updated: Обновен процент на завършените задачи.
177 177 notice_gantt_chart_truncated: Мрежовият график е съкратен, понеже броят на обектите, които могат да бъдат показани е твърде голям (%{max})
178 178 notice_issue_successful_create: Задача %{id} е създадена.
179 179 notice_issue_update_conflict: Задачата е била променена от друг потребител, докато вие сте я редактирали.
180 180 notice_account_deleted: Вашият профил беше премахнат без възможност за възстановяване.
181 181 notice_user_successful_create: Потребител %{id} е създаден.
182 182
183 183 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %{value}"
184 184 error_scm_not_found: Несъществуващ обект в хранилището.
185 185 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %{value}"
186 186 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
187 187 error_scm_annotate_big_text_file: "Файлът не може да бъде анотиран, понеже надхвърля максималния размер за текстови файлове."
188 188 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
189 189 error_no_tracker_in_project: Няма асоциирани тракери с този проект. Проверете настройките на проекта.
190 190 error_no_default_issue_status: Няма установено подразбиращо се състояние за задачите. Моля проверете вашата конфигурация (Вижте "Администрация -> Състояния на задачи").
191 191 error_can_not_delete_custom_field: Невъзможност за изтриване на потребителско поле
192 192 error_can_not_delete_tracker: Този тракер съдържа задачи и не може да бъде изтрит.
193 193 error_can_not_remove_role: Тази роля се използва и не може да бъде изтрита.
194 194 error_can_not_reopen_issue_on_closed_version: Задача, асоциирана със затворена версия не може да бъде отворена отново
195 195 error_can_not_archive_project: Този проект не може да бъде архивиран
196 196 error_issue_done_ratios_not_updated: Процентът на завършените задачи не е обновен.
197 197 error_workflow_copy_source: Моля изберете source тракер или роля
198 198 error_workflow_copy_target: Моля изберете тракер(и) и роля (роли).
199 199 error_unable_delete_issue_status: Невъзможност за изтриване на състояние на задача
200 200 error_unable_to_connect: Невъзможност за свързване с (%{value})
201 201 error_attachment_too_big: Този файл не може да бъде качен, понеже надхвърля максималната възможна големина (%{max_size})
202 202 error_session_expired: Вашата сесия е изтекла. Моля влезете в Redmine отново.
203 203 warning_attachments_not_saved: "%{count} файла не бяха записани."
204 204
205 205 mail_subject_lost_password: "Вашата парола (%{value})"
206 206 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
207 207 mail_subject_register: "Активация на профил (%{value})"
208 208 mail_body_register: 'За да активирате профила си използвайте следния линк:'
209 209 mail_body_account_information_external: "Можете да използвате вашия %{value} профил за вход."
210 210 mail_body_account_information: Информацията за профила ви
211 211 mail_subject_account_activation_request: "Заявка за активиране на профил в %{value}"
212 212 mail_body_account_activation_request: "Има новорегистриран потребител (%{value}), очакващ вашето одобрение:"
213 213 mail_subject_reminder: "%{count} задачи с краен срок с следващите %{days} дни"
214 214 mail_body_reminder: "%{count} задачи, назначени на вас са с краен срок в следващите %{days} дни:"
215 215 mail_subject_wiki_content_added: "Wiki страницата '%{id}' беше добавена"
216 216 mail_body_wiki_content_added: Wiki страницата '%{id}' беше добавена от %{author}.
217 217 mail_subject_wiki_content_updated: "Wiki страницата '%{id}' беше обновена"
218 218 mail_body_wiki_content_updated: Wiki страницата '%{id}' беше обновена от %{author}.
219 219
220 220 gui_validation_error: 1 грешка
221 221 gui_validation_error_plural: "%{count} грешки"
222 222
223 223 field_name: Име
224 224 field_description: Описание
225 225 field_summary: Анотация
226 226 field_is_required: Задължително
227 227 field_firstname: Име
228 228 field_lastname: Фамилия
229 229 field_mail: Email
230 230 field_filename: Файл
231 231 field_filesize: Големина
232 232 field_downloads: Изтеглени файлове
233 233 field_author: Автор
234 234 field_created_on: От дата
235 235 field_updated_on: Обновена
236 236 field_field_format: Тип
237 237 field_is_for_all: За всички проекти
238 238 field_possible_values: Възможни стойности
239 239 field_regexp: Регулярен израз
240 240 field_min_length: Мин. дължина
241 241 field_max_length: Макс. дължина
242 242 field_value: Стойност
243 243 field_category: Категория
244 244 field_title: Заглавие
245 245 field_project: Проект
246 246 field_issue: Задача
247 247 field_status: Състояние
248 248 field_notes: Бележка
249 249 field_is_closed: Затворена задача
250 250 field_is_default: Състояние по подразбиране
251 251 field_tracker: Тракер
252 252 field_subject: Относно
253 253 field_due_date: Крайна дата
254 254 field_assigned_to: Възложена на
255 255 field_priority: Приоритет
256 256 field_fixed_version: Планувана версия
257 257 field_user: Потребител
258 258 field_principal: Principal
259 259 field_role: Роля
260 260 field_homepage: Начална страница
261 261 field_is_public: Публичен
262 262 field_parent: Подпроект на
263 263 field_is_in_roadmap: Да се вижда ли в Пътна карта
264 264 field_login: Потребител
265 265 field_mail_notification: Известия по пощата
266 266 field_admin: Администратор
267 267 field_last_login_on: Последно свързване
268 268 field_language: Език
269 269 field_effective_date: Дата
270 270 field_password: Парола
271 271 field_new_password: Нова парола
272 272 field_password_confirmation: Потвърждение
273 273 field_version: Версия
274 274 field_type: Тип
275 275 field_host: Хост
276 276 field_port: Порт
277 277 field_account: Профил
278 278 field_base_dn: Base DN
279 279 field_attr_login: Атрибут Login
280 280 field_attr_firstname: Атрибут Първо име (Firstname)
281 281 field_attr_lastname: Атрибут Фамилия (Lastname)
282 282 field_attr_mail: Атрибут Email
283 283 field_onthefly: Динамично създаване на потребител
284 284 field_start_date: Начална дата
285 285 field_done_ratio: "% Прогрес"
286 286 field_auth_source: Начин на оторизация
287 287 field_hide_mail: Скрий e-mail адреса ми
288 288 field_comments: Коментар
289 289 field_url: Адрес
290 290 field_start_page: Начална страница
291 291 field_subproject: Подпроект
292 292 field_hours: Часове
293 293 field_activity: Дейност
294 294 field_spent_on: Дата
295 295 field_identifier: Идентификатор
296 296 field_is_filter: Използва се за филтър
297 297 field_issue_to: Свързана задача
298 298 field_delay: Отместване
299 299 field_assignable: Възможно е възлагане на задачи за тази роля
300 300 field_redirect_existing_links: Пренасочване на съществуващи линкове
301 301 field_estimated_hours: Изчислено време
302 302 field_column_names: Колони
303 303 field_time_entries: Log time
304 304 field_time_zone: Часова зона
305 305 field_searchable: С възможност за търсене
306 306 field_default_value: Стойност по подразбиране
307 307 field_comments_sorting: Сортиране на коментарите
308 308 field_parent_title: Родителска страница
309 309 field_editable: Editable
310 310 field_watcher: Наблюдател
311 311 field_identity_url: OpenID URL
312 312 field_content: Съдържание
313 313 field_group_by: Групиране на резултатите по
314 314 field_sharing: Sharing
315 315 field_parent_issue: Родителска задача
316 316 field_member_of_group: Член на група
317 317 field_assigned_to_role: Assignee's role
318 318 field_text: Текстово поле
319 319 field_visible: Видим
320 320 field_warn_on_leaving_unsaved: Предупреди ме, когато напускам страница с незаписано съдържание
321 321 field_issues_visibility: Видимост на задачите
322 322 field_is_private: Лична
323 323 field_commit_logs_encoding: Кодова таблица на съобщенията при поверяване
324 324 field_scm_path_encoding: Кодова таблица на пътищата (path)
325 325 field_path_to_repository: Път до хранилището
326 326 field_root_directory: Коренна директория (папка)
327 327 field_cvsroot: CVSROOT
328 328 field_cvs_module: Модул
329 329 field_repository_is_default: Главно хранилище
330 330 field_multiple: Избор на повече от една стойност
331 331 field_ldap_filter: LDAP филтър
332 332 field_core_fields: Стандартни полета
333 333 field_timeout: Таймаут (в секунди)
334 334
335 335 setting_app_title: Заглавие
336 336 setting_app_subtitle: Описание
337 337 setting_welcome_text: Допълнителен текст
338 338 setting_default_language: Език по подразбиране
339 339 setting_login_required: Изискване за вход в системата
340 340 setting_self_registration: Регистрация от потребители
341 341 setting_attachment_max_size: Максимална големина на прикачен файл
342 342 setting_issues_export_limit: Максимален брой задачи за експорт
343 343 setting_mail_from: E-mail адрес за емисии
344 344 setting_bcc_recipients: Получатели на скрито копие (bcc)
345 345 setting_plain_text_mail: само чист текст (без HTML)
346 346 setting_host_name: Хост
347 347 setting_text_formatting: Форматиране на текста
348 348 setting_wiki_compression: Компресиране на Wiki историята
349 349 setting_feeds_limit: Максимален брой записи в ATOM емисии
350 350 setting_default_projects_public: Новите проекти са публични по подразбиране
351 351 setting_autofetch_changesets: Автоматично извличане на ревизиите
352 352 setting_sys_api_enabled: Разрешаване на WS за управление
353 353 setting_commit_ref_keywords: Отбелязващи ключови думи
354 354 setting_commit_fix_keywords: Приключващи ключови думи
355 355 setting_autologin: Автоматичен вход
356 356 setting_date_format: Формат на датата
357 357 setting_time_format: Формат на часа
358 358 setting_cross_project_issue_relations: Релации на задачи между проекти
359 359 setting_issue_list_default_columns: Показвани колони по подразбиране
360 360 setting_repositories_encodings: Кодова таблица на прикачените файлове и хранилищата
361 361 setting_emails_header: Emails header
362 362 setting_emails_footer: Подтекст за e-mail
363 363 setting_protocol: Протокол
364 364 setting_per_page_options: Опции за страниране
365 365 setting_user_format: Потребителски формат
366 366 setting_activity_days_default: Брой дни показвани на таб Дейност
367 367 setting_display_subprojects_issues: Задачите от подпроектите по подразбиране се показват в главните проекти
368 368 setting_enabled_scm: Разрешена SCM
369 369 setting_mail_handler_body_delimiters: Отрязване на e-mail-ите след един от тези редове
370 370 setting_mail_handler_api_enabled: Разрешаване на WS за входящи e-mail-и
371 371 setting_mail_handler_api_key: API ключ
372 372 setting_sequential_project_identifiers: Генериране на последователни проектни идентификатори
373 373 setting_gravatar_enabled: Използване на портребителски икони от Gravatar
374 374 setting_gravatar_default: Подразбиращо се изображение от Gravatar
375 375 setting_diff_max_lines_displayed: Максимален брой показвани diff редове
376 376 setting_file_max_size_displayed: Максимален размер на текстовите файлове, показвани inline
377 377 setting_repository_log_display_limit: Максимален брой на показванете ревизии в лог файла
378 378 setting_openid: Рарешаване на OpenID вход и регистрация
379 379 setting_password_min_length: Минимална дължина на парола
380 380 setting_new_project_user_role_id: Роля, давана на потребител, създаващ проекти, който не е администратор
381 381 setting_default_projects_modules: Активирани модули по подразбиране за нов проект
382 382 setting_issue_done_ratio: Изчисление на процента на готови задачи с
383 383 setting_issue_done_ratio_issue_field: Използване на поле '% Прогрес'
384 384 setting_issue_done_ratio_issue_status: Използване на състоянието на задачите
385 385 setting_start_of_week: Първи ден на седмицата
386 386 setting_rest_api_enabled: Разрешаване на REST web сървис
387 387 setting_cache_formatted_text: Кеширане на форматираните текстове
388 388 setting_default_notification_option: Подразбиращ се начин за известяване
389 389 setting_commit_logtime_enabled: Разрешаване на отчитането на работното време
390 390 setting_commit_logtime_activity_id: Дейност при отчитане на работното време
391 391 setting_gantt_items_limit: Максимален брой обекти, които да се показват в мрежов график
392 392 setting_issue_group_assignment: Разрешено назначаването на задачи на групи
393 393 setting_default_issue_start_date_to_creation_date: Начална дата на новите задачи по подразбиране да бъде днешната дата
394 394 setting_commit_cross_project_ref: Отбелязване и приключване на задачи от други проекти, несвързани с конкретното хранилище
395 395 setting_unsubscribe: Потребителите могат да премахват профилите си
396 396 setting_session_lifetime: Максимален живот на сесиите
397 397 setting_session_timeout: Таймаут за неактивност преди прекратяване на сесиите
398 398 setting_thumbnails_enabled: Показване на миниатюри на прикачените изображения
399 399 setting_thumbnails_size: Размер на миниатюрите (в пиксели)
400 400
401 401 permission_add_project: Създаване на проект
402 402 permission_add_subprojects: Създаване на подпроекти
403 403 permission_edit_project: Редактиране на проект
404 404 permission_close_project: Затваряне / отваряне на проект
405 405 permission_select_project_modules: Избор на проектни модули
406 406 permission_manage_members: Управление на членовете (на екип)
407 407 permission_manage_project_activities: Управление на дейностите на проекта
408 408 permission_manage_versions: Управление на версиите
409 409 permission_manage_categories: Управление на категориите
410 410 permission_view_issues: Разглеждане на задачите
411 411 permission_add_issues: Добавяне на задачи
412 412 permission_edit_issues: Редактиране на задачи
413 413 permission_manage_issue_relations: Управление на връзките между задачите
414 414 permission_set_own_issues_private: Установяване на собствените задачи публични или лични
415 415 permission_set_issues_private: Установяване на задачите публични или лични
416 416 permission_add_issue_notes: Добавяне на бележки
417 417 permission_edit_issue_notes: Редактиране на бележки
418 418 permission_edit_own_issue_notes: Редактиране на собствени бележки
419 419 permission_move_issues: Преместване на задачи
420 420 permission_delete_issues: Изтриване на задачи
421 421 permission_manage_public_queries: Управление на публичните заявки
422 422 permission_save_queries: Запис на запитвания (queries)
423 423 permission_view_gantt: Разглеждане на мрежов график
424 424 permission_view_calendar: Разглеждане на календари
425 425 permission_view_issue_watchers: Разглеждане на списък с наблюдатели
426 426 permission_add_issue_watchers: Добавяне на наблюдатели
427 427 permission_delete_issue_watchers: Изтриване на наблюдатели
428 428 permission_log_time: Log spent time
429 429 permission_view_time_entries: Разглеждане на изразходваното време
430 430 permission_edit_time_entries: Редактиране на time logs
431 431 permission_edit_own_time_entries: Редактиране на собствените time logs
432 432 permission_manage_news: Управление на новини
433 433 permission_comment_news: Коментиране на новини
434 434 permission_manage_documents: Управление на документи
435 435 permission_view_documents: Разглеждане на документи
436 436 permission_manage_files: Управление на файлове
437 437 permission_view_files: Разглеждане на файлове
438 438 permission_manage_wiki: Управление на wiki
439 439 permission_rename_wiki_pages: Преименуване на wiki страници
440 440 permission_delete_wiki_pages: Изтриване на wiki страници
441 441 permission_view_wiki_pages: Разглеждане на wiki
442 442 permission_view_wiki_edits: Разглеждане на wiki история
443 443 permission_edit_wiki_pages: Редактиране на wiki страници
444 444 permission_delete_wiki_pages_attachments: Изтриване на прикачени файлове към wiki страници
445 445 permission_protect_wiki_pages: Заключване на wiki страници
446 446 permission_manage_repository: Управление на хранилища
447 447 permission_browse_repository: Разглеждане на хранилища
448 448 permission_view_changesets: Разглеждане на changesets
449 449 permission_commit_access: Поверяване
450 450 permission_manage_boards: Управление на boards
451 451 permission_view_messages: Разглеждане на съобщения
452 452 permission_add_messages: Публикуване на съобщения
453 453 permission_edit_messages: Редактиране на съобщения
454 454 permission_edit_own_messages: Редактиране на собствени съобщения
455 455 permission_delete_messages: Изтриване на съобщения
456 456 permission_delete_own_messages: Изтриване на собствени съобщения
457 457 permission_export_wiki_pages: Експорт на wiki страници
458 458 permission_manage_subtasks: Управление на подзадачите
459 459 permission_manage_related_issues: Управление на връзките между задачи и ревизии
460 460
461 461 project_module_issue_tracking: Тракинг
462 462 project_module_time_tracking: Отделяне на време
463 463 project_module_news: Новини
464 464 project_module_documents: Документи
465 465 project_module_files: Файлове
466 466 project_module_wiki: Wiki
467 467 project_module_repository: Хранилище
468 468 project_module_boards: Форуми
469 469 project_module_calendar: Календар
470 470 project_module_gantt: Мрежов график
471 471
472 472 label_user: Потребител
473 473 label_user_plural: Потребители
474 474 label_user_new: Нов потребител
475 475 label_user_anonymous: Анонимен
476 476 label_project: Проект
477 477 label_project_new: Нов проект
478 478 label_project_plural: Проекти
479 479 label_x_projects:
480 480 zero: 0 проекта
481 481 one: 1 проект
482 482 other: "%{count} проекта"
483 483 label_project_all: Всички проекти
484 484 label_project_latest: Последни проекти
485 485 label_issue: Задача
486 486 label_issue_new: Нова задача
487 487 label_issue_plural: Задачи
488 488 label_issue_view_all: Всички задачи
489 489 label_issues_by: "Задачи по %{value}"
490 490 label_issue_added: Добавена задача
491 491 label_issue_updated: Обновена задача
492 492 label_issue_note_added: Добавена бележка
493 493 label_issue_status_updated: Обновено състояние
494 494 label_issue_priority_updated: Обновен приоритет
495 495 label_document: Документ
496 496 label_document_new: Нов документ
497 497 label_document_plural: Документи
498 498 label_document_added: Добавен документ
499 499 label_role: Роля
500 500 label_role_plural: Роли
501 501 label_role_new: Нова роля
502 502 label_role_and_permissions: Роли и права
503 503 label_role_anonymous: Анонимен
504 504 label_role_non_member: Не член
505 505 label_member: Член
506 506 label_member_new: Нов член
507 507 label_member_plural: Членове
508 508 label_tracker: Тракер
509 509 label_tracker_plural: Тракери
510 510 label_tracker_new: Нов тракер
511 511 label_workflow: Работен процес
512 512 label_issue_status: Състояние на задача
513 513 label_issue_status_plural: Състояния на задачи
514 514 label_issue_status_new: Ново състояние
515 515 label_issue_category: Категория задача
516 516 label_issue_category_plural: Категории задачи
517 517 label_issue_category_new: Нова категория
518 518 label_custom_field: Потребителско поле
519 519 label_custom_field_plural: Потребителски полета
520 520 label_custom_field_new: Ново потребителско поле
521 521 label_enumerations: Списъци
522 522 label_enumeration_new: Нова стойност
523 523 label_information: Информация
524 524 label_information_plural: Информация
525 525 label_please_login: Вход
526 526 label_register: Регистрация
527 527 label_login_with_open_id_option: или вход чрез OpenID
528 528 label_password_lost: Забравена парола
529 529 label_home: Начало
530 530 label_my_page: Лична страница
531 531 label_my_account: Профил
532 532 label_my_projects: Проекти, в които участвам
533 533 label_my_page_block: Блокове в личната страница
534 534 label_administration: Администрация
535 535 label_login: Вход
536 536 label_logout: Изход
537 537 label_help: Помощ
538 538 label_reported_issues: Публикувани задачи
539 539 label_assigned_to_me_issues: Възложени на мен
540 540 label_last_login: Последно свързване
541 541 label_registered_on: Регистрация
542 542 label_activity: Дейност
543 543 label_overall_activity: Цялостна дейност
544 544 label_user_activity: "Активност на %{value}"
545 545 label_new: Нов
546 546 label_logged_as: Здравейте,
547 547 label_environment: Среда
548 548 label_authentication: Оторизация
549 549 label_auth_source: Начин на оторозация
550 550 label_auth_source_new: Нов начин на оторизация
551 551 label_auth_source_plural: Начини на оторизация
552 552 label_subproject_plural: Подпроекти
553 553 label_subproject_new: Нов подпроект
554 554 label_and_its_subprojects: "%{value} и неговите подпроекти"
555 555 label_min_max_length: Минимална - максимална дължина
556 556 label_list: Списък
557 557 label_date: Дата
558 558 label_integer: Целочислен
559 559 label_float: Дробно
560 560 label_boolean: Чекбокс
561 561 label_string: Текст
562 562 label_text: Дълъг текст
563 563 label_attribute: Атрибут
564 564 label_attribute_plural: Атрибути
565 565 label_download: "%{count} изтегляне"
566 566 label_download_plural: "%{count} изтегляния"
567 567 label_no_data: Няма изходни данни
568 568 label_change_status: Промяна на състоянието
569 569 label_history: История
570 570 label_attachment: Файл
571 571 label_attachment_new: Нов файл
572 572 label_attachment_delete: Изтриване
573 573 label_attachment_plural: Файлове
574 574 label_file_added: Добавен файл
575 575 label_report: Справка
576 576 label_report_plural: Справки
577 577 label_news: Новини
578 578 label_news_new: Добави
579 579 label_news_plural: Новини
580 580 label_news_latest: Последни новини
581 581 label_news_view_all: Виж всички
582 582 label_news_added: Добавена новина
583 583 label_news_comment_added: Добавен коментар към новина
584 584 label_settings: Настройки
585 585 label_overview: Общ изглед
586 586 label_version: Версия
587 587 label_version_new: Нова версия
588 588 label_version_plural: Версии
589 589 label_close_versions: Затваряне на завършените версии
590 590 label_confirmation: Одобрение
591 591 label_export_to: Експорт към
592 592 label_read: Read...
593 593 label_public_projects: Публични проекти
594 594 label_open_issues: отворена
595 595 label_open_issues_plural: отворени
596 596 label_closed_issues: затворена
597 597 label_closed_issues_plural: затворени
598 598 label_x_open_issues_abbr_on_total:
599 599 zero: 0 отворени / %{total}
600 600 one: 1 отворена / %{total}
601 601 other: "%{count} отворени / %{total}"
602 602 label_x_open_issues_abbr:
603 603 zero: 0 отворени
604 604 one: 1 отворена
605 605 other: "%{count} отворени"
606 606 label_x_closed_issues_abbr:
607 607 zero: 0 затворени
608 608 one: 1 затворена
609 609 other: "%{count} затворени"
610 610 label_x_issues:
611 611 zero: 0 задачи
612 612 one: 1 задача
613 613 other: "%{count} задачи"
614 614 label_total: Общо
615 615 label_permissions: Права
616 616 label_current_status: Текущо състояние
617 617 label_new_statuses_allowed: Позволени състояния
618 618 label_all: всички
619 619 label_none: никакви
620 620 label_nobody: никой
621 621 label_next: Следващ
622 622 label_previous: Предишен
623 623 label_used_by: Използва се от
624 624 label_details: Детайли
625 625 label_add_note: Добавяне на бележка
626 626 label_per_page: На страница
627 627 label_calendar: Календар
628 628 label_months_from: месеца от
629 629 label_gantt: Мрежов график
630 630 label_internal: Вътрешен
631 631 label_last_changes: "последни %{count} промени"
632 632 label_change_view_all: Виж всички промени
633 633 label_personalize_page: Персонализиране
634 634 label_comment: Коментар
635 635 label_comment_plural: Коментари
636 636 label_x_comments:
637 637 zero: 0 коментара
638 638 one: 1 коментар
639 639 other: "%{count} коментара"
640 640 label_comment_add: Добавяне на коментар
641 641 label_comment_added: Добавен коментар
642 642 label_comment_delete: Изтриване на коментари
643 643 label_query: Потребителска справка
644 644 label_query_plural: Потребителски справки
645 645 label_query_new: Нова заявка
646 646 label_my_queries: Моите заявки
647 647 label_filter_add: Добави филтър
648 648 label_filter_plural: Филтри
649 649 label_equals: е
650 650 label_not_equals: не е
651 651 label_in_less_than: след по-малко от
652 652 label_in_more_than: след повече от
653 653 label_greater_or_equal: ">="
654 654 label_less_or_equal: <=
655 655 label_between: между
656 656 label_in: в следващите
657 657 label_today: днес
658 658 label_all_time: всички
659 659 label_yesterday: вчера
660 660 label_this_week: тази седмица
661 661 label_last_week: последната седмица
662 662 label_last_n_days: "последните %{count} дни"
663 663 label_this_month: текущия месец
664 664 label_last_month: последния месец
665 665 label_this_year: текущата година
666 666 label_date_range: Период
667 667 label_less_than_ago: преди по-малко от
668 668 label_more_than_ago: преди повече от
669 669 label_ago: преди
670 670 label_contains: съдържа
671 671 label_not_contains: не съдържа
672 672 label_day_plural: дни
673 673 label_repository: Хранилище
674 674 label_repository_new: Ново хранилище
675 675 label_repository_plural: Хранилища
676 676 label_browse: Разглеждане
677 677 label_modification: "%{count} промяна"
678 678 label_modification_plural: "%{count} промени"
679 679 label_branch: работен вариант
680 680 label_tag: Версия
681 681 label_revision: Ревизия
682 682 label_revision_plural: Ревизии
683 683 label_revision_id: Ревизия %{value}
684 684 label_associated_revisions: Асоциирани ревизии
685 685 label_added: добавено
686 686 label_modified: променено
687 687 label_copied: копирано
688 688 label_renamed: преименувано
689 689 label_deleted: изтрито
690 690 label_latest_revision: Последна ревизия
691 691 label_latest_revision_plural: Последни ревизии
692 692 label_view_revisions: Виж ревизиите
693 693 label_view_all_revisions: Разглеждане на всички ревизии
694 694 label_max_size: Максимална големина
695 695 label_sort_highest: Премести най-горе
696 696 label_sort_higher: Премести по-горе
697 697 label_sort_lower: Премести по-долу
698 698 label_sort_lowest: Премести най-долу
699 699 label_roadmap: Пътна карта
700 700 label_roadmap_due_in: "Излиза след %{value}"
701 701 label_roadmap_overdue: "%{value} закъснение"
702 702 label_roadmap_no_issues: Няма задачи за тази версия
703 703 label_search: Търсене
704 704 label_result_plural: Pезултати
705 705 label_all_words: Всички думи
706 706 label_wiki: Wiki
707 707 label_wiki_edit: Wiki редакция
708 708 label_wiki_edit_plural: Wiki редакции
709 709 label_wiki_page: Wiki страница
710 710 label_wiki_page_plural: Wiki страници
711 711 label_index_by_title: Индекс
712 712 label_index_by_date: Индекс по дата
713 713 label_current_version: Текуща версия
714 714 label_preview: Преглед
715 715 label_feed_plural: Емисии
716 716 label_changes_details: Подробни промени
717 717 label_issue_tracking: Тракинг
718 718 label_spent_time: Отделено време
719 719 label_overall_spent_time: Общо употребено време
720 720 label_f_hour: "%{value} час"
721 721 label_f_hour_plural: "%{value} часа"
722 722 label_time_tracking: Отделяне на време
723 723 label_change_plural: Промени
724 724 label_statistics: Статистики
725 725 label_commits_per_month: Ревизии по месеци
726 726 label_commits_per_author: Ревизии по автор
727 727 label_diff: diff
728 728 label_view_diff: Виж разликите
729 729 label_diff_inline: хоризонтално
730 730 label_diff_side_by_side: вертикално
731 731 label_options: Опции
732 732 label_copy_workflow_from: Копирай работния процес от
733 733 label_permissions_report: Справка за права
734 734 label_watched_issues: Наблюдавани задачи
735 735 label_related_issues: Свързани задачи
736 736 label_applied_status: Установено състояние
737 737 label_loading: Зареждане...
738 738 label_relation_new: Нова релация
739 739 label_relation_delete: Изтриване на релация
740 740 label_relates_to: свързана със
741 741 label_duplicates: дублира
742 742 label_duplicated_by: дублирана от
743 743 label_blocks: блокира
744 744 label_blocked_by: блокирана от
745 745 label_precedes: предшества
746 746 label_follows: изпълнява се след
747 747 label_end_to_start: край към начало
748 748 label_end_to_end: край към край
749 749 label_start_to_start: начало към начало
750 750 label_start_to_end: начало към край
751 751 label_stay_logged_in: Запомни ме
752 752 label_disabled: забранено
753 753 label_show_completed_versions: Показване на реализирани версии
754 754 label_me: аз
755 755 label_board: Форум
756 756 label_board_new: Нов форум
757 757 label_board_plural: Форуми
758 758 label_board_locked: Заключена
759 759 label_board_sticky: Sticky
760 760 label_topic_plural: Теми
761 761 label_message_plural: Съобщения
762 762 label_message_last: Последно съобщение
763 763 label_message_new: Нова тема
764 764 label_message_posted: Добавено съобщение
765 765 label_reply_plural: Отговори
766 766 label_send_information: Изпращане на информацията до потребителя
767 767 label_year: Година
768 768 label_month: Месец
769 769 label_week: Седмица
770 770 label_date_from: От
771 771 label_date_to: До
772 772 label_language_based: В зависимост от езика
773 773 label_sort_by: "Сортиране по %{value}"
774 774 label_send_test_email: Изпращане на тестов e-mail
775 775 label_feeds_access_key: RSS access ключ
776 776 label_missing_feeds_access_key: Липсващ RSS ключ за достъп
777 777 label_feeds_access_key_created_on: "%{value} от създаването на RSS ключа"
778 778 label_module_plural: Модули
779 779 label_added_time_by: "Публикувана от %{author} преди %{age}"
780 780 label_updated_time_by: "Обновена от %{author} преди %{age}"
781 781 label_updated_time: "Обновена преди %{value}"
782 782 label_jump_to_a_project: Проект...
783 783 label_file_plural: Файлове
784 784 label_changeset_plural: Ревизии
785 785 label_default_columns: По подразбиране
786 786 label_no_change_option: (Без промяна)
787 787 label_bulk_edit_selected_issues: Групово редактиране на задачи
788 788 label_bulk_edit_selected_time_entries: Групово редактиране на записи за използвано време
789 789 label_theme: Тема
790 790 label_default: По подразбиране
791 791 label_search_titles_only: Само в заглавията
792 792 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
793 793 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
794 794 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
795 795 label_user_mail_option_only_my_events: Само за неща, в които съм включен/а
796 796 label_user_mail_option_only_assigned: Само за неща, назначени на мен
797 797 label_user_mail_option_only_owner: Само за неща, на които аз съм собственик
798 798 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
799 799 label_registration_activation_by_email: активиране на профила по email
800 800 label_registration_manual_activation: ръчно активиране
801 801 label_registration_automatic_activation: автоматично активиране
802 802 label_display_per_page: "На страница по: %{value}"
803 803 label_age: Възраст
804 804 label_change_properties: Промяна на настройки
805 805 label_general: Основни
806 806 label_more: Още
807 807 label_scm: SCM (Система за контрол на версиите)
808 808 label_plugins: Плъгини
809 809 label_ldap_authentication: LDAP оторизация
810 810 label_downloads_abbr: D/L
811 811 label_optional_description: Незадължително описание
812 812 label_add_another_file: Добавяне на друг файл
813 813 label_preferences: Предпочитания
814 814 label_chronological_order: Хронологичен ред
815 815 label_reverse_chronological_order: Обратен хронологичен ред
816 816 label_planning: Планиране
817 817 label_incoming_emails: Входящи e-mail-и
818 818 label_generate_key: Генериране на ключ
819 819 label_issue_watchers: Наблюдатели
820 820 label_example: Пример
821 821 label_display: Display
822 822 label_sort: Сортиране
823 823 label_ascending: Нарастващ
824 824 label_descending: Намаляващ
825 825 label_date_from_to: От %{start} до %{end}
826 826 label_wiki_content_added: Wiki страница беше добавена
827 827 label_wiki_content_updated: Wiki страница беше обновена
828 828 label_group: Група
829 829 label_group_plural: Групи
830 830 label_group_new: Нова група
831 831 label_time_entry_plural: Използвано време
832 832 label_version_sharing_none: Не споделен
833 833 label_version_sharing_descendants: С подпроекти
834 834 label_version_sharing_hierarchy: С проектна йерархия
835 835 label_version_sharing_tree: С дърво на проектите
836 836 label_version_sharing_system: С всички проекти
837 837 label_update_issue_done_ratios: Обновяване на процента на завършените задачи
838 838 label_copy_source: Източник
839 839 label_copy_target: Цел
840 840 label_copy_same_as_target: Също като целта
841 841 label_display_used_statuses_only: Показване само на състоянията, използвани от този тракер
842 842 label_api_access_key: API ключ за достъп
843 843 label_missing_api_access_key: Липсващ API ключ
844 844 label_api_access_key_created_on: API ключ за достъп е създаден преди %{value}
845 845 label_profile: Профил
846 846 label_subtask_plural: Подзадачи
847 847 label_project_copy_notifications: Изпращане на Send e-mail известия по време на копирането на проекта
848 848 label_principal_search: "Търсене на потребител или група:"
849 849 label_user_search: "Търсене на потребител:"
850 850 label_additional_workflow_transitions_for_author: Позволени са допълнителни преходи, когато потребителят е авторът
851 851 label_additional_workflow_transitions_for_assignee: Позволени са допълнителни преходи, когато потребителят е назначеният към задачата
852 852 label_issues_visibility_all: Всички задачи
853 853 label_issues_visibility_public: Всички не-лични задачи
854 854 label_issues_visibility_own: Задачи, създадени от или назначени на потребителя
855 855 label_git_report_last_commit: Извеждане на последното поверяване за файлове и папки
856 856 label_parent_revision: Ревизия родител
857 857 label_child_revision: Ревизия наследник
858 858 label_export_options: "%{export_format} опции за експорт"
859 859 label_copy_attachments: Копиране на прикачените файлове
860 860 label_item_position: "%{position}/%{count}"
861 861 label_completed_versions: Завършени версии
862 862 label_search_for_watchers: Търсене на потребители за наблюдатели
863 863 label_session_expiration: Изтичане на сесиите
864 864 label_show_closed_projects: Разглеждане на затворени проекти
865 865
866 866 button_login: Вход
867 867 button_submit: Прикачване
868 868 button_save: Запис
869 869 button_check_all: Избор на всички
870 870 button_uncheck_all: Изчистване на всички
871 871 button_collapse_all: Скриване всички
872 872 button_expand_all: Разгъване всички
873 873 button_delete: Изтриване
874 874 button_create: Създаване
875 875 button_create_and_continue: Създаване и продължаване
876 876 button_test: Тест
877 877 button_edit: Редакция
878 878 button_edit_associated_wikipage: "Редактиране на асоциираната Wiki страница: %{page_title}"
879 879 button_add: Добавяне
880 880 button_change: Промяна
881 881 button_apply: Приложи
882 882 button_clear: Изчисти
883 883 button_lock: Заключване
884 884 button_unlock: Отключване
885 885 button_download: Изтегляне
886 886 button_list: Списък
887 887 button_view: Преглед
888 888 button_move: Преместване
889 889 button_move_and_follow: Преместване и продължаване
890 890 button_back: Назад
891 891 button_cancel: Отказ
892 892 button_activate: Активация
893 893 button_sort: Сортиране
894 894 button_log_time: Отделяне на време
895 895 button_rollback: Върни се към тази ревизия
896 896 button_watch: Наблюдаване
897 897 button_unwatch: Край на наблюдението
898 898 button_reply: Отговор
899 899 button_archive: Архивиране
900 900 button_unarchive: Разархивиране
901 901 button_reset: Генериране наново
902 902 button_rename: Преименуване
903 903 button_change_password: Промяна на парола
904 904 button_copy: Копиране
905 905 button_copy_and_follow: Копиране и продължаване
906 906 button_annotate: Анотация
907 907 button_update: Обновяване
908 908 button_configure: Конфигуриране
909 909 button_quote: Цитат
910 910 button_duplicate: Дублиране
911 911 button_show: Показване
912 912 button_edit_section: Редактиране на тази секция
913 913 button_export: Експорт
914 914 button_delete_my_account: Премахване на моя профил
915 915 button_close: Затваряне
916 916 button_reopen: Отваряне
917 917
918 918 status_active: активен
919 919 status_registered: регистриран
920 920 status_locked: заключен
921 921
922 922 project_status_active: активен
923 923 project_status_closed: затворен
924 924 project_status_archived: архивиран
925 925
926 926 version_status_open: отворена
927 927 version_status_locked: заключена
928 928 version_status_closed: затворена
929 929
930 930 field_active: Активен
931 931
932 932 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
933 933 text_regexp_info: пр. ^[A-Z0-9]+$
934 934 text_min_max_length_info: 0 - без ограничения
935 935 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
936 936 text_subprojects_destroy_warning: "Неговите подпроекти: %{value} също ще бъдат изтрити."
937 937 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
938 938 text_are_you_sure: Сигурни ли сте?
939 939 text_are_you_sure_with_children: Изтриване на задачата и нейните подзадачи?
940 940 text_journal_changed: "%{label} променен от %{old} на %{new}"
941 941 text_journal_changed_no_detail: "%{label} променен"
942 942 text_journal_set_to: "%{label} установен на %{value}"
943 943 text_journal_deleted: "%{label} изтрит (%{old})"
944 944 text_journal_added: "Добавено %{label} %{value}"
945 945 text_tip_issue_begin_day: задача, започваща този ден
946 946 text_tip_issue_end_day: задача, завършваща този ден
947 947 text_tip_issue_begin_end_day: задача, започваща и завършваща този ден
948 948 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.<br />Промяна след създаването му не е възможна.'
949 949 text_caracters_maximum: "До %{count} символа."
950 950 text_caracters_minimum: "Минимум %{count} символа."
951 951 text_length_between: "От %{min} до %{max} символа."
952 952 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
953 953 text_unallowed_characters: Непозволени символи
954 954 text_comma_separated: Позволено е изброяване (с разделител запетая).
955 955 text_line_separated: Позволени са много стойности (по едно на ред).
956 956 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
957 957 text_issue_added: "Публикувана е нова задача с номер %{id} (от %{author})."
958 958 text_issue_updated: "Задача %{id} е обновена (от %{author})."
959 959 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
960 960 text_issue_category_destroy_question: "Има задачи (%{count}) обвързани с тази категория. Какво ще изберете?"
961 961 text_issue_category_destroy_assignments: Премахване на връзките с категорията
962 962 text_issue_category_reassign_to: Преобвързване с категория
963 963 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
964 964 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, състояния на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
965 965 text_load_default_configuration: Зареждане на примерна информация
966 966 text_status_changed_by_changeset: "Приложено с ревизия %{value}."
967 967 text_time_logged_by_changeset: Приложено в ревизия %{value}.
968 968 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
969 969 text_issues_destroy_descendants_confirmation: Тази операция ще премахне и %{count} подзадача(и).
970 970 text_time_entries_destroy_confirmation: Сигурен ли сте, че изтриете избраните записи за изразходвано време?
971 971 text_select_project_modules: 'Изберете активните модули за този проект:'
972 972 text_default_administrator_account_changed: Сменен фабричния администраторски профил
973 973 text_file_repository_writable: Възможност за писане в хранилището с файлове
974 974 text_plugin_assets_writable: Папката на приставките е разрешена за запис
975 975 text_rmagick_available: Наличен RMagick (по избор)
976 976 text_destroy_time_entries_question: "%{hours} часа са отделени на задачите, които искате да изтриете. Какво избирате?"
977 977 text_destroy_time_entries: Изтриване на отделеното време
978 978 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
979 979 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
980 980 text_user_wrote: "%{value} написа:"
981 981 text_enumeration_destroy_question: "%{count} обекта са свързани с тази стойност."
982 982 text_enumeration_category_reassign_to: 'Пресвържете ги към тази стойност:'
983 983 text_email_delivery_not_configured: "Изпращането на e-mail-и не е конфигурирано и известията не са разрешени.\nКонфигурирайте вашия SMTP сървър в config/configuration.yml и рестартирайте Redmine, за да ги разрешите."
984 984 text_repository_usernames_mapping: "Изберете или променете потребителите в Redmine, съответстващи на потребителите в дневника на хранилището (repository).\nПотребителите с еднакви имена в Redmine и хранилищата се съвместяват автоматично."
985 985 text_diff_truncated: '... Този diff не е пълен, понеже е надхвърля максималния размер, който може да бъде показан.'
986 986 text_custom_field_possible_values_info: 'Една стойност на ред'
987 987 text_wiki_page_destroy_question: Тази страница има %{descendants} страници деца и descendant(s). Какво желаете да правите?
988 988 text_wiki_page_nullify_children: Запазване на тези страници като коренни страници
989 989 text_wiki_page_destroy_children: Изтриване на страниците деца и всички техни descendants
990 990 text_wiki_page_reassign_children: Преназначаване на страниците деца на тази родителска страница
991 991 text_own_membership_delete_confirmation: "Вие сте на път да премахнете някои или всички ваши разрешения и е възможно след това да не можете да редактирате този проект.\nСигурен ли сте, че искате да продължите?"
992 992 text_zoom_in: Увеличаване
993 993 text_zoom_out: Намаляване
994 994 text_warn_on_leaving_unsaved: Страницата съдържа незаписано съдържание, което може да бъде загубено, ако я напуснете.
995 995 text_scm_path_encoding_note: "По подразбиране: UTF-8"
996 996 text_git_repository_note: Празно и локално хранилище (например /gitrepo, c:\gitrepo)
997 997 text_mercurial_repository_note: Локално хранилище (например /hgrepo, c:\hgrepo)
998 998 text_scm_command: SCM команда
999 999 text_scm_command_version: Версия
1000 1000 text_scm_config: Можете да конфигурирате SCM командите в config/configuration.yml. За да активирате промените, рестартирайте Redmine.
1001 1001 text_scm_command_not_available: SCM командата не е налична или достъпна. Проверете конфигурацията в административния панел.
1002 1002 text_issue_conflict_resolution_overwrite: Прилагане на моите промени (предишните коментари ще бъдат запазени, но някои други промени може да бъдат презаписани)
1003 1003 text_issue_conflict_resolution_add_notes: Добавяне на моите коментари и отхвърляне на другите мои промени
1004 1004 text_issue_conflict_resolution_cancel: Отхвърляне на всички мои промени и презареждане на %{link}
1005 1005 text_account_destroy_confirmation: "Сигурен/на ли сте, че желаете да продължите?\nВашият профил ще бъде премахнат без възможност за възстановяване."
1006 1006 text_session_expiration_settings: "Внимание: промяната на тези установяваноя може да прекрати всички активни сесии, включително и вашата."
1007 1007 text_project_closed: Този проект е затворен и е само за четене.
1008 1008
1009 1009 default_role_manager: Мениджър
1010 1010 default_role_developer: Разработчик
1011 1011 default_role_reporter: Публикуващ
1012 1012 default_tracker_bug: Грешка
1013 1013 default_tracker_feature: Функционалност
1014 1014 default_tracker_support: Поддръжка
1015 1015 default_issue_status_new: Нова
1016 1016 default_issue_status_in_progress: Изпълнение
1017 1017 default_issue_status_resolved: Приключена
1018 1018 default_issue_status_feedback: Обратна връзка
1019 1019 default_issue_status_closed: Затворена
1020 1020 default_issue_status_rejected: Отхвърлена
1021 1021 default_doc_category_user: Документация за потребителя
1022 1022 default_doc_category_tech: Техническа документация
1023 1023 default_priority_low: Нисък
1024 1024 default_priority_normal: Нормален
1025 1025 default_priority_high: Висок
1026 1026 default_priority_urgent: Спешен
1027 1027 default_priority_immediate: Веднага
1028 1028 default_activity_design: Дизайн
1029 1029 default_activity_development: Разработка
1030 1030
1031 1031 enumeration_issue_priorities: Приоритети на задачи
1032 1032 enumeration_doc_categories: Категории документи
1033 1033 enumeration_activities: Дейности (time tracking)
1034 1034 enumeration_system_activity: Системна активност
1035 1035 description_filter: Филтър
1036 1036 description_search: Търсене
1037 1037 description_choose_project: Проекти
1038 1038 description_project_scope: Обхват на търсенето
1039 1039 description_notes: Бележки
1040 1040 description_message_content: Съдържание на съобщението
1041 1041 description_query_sort_criteria_attribute: Атрибут на сортиране
1042 1042 description_query_sort_criteria_direction: Посока на сортиране
1043 1043 description_user_mail_notification: Конфигурация известията по пощата
1044 1044 description_available_columns: Налични колони
1045 1045 description_selected_columns: Избрани колони
1046 1046 description_issue_category_reassign: Изберете категория
1047 1047 description_wiki_subpages_reassign: Изберете нова родителска страница
1048 1048 description_all_columns: Всички колони
1049 1049 description_date_range_list: Изберете диапазон от списъка
1050 1050 description_date_range_interval: Изберете диапазон чрез задаване на начална и крайна дати
1051 1051 description_date_from: Въведете начална дата
1052 1052 description_date_to: Въведете крайна дата
1053 label_status_transitions: Status transitions
1054 label_fields_permissions: Fields permissions
1055 label_readonly: Read-only
1056 label_required: Required
@@ -1,1068 +1,1072
1 1 #Ernad Husremovic hernad@bring.out.ba
2 2
3 3 bs:
4 4 direction: ltr
5 5 date:
6 6 formats:
7 7 default: "%d.%m.%Y"
8 8 short: "%e. %b"
9 9 long: "%e. %B %Y"
10 10 only_day: "%e"
11 11
12 12
13 13 day_names: [Nedjelja, Ponedjeljak, Utorak, Srijeda, Četvrtak, Petak, Subota]
14 14 abbr_day_names: [Ned, Pon, Uto, Sri, Čet, Pet, Sub]
15 15
16 16 month_names: [~, Januar, Februar, Mart, April, Maj, Jun, Jul, Avgust, Septembar, Oktobar, Novembar, Decembar]
17 17 abbr_month_names: [~, Jan, Feb, Mar, Apr, Maj, Jun, Jul, Avg, Sep, Okt, Nov, Dec]
18 18 order:
19 19 - :day
20 20 - :month
21 21 - :year
22 22
23 23 time:
24 24 formats:
25 25 default: "%A, %e. %B %Y, %H:%M"
26 26 short: "%e. %B, %H:%M Uhr"
27 27 long: "%A, %e. %B %Y, %H:%M"
28 28 time: "%H:%M"
29 29
30 30 am: "prijepodne"
31 31 pm: "poslijepodne"
32 32
33 33 datetime:
34 34 distance_in_words:
35 35 half_a_minute: "pola minute"
36 36 less_than_x_seconds:
37 37 one: "manje od 1 sekunde"
38 38 other: "manje od %{count} sekudni"
39 39 x_seconds:
40 40 one: "1 sekunda"
41 41 other: "%{count} sekundi"
42 42 less_than_x_minutes:
43 43 one: "manje od 1 minute"
44 44 other: "manje od %{count} minuta"
45 45 x_minutes:
46 46 one: "1 minuta"
47 47 other: "%{count} minuta"
48 48 about_x_hours:
49 49 one: "oko 1 sahat"
50 50 other: "oko %{count} sahata"
51 51 x_hours:
52 52 one: "1 hour"
53 53 other: "%{count} hours"
54 54 x_days:
55 55 one: "1 dan"
56 56 other: "%{count} dana"
57 57 about_x_months:
58 58 one: "oko 1 mjesec"
59 59 other: "oko %{count} mjeseci"
60 60 x_months:
61 61 one: "1 mjesec"
62 62 other: "%{count} mjeseci"
63 63 about_x_years:
64 64 one: "oko 1 godine"
65 65 other: "oko %{count} godina"
66 66 over_x_years:
67 67 one: "preko 1 godine"
68 68 other: "preko %{count} godina"
69 69 almost_x_years:
70 70 one: "almost 1 year"
71 71 other: "almost %{count} years"
72 72
73 73
74 74 number:
75 75 format:
76 76 precision: 2
77 77 separator: ','
78 78 delimiter: '.'
79 79 currency:
80 80 format:
81 81 unit: 'KM'
82 82 format: '%u %n'
83 83 separator:
84 84 delimiter:
85 85 precision:
86 86 percentage:
87 87 format:
88 88 delimiter: ""
89 89 precision:
90 90 format:
91 91 delimiter: ""
92 92 human:
93 93 format:
94 94 delimiter: ""
95 95 precision: 3
96 96 storage_units:
97 97 format: "%n %u"
98 98 units:
99 99 byte:
100 100 one: "Byte"
101 101 other: "Bytes"
102 102 kb: "KB"
103 103 mb: "MB"
104 104 gb: "GB"
105 105 tb: "TB"
106 106
107 107 # Used in array.to_sentence.
108 108 support:
109 109 array:
110 110 sentence_connector: "i"
111 111 skip_last_comma: false
112 112
113 113 activerecord:
114 114 errors:
115 115 template:
116 116 header:
117 117 one: "1 error prohibited this %{model} from being saved"
118 118 other: "%{count} errors prohibited this %{model} from being saved"
119 119 messages:
120 120 inclusion: "nije uključeno u listu"
121 121 exclusion: "je rezervisano"
122 122 invalid: "nije ispravno"
123 123 confirmation: "ne odgovara potvrdi"
124 124 accepted: "mora se prihvatiti"
125 125 empty: "ne može biti prazno"
126 126 blank: "ne može biti znak razmaka"
127 127 too_long: "je predugačko"
128 128 too_short: "je prekratko"
129 129 wrong_length: "je pogrešne dužine"
130 130 taken: "već je zauzeto"
131 131 not_a_number: "nije broj"
132 132 not_a_date: "nije ispravan datum"
133 133 greater_than: "mora bit veći od %{count}"
134 134 greater_than_or_equal_to: "mora bit veći ili jednak %{count}"
135 135 equal_to: "mora biti jednak %{count}"
136 136 less_than: "mora biti manji od %{count}"
137 137 less_than_or_equal_to: "mora bit manji ili jednak %{count}"
138 138 odd: "mora biti neparan"
139 139 even: "mora biti paran"
140 140 greater_than_start_date: "mora biti veći nego početni datum"
141 141 not_same_project: "ne pripada istom projektu"
142 142 circular_dependency: "Ova relacija stvar cirkularnu zavisnost"
143 143 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
144 144
145 145 actionview_instancetag_blank_option: Molimo odaberite
146 146
147 147 general_text_No: 'Da'
148 148 general_text_Yes: 'Ne'
149 149 general_text_no: 'ne'
150 150 general_text_yes: 'da'
151 151 general_lang_name: 'Bosanski'
152 152 general_csv_separator: ','
153 153 general_csv_decimal_separator: '.'
154 154 general_csv_encoding: UTF-8
155 155 general_pdf_encoding: UTF-8
156 156 general_first_day_of_week: '7'
157 157
158 158 notice_account_activated: Vaš nalog je aktiviran. Možete se prijaviti.
159 159 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
160 160 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
161 161 notice_account_password_updated: Lozinka je uspješno promjenjena.
162 162 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
163 163 notice_account_register_done: Nalog je uspješno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
164 164 notice_account_unknown_email: Nepoznati korisnik.
165 165 notice_account_updated: Nalog je uspješno promjenen.
166 166 notice_account_wrong_password: Pogrešna lozinka
167 167 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promjenim šifru.
168 168 notice_default_data_loaded: Podrazumjevana konfiguracija uspječno učitana.
169 169 notice_email_error: Došlo je do greške pri slanju emaila (%{value})
170 170 notice_email_sent: "Email je poslan %{value}"
171 171 notice_failed_to_save_issues: "Neuspješno snimanje %{count} aktivnosti na %{total} izabrano: %{ids}."
172 172 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan.
173 173 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
174 174 notice_locking_conflict: "Konflikt: podaci su izmjenjeni od strane drugog korisnika."
175 175 notice_no_issue_selected: "Nijedna aktivnost nije izabrana! Molim, izaberite aktivnosti koje želite za ispravljate."
176 176 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
177 177 notice_successful_connection: Uspješna konekcija.
178 178 notice_successful_create: Uspješno kreiranje.
179 179 notice_successful_delete: Brisanje izvršeno.
180 180 notice_successful_update: Promjene uspješno izvršene.
181 181
182 182 error_can_t_load_default_data: "Podrazumjevane postavke se ne mogu učitati %{value}"
183 183 error_scm_command_failed: "Desila se greška pri pristupu repozitoriju: %{value}"
184 184 error_scm_not_found: "Unos i/ili revizija ne postoji u repozitoriju."
185 185
186 186 error_scm_annotate: "Ova stavka ne postoji ili nije označena."
187 187 error_issue_not_found_in_project: 'Aktivnost nije nađena ili ne pripada ovom projektu'
188 188
189 189 warning_attachments_not_saved: "%{count} fajl(ovi) ne mogu biti snimljen(i)."
190 190
191 191 mail_subject_lost_password: "Vaša %{value} lozinka"
192 192 mail_body_lost_password: 'Za promjenu lozinke, kliknite na sljedeći link:'
193 193 mail_subject_register: "Aktivirajte %{value} vaš korisnički račun"
194 194 mail_body_register: 'Za aktivaciju vašeg korisničkog računa, kliknite na sljedeći link:'
195 195 mail_body_account_information_external: "Možete koristiti vaš %{value} korisnički račun za prijavu na sistem."
196 196 mail_body_account_information: Informacija o vašem korisničkom računu
197 197 mail_subject_account_activation_request: "%{value} zahtjev za aktivaciju korisničkog računa"
198 198 mail_body_account_activation_request: "Novi korisnik (%{value}) se registrovao. Korisnički račun čeka vaše odobrenje za aktivaciju:"
199 199 mail_subject_reminder: "%{count} aktivnost(i) u kašnjenju u narednim %{days} danima"
200 200 mail_body_reminder: "%{count} aktivnost(i) koje su dodjeljenje vama u narednim %{days} danima:"
201 201
202 202 gui_validation_error: 1 greška
203 203 gui_validation_error_plural: "%{count} grešaka"
204 204
205 205 field_name: Ime
206 206 field_description: Opis
207 207 field_summary: Pojašnjenje
208 208 field_is_required: Neophodno popuniti
209 209 field_firstname: Ime
210 210 field_lastname: Prezime
211 211 field_mail: Email
212 212 field_filename: Fajl
213 213 field_filesize: Veličina
214 214 field_downloads: Downloadi
215 215 field_author: Autor
216 216 field_created_on: Kreirano
217 217 field_updated_on: Izmjenjeno
218 218 field_field_format: Format
219 219 field_is_for_all: Za sve projekte
220 220 field_possible_values: Moguće vrijednosti
221 221 field_regexp: '"Regularni izraz"'
222 222 field_min_length: Minimalna veličina
223 223 field_max_length: Maksimalna veličina
224 224 field_value: Vrijednost
225 225 field_category: Kategorija
226 226 field_title: Naslov
227 227 field_project: Projekat
228 228 field_issue: Aktivnost
229 229 field_status: Status
230 230 field_notes: Bilješke
231 231 field_is_closed: Aktivnost zatvorena
232 232 field_is_default: Podrazumjevana vrijednost
233 233 field_tracker: Područje aktivnosti
234 234 field_subject: Subjekat
235 235 field_due_date: Završiti do
236 236 field_assigned_to: Dodijeljeno
237 237 field_priority: Prioritet
238 238 field_fixed_version: Ciljna verzija
239 239 field_user: Korisnik
240 240 field_role: Uloga
241 241 field_homepage: Naslovna strana
242 242 field_is_public: Javni
243 243 field_parent: Podprojekt od
244 244 field_is_in_roadmap: Aktivnosti prikazane u planu realizacije
245 245 field_login: Prijava
246 246 field_mail_notification: Email notifikacije
247 247 field_admin: Administrator
248 248 field_last_login_on: Posljednja konekcija
249 249 field_language: Jezik
250 250 field_effective_date: Datum
251 251 field_password: Lozinka
252 252 field_new_password: Nova lozinka
253 253 field_password_confirmation: Potvrda
254 254 field_version: Verzija
255 255 field_type: Tip
256 256 field_host: Host
257 257 field_port: Port
258 258 field_account: Korisnički račun
259 259 field_base_dn: Base DN
260 260 field_attr_login: Attribut za prijavu
261 261 field_attr_firstname: Attribut za ime
262 262 field_attr_lastname: Atribut za prezime
263 263 field_attr_mail: Atribut za email
264 264 field_onthefly: 'Kreiranje korisnika "On-the-fly"'
265 265 field_start_date: Početak
266 266 field_done_ratio: "% Realizovano"
267 267 field_auth_source: Mod za authentifikaciju
268 268 field_hide_mail: Sakrij moju email adresu
269 269 field_comments: Komentar
270 270 field_url: URL
271 271 field_start_page: Početna stranica
272 272 field_subproject: Podprojekat
273 273 field_hours: Sahata
274 274 field_activity: Operacija
275 275 field_spent_on: Datum
276 276 field_identifier: Identifikator
277 277 field_is_filter: Korišteno kao filter
278 278 field_issue_to: Povezana aktivnost
279 279 field_delay: Odgađanje
280 280 field_assignable: Aktivnosti dodijeljene ovoj ulozi
281 281 field_redirect_existing_links: Izvrši redirekciju postojećih linkova
282 282 field_estimated_hours: Procjena vremena
283 283 field_column_names: Kolone
284 284 field_time_zone: Vremenska zona
285 285 field_searchable: Pretraživo
286 286 field_default_value: Podrazumjevana vrijednost
287 287 field_comments_sorting: Prikaži komentare
288 288 field_parent_title: 'Stranica "roditelj"'
289 289 field_editable: Može se mijenjati
290 290 field_watcher: Posmatrač
291 291 field_identity_url: OpenID URL
292 292 field_content: Sadržaj
293 293
294 294 setting_app_title: Naslov aplikacije
295 295 setting_app_subtitle: Podnaslov aplikacije
296 296 setting_welcome_text: Tekst dobrodošlice
297 297 setting_default_language: Podrazumjevani jezik
298 298 setting_login_required: Authentifikacija neophodna
299 299 setting_self_registration: Samo-registracija
300 300 setting_attachment_max_size: Maksimalna veličina prikačenog fajla
301 301 setting_issues_export_limit: Limit za eksport aktivnosti
302 302 setting_mail_from: Mail adresa - pošaljilac
303 303 setting_bcc_recipients: '"BCC" (blind carbon copy) primaoci '
304 304 setting_plain_text_mail: Email sa običnim tekstom (bez HTML-a)
305 305 setting_host_name: Ime hosta i putanja
306 306 setting_text_formatting: Formatiranje teksta
307 307 setting_wiki_compression: Kompresija Wiki istorije
308 308
309 309 setting_feeds_limit: 'Limit za "RSS" feed-ove'
310 310 setting_default_projects_public: Podrazumjeva se da je novi projekat javni
311 311 setting_autofetch_changesets: 'Automatski kupi "commit"-e'
312 312 setting_sys_api_enabled: 'Omogući "WS" za upravljanje repozitorijom'
313 313 setting_commit_ref_keywords: Ključne riječi za reference
314 314 setting_commit_fix_keywords: 'Ključne riječi za status "zatvoreno"'
315 315 setting_autologin: Automatski login
316 316 setting_date_format: Format datuma
317 317 setting_time_format: Format vremena
318 318 setting_cross_project_issue_relations: Omogući relacije između aktivnosti na različitim projektima
319 319 setting_issue_list_default_columns: Podrazumjevane koleone za prikaz na listi aktivnosti
320 320 setting_emails_footer: Potpis na email-ovima
321 321 setting_protocol: Protokol
322 322 setting_per_page_options: Broj objekata po stranici
323 323 setting_user_format: Format korisničkog prikaza
324 324 setting_activity_days_default: Prikaz promjena na projektu - opseg dana
325 325 setting_display_subprojects_issues: Prikaz podprojekata na glavnom projektima (podrazumjeva se)
326 326 setting_enabled_scm: Omogući SCM (source code management)
327 327 setting_mail_handler_api_enabled: Omogući automatsku obradu ulaznih emailova
328 328 setting_mail_handler_api_key: API ključ (obrada ulaznih mailova)
329 329 setting_sequential_project_identifiers: Generiši identifikatore projekta sekvencijalno
330 330 setting_gravatar_enabled: 'Koristi "gravatar" korisničke ikone'
331 331 setting_diff_max_lines_displayed: Maksimalan broj linija za prikaz razlika između dva fajla
332 332 setting_file_max_size_displayed: Maksimalna veličina fajla kod prikaza razlika unutar fajla (inline)
333 333 setting_repository_log_display_limit: Maksimalna veličina revizija prikazanih na log fajlu
334 334 setting_openid: Omogući OpenID prijavu i registraciju
335 335
336 336 permission_edit_project: Ispravke projekta
337 337 permission_select_project_modules: Odaberi module projekta
338 338 permission_manage_members: Upravljanje članovima
339 339 permission_manage_versions: Upravljanje verzijama
340 340 permission_manage_categories: Upravljanje kategorijama aktivnosti
341 341 permission_add_issues: Dodaj aktivnosti
342 342 permission_edit_issues: Ispravka aktivnosti
343 343 permission_manage_issue_relations: Upravljaj relacijama među aktivnostima
344 344 permission_add_issue_notes: Dodaj bilješke
345 345 permission_edit_issue_notes: Ispravi bilješke
346 346 permission_edit_own_issue_notes: Ispravi sopstvene bilješke
347 347 permission_move_issues: Pomjeri aktivnosti
348 348 permission_delete_issues: Izbriši aktivnosti
349 349 permission_manage_public_queries: Upravljaj javnim upitima
350 350 permission_save_queries: Snimi upite
351 351 permission_view_gantt: Pregled gantograma
352 352 permission_view_calendar: Pregled kalendara
353 353 permission_view_issue_watchers: Pregled liste korisnika koji prate aktivnost
354 354 permission_add_issue_watchers: Dodaj onoga koji prati aktivnost
355 355 permission_log_time: Evidentiraj utrošak vremena
356 356 permission_view_time_entries: Pregled utroška vremena
357 357 permission_edit_time_entries: Ispravka utroška vremena
358 358 permission_edit_own_time_entries: Ispravka svog utroška vremena
359 359 permission_manage_news: Upravljaj novostima
360 360 permission_comment_news: Komentiraj novosti
361 361 permission_manage_documents: Upravljaj dokumentima
362 362 permission_view_documents: Pregled dokumenata
363 363 permission_manage_files: Upravljaj fajlovima
364 364 permission_view_files: Pregled fajlova
365 365 permission_manage_wiki: Upravljaj wiki stranicama
366 366 permission_rename_wiki_pages: Ispravi wiki stranicu
367 367 permission_delete_wiki_pages: Izbriši wiki stranicu
368 368 permission_view_wiki_pages: Pregled wiki sadržaja
369 369 permission_view_wiki_edits: Pregled wiki istorije
370 370 permission_edit_wiki_pages: Ispravka wiki stranica
371 371 permission_delete_wiki_pages_attachments: Brisanje fajlova prikačenih wiki-ju
372 372 permission_protect_wiki_pages: Zaštiti wiki stranicu
373 373 permission_manage_repository: Upravljaj repozitorijem
374 374 permission_browse_repository: Pregled repozitorija
375 375 permission_view_changesets: Pregled setova promjena
376 376 permission_commit_access: 'Pristup "commit"-u'
377 377 permission_manage_boards: Upravljaj forumima
378 378 permission_view_messages: Pregled poruka
379 379 permission_add_messages: Šalji poruke
380 380 permission_edit_messages: Ispravi poruke
381 381 permission_edit_own_messages: Ispravka sopstvenih poruka
382 382 permission_delete_messages: Prisanje poruka
383 383 permission_delete_own_messages: Brisanje sopstvenih poruka
384 384
385 385 project_module_issue_tracking: Praćenje aktivnosti
386 386 project_module_time_tracking: Praćenje vremena
387 387 project_module_news: Novosti
388 388 project_module_documents: Dokumenti
389 389 project_module_files: Fajlovi
390 390 project_module_wiki: Wiki stranice
391 391 project_module_repository: Repozitorij
392 392 project_module_boards: Forumi
393 393
394 394 label_user: Korisnik
395 395 label_user_plural: Korisnici
396 396 label_user_new: Novi korisnik
397 397 label_project: Projekat
398 398 label_project_new: Novi projekat
399 399 label_project_plural: Projekti
400 400 label_x_projects:
401 401 zero: 0 projekata
402 402 one: 1 projekat
403 403 other: "%{count} projekata"
404 404 label_project_all: Svi projekti
405 405 label_project_latest: Posljednji projekti
406 406 label_issue: Aktivnost
407 407 label_issue_new: Nova aktivnost
408 408 label_issue_plural: Aktivnosti
409 409 label_issue_view_all: Vidi sve aktivnosti
410 410 label_issues_by: "Aktivnosti po %{value}"
411 411 label_issue_added: Aktivnost je dodana
412 412 label_issue_updated: Aktivnost je izmjenjena
413 413 label_document: Dokument
414 414 label_document_new: Novi dokument
415 415 label_document_plural: Dokumenti
416 416 label_document_added: Dokument je dodan
417 417 label_role: Uloga
418 418 label_role_plural: Uloge
419 419 label_role_new: Nove uloge
420 420 label_role_and_permissions: Uloge i dozvole
421 421 label_member: Izvršilac
422 422 label_member_new: Novi izvršilac
423 423 label_member_plural: Izvršioci
424 424 label_tracker: Područje aktivnosti
425 425 label_tracker_plural: Područja aktivnosti
426 426 label_tracker_new: Novo područje aktivnosti
427 427 label_workflow: Tok promjena na aktivnosti
428 428 label_issue_status: Status aktivnosti
429 429 label_issue_status_plural: Statusi aktivnosti
430 430 label_issue_status_new: Novi status
431 431 label_issue_category: Kategorija aktivnosti
432 432 label_issue_category_plural: Kategorije aktivnosti
433 433 label_issue_category_new: Nova kategorija
434 434 label_custom_field: Proizvoljno polje
435 435 label_custom_field_plural: Proizvoljna polja
436 436 label_custom_field_new: Novo proizvoljno polje
437 437 label_enumerations: Enumeracije
438 438 label_enumeration_new: Nova vrijednost
439 439 label_information: Informacija
440 440 label_information_plural: Informacije
441 441 label_please_login: Molimo prijavite se
442 442 label_register: Registracija
443 443 label_login_with_open_id_option: ili prijava sa OpenID-om
444 444 label_password_lost: Izgubljena lozinka
445 445 label_home: Početna stranica
446 446 label_my_page: Moja stranica
447 447 label_my_account: Moj korisnički račun
448 448 label_my_projects: Moji projekti
449 449 label_administration: Administracija
450 450 label_login: Prijavi se
451 451 label_logout: Odjavi se
452 452 label_help: Pomoć
453 453 label_reported_issues: Prijavljene aktivnosti
454 454 label_assigned_to_me_issues: Aktivnosti dodjeljene meni
455 455 label_last_login: Posljednja konekcija
456 456 label_registered_on: Registrovan na
457 457 label_activity_plural: Promjene
458 458 label_activity: Operacija
459 459 label_overall_activity: Pregled svih promjena
460 460 label_user_activity: "Promjene izvršene od: %{value}"
461 461 label_new: Novi
462 462 label_logged_as: Prijavljen kao
463 463 label_environment: Sistemsko okruženje
464 464 label_authentication: Authentifikacija
465 465 label_auth_source: Mod authentifikacije
466 466 label_auth_source_new: Novi mod authentifikacije
467 467 label_auth_source_plural: Modovi authentifikacije
468 468 label_subproject_plural: Podprojekti
469 469 label_and_its_subprojects: "%{value} i njegovi podprojekti"
470 470 label_min_max_length: Min - Maks dužina
471 471 label_list: Lista
472 472 label_date: Datum
473 473 label_integer: Cijeli broj
474 474 label_float: Float
475 475 label_boolean: Logička varijabla
476 476 label_string: Tekst
477 477 label_text: Dugi tekst
478 478 label_attribute: Atribut
479 479 label_attribute_plural: Atributi
480 480 label_download: "%{count} download"
481 481 label_download_plural: "%{count} download-i"
482 482 label_no_data: Nema podataka za prikaz
483 483 label_change_status: Promjeni status
484 484 label_history: Istorija
485 485 label_attachment: Fajl
486 486 label_attachment_new: Novi fajl
487 487 label_attachment_delete: Izbriši fajl
488 488 label_attachment_plural: Fajlovi
489 489 label_file_added: Fajl je dodan
490 490 label_report: Izvještaj
491 491 label_report_plural: Izvještaji
492 492 label_news: Novosti
493 493 label_news_new: Dodaj novosti
494 494 label_news_plural: Novosti
495 495 label_news_latest: Posljednje novosti
496 496 label_news_view_all: Pogledaj sve novosti
497 497 label_news_added: Novosti su dodane
498 498 label_settings: Postavke
499 499 label_overview: Pregled
500 500 label_version: Verzija
501 501 label_version_new: Nova verzija
502 502 label_version_plural: Verzije
503 503 label_confirmation: Potvrda
504 504 label_export_to: 'Takođe dostupno u:'
505 505 label_read: Čitaj...
506 506 label_public_projects: Javni projekti
507 507 label_open_issues: otvoren
508 508 label_open_issues_plural: otvoreni
509 509 label_closed_issues: zatvoren
510 510 label_closed_issues_plural: zatvoreni
511 511 label_x_open_issues_abbr_on_total:
512 512 zero: 0 otvoreno / %{total}
513 513 one: 1 otvorena / %{total}
514 514 other: "%{count} otvorene / %{total}"
515 515 label_x_open_issues_abbr:
516 516 zero: 0 otvoreno
517 517 one: 1 otvorena
518 518 other: "%{count} otvorene"
519 519 label_x_closed_issues_abbr:
520 520 zero: 0 zatvoreno
521 521 one: 1 zatvorena
522 522 other: "%{count} zatvorene"
523 523 label_total: Ukupno
524 524 label_permissions: Dozvole
525 525 label_current_status: Tekući status
526 526 label_new_statuses_allowed: Novi statusi dozvoljeni
527 527 label_all: sve
528 528 label_none: ništa
529 529 label_nobody: niko
530 530 label_next: Sljedeće
531 531 label_previous: Predhodno
532 532 label_used_by: Korišteno od
533 533 label_details: Detalji
534 534 label_add_note: Dodaj bilješku
535 535 label_per_page: Po stranici
536 536 label_calendar: Kalendar
537 537 label_months_from: mjeseci od
538 538 label_gantt: Gantt
539 539 label_internal: Interno
540 540 label_last_changes: "posljednjih %{count} promjena"
541 541 label_change_view_all: Vidi sve promjene
542 542 label_personalize_page: Personaliziraj ovu stranicu
543 543 label_comment: Komentar
544 544 label_comment_plural: Komentari
545 545 label_x_comments:
546 546 zero: bez komentara
547 547 one: 1 komentar
548 548 other: "%{count} komentari"
549 549 label_comment_add: Dodaj komentar
550 550 label_comment_added: Komentar je dodan
551 551 label_comment_delete: Izbriši komentar
552 552 label_query: Proizvoljan upit
553 553 label_query_plural: Proizvoljni upiti
554 554 label_query_new: Novi upit
555 555 label_filter_add: Dodaj filter
556 556 label_filter_plural: Filteri
557 557 label_equals: je
558 558 label_not_equals: nije
559 559 label_in_less_than: je manji nego
560 560 label_in_more_than: je više nego
561 561 label_in: u
562 562 label_today: danas
563 563 label_all_time: sve vrijeme
564 564 label_yesterday: juče
565 565 label_this_week: ova hefta
566 566 label_last_week: zadnja hefta
567 567 label_last_n_days: "posljednjih %{count} dana"
568 568 label_this_month: ovaj mjesec
569 569 label_last_month: posljednji mjesec
570 570 label_this_year: ova godina
571 571 label_date_range: Datumski opseg
572 572 label_less_than_ago: ranije nego (dana)
573 573 label_more_than_ago: starije nego (dana)
574 574 label_ago: prije (dana)
575 575 label_contains: sadrži
576 576 label_not_contains: ne sadrži
577 577 label_day_plural: dani
578 578 label_repository: Repozitorij
579 579 label_repository_plural: Repozitoriji
580 580 label_browse: Listaj
581 581 label_modification: "%{count} promjena"
582 582 label_modification_plural: "%{count} promjene"
583 583 label_revision: Revizija
584 584 label_revision_plural: Revizije
585 585 label_associated_revisions: Doddjeljene revizije
586 586 label_added: dodano
587 587 label_modified: izmjenjeno
588 588 label_copied: kopirano
589 589 label_renamed: preimenovano
590 590 label_deleted: izbrisano
591 591 label_latest_revision: Posljednja revizija
592 592 label_latest_revision_plural: Posljednje revizije
593 593 label_view_revisions: Vidi revizije
594 594 label_max_size: Maksimalna veličina
595 595 label_sort_highest: Pomjeri na vrh
596 596 label_sort_higher: Pomjeri gore
597 597 label_sort_lower: Pomjeri dole
598 598 label_sort_lowest: Pomjeri na dno
599 599 label_roadmap: Plan realizacije
600 600 label_roadmap_due_in: "Obavezan do %{value}"
601 601 label_roadmap_overdue: "%{value} kasni"
602 602 label_roadmap_no_issues: Nema aktivnosti za ovu verziju
603 603 label_search: Traži
604 604 label_result_plural: Rezultati
605 605 label_all_words: Sve riječi
606 606 label_wiki: Wiki stranice
607 607 label_wiki_edit: ispravka wiki-ja
608 608 label_wiki_edit_plural: ispravke wiki-ja
609 609 label_wiki_page: Wiki stranica
610 610 label_wiki_page_plural: Wiki stranice
611 611 label_index_by_title: Indeks prema naslovima
612 612 label_index_by_date: Indeks po datumima
613 613 label_current_version: Tekuća verzija
614 614 label_preview: Pregled
615 615 label_feed_plural: Feeds
616 616 label_changes_details: Detalji svih promjena
617 617 label_issue_tracking: Evidencija aktivnosti
618 618 label_spent_time: Utrošak vremena
619 619 label_f_hour: "%{value} sahat"
620 620 label_f_hour_plural: "%{value} sahata"
621 621 label_time_tracking: Evidencija vremena
622 622 label_change_plural: Promjene
623 623 label_statistics: Statistika
624 624 label_commits_per_month: '"Commit"-a po mjesecu'
625 625 label_commits_per_author: '"Commit"-a po autoru'
626 626 label_view_diff: Pregled razlika
627 627 label_diff_inline: zajedno
628 628 label_diff_side_by_side: jedna pored druge
629 629 label_options: Opcije
630 630 label_copy_workflow_from: Kopiraj tok promjena statusa iz
631 631 label_permissions_report: Izvještaj
632 632 label_watched_issues: Aktivnosti koje pratim
633 633 label_related_issues: Korelirane aktivnosti
634 634 label_applied_status: Status je primjenjen
635 635 label_loading: Učitavam...
636 636 label_relation_new: Nova relacija
637 637 label_relation_delete: Izbriši relaciju
638 638 label_relates_to: korelira sa
639 639 label_duplicates: duplikat
640 640 label_duplicated_by: duplicirano od
641 641 label_blocks: blokira
642 642 label_blocked_by: blokirano on
643 643 label_precedes: predhodi
644 644 label_follows: slijedi
645 645 label_end_to_start: 'kraj -> početak'
646 646 label_end_to_end: 'kraja -> kraj'
647 647 label_start_to_start: 'početak -> početak'
648 648 label_start_to_end: 'početak -> kraj'
649 649 label_stay_logged_in: Ostani prijavljen
650 650 label_disabled: onemogućen
651 651 label_show_completed_versions: Prikaži završene verzije
652 652 label_me: ja
653 653 label_board: Forum
654 654 label_board_new: Novi forum
655 655 label_board_plural: Forumi
656 656 label_topic_plural: Teme
657 657 label_message_plural: Poruke
658 658 label_message_last: Posljednja poruka
659 659 label_message_new: Nova poruka
660 660 label_message_posted: Poruka je dodana
661 661 label_reply_plural: Odgovori
662 662 label_send_information: Pošalji informaciju o korisničkom računu
663 663 label_year: Godina
664 664 label_month: Mjesec
665 665 label_week: Hefta
666 666 label_date_from: Od
667 667 label_date_to: Do
668 668 label_language_based: Bazirano na korisnikovom jeziku
669 669 label_sort_by: "Sortiraj po %{value}"
670 670 label_send_test_email: Pošalji testni email
671 671 label_feeds_access_key_created_on: "RSS pristupni ključ kreiran prije %{value} dana"
672 672 label_module_plural: Moduli
673 673 label_added_time_by: "Dodano od %{author} prije %{age}"
674 674 label_updated_time_by: "Izmjenjeno od %{author} prije %{age}"
675 675 label_updated_time: "Izmjenjeno prije %{value}"
676 676 label_jump_to_a_project: Skoči na projekat...
677 677 label_file_plural: Fajlovi
678 678 label_changeset_plural: Setovi promjena
679 679 label_default_columns: Podrazumjevane kolone
680 680 label_no_change_option: (Bez promjene)
681 681 label_bulk_edit_selected_issues: Ispravi odjednom odabrane aktivnosti
682 682 label_theme: Tema
683 683 label_default: Podrazumjevano
684 684 label_search_titles_only: Pretraži samo naslove
685 685 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
686 686 label_user_mail_option_selected: "Za bilo koji događaj na odabranim projektima..."
687 687 label_user_mail_no_self_notified: "Ne želim notifikaciju za promjene koje sam ja napravio"
688 688 label_registration_activation_by_email: aktivacija korisničkog računa email-om
689 689 label_registration_manual_activation: ručna aktivacija korisničkog računa
690 690 label_registration_automatic_activation: automatska kreacija korisničkog računa
691 691 label_display_per_page: "Po stranici: %{value}"
692 692 label_age: Starost
693 693 label_change_properties: Promjena osobina
694 694 label_general: Generalno
695 695 label_more: Više
696 696 label_scm: SCM
697 697 label_plugins: Plugin-ovi
698 698 label_ldap_authentication: LDAP authentifikacija
699 699 label_downloads_abbr: D/L
700 700 label_optional_description: Opis (opciono)
701 701 label_add_another_file: Dodaj još jedan fajl
702 702 label_preferences: Postavke
703 703 label_chronological_order: Hronološki poredak
704 704 label_reverse_chronological_order: Reverzni hronološki poredak
705 705 label_planning: Planiranje
706 706 label_incoming_emails: Dolazni email-ovi
707 707 label_generate_key: Generiši ključ
708 708 label_issue_watchers: Praćeno od
709 709 label_example: Primjer
710 710 label_display: Prikaz
711 711
712 712 button_apply: Primjeni
713 713 button_add: Dodaj
714 714 button_archive: Arhiviranje
715 715 button_back: Nazad
716 716 button_cancel: Odustani
717 717 button_change: Izmjeni
718 718 button_change_password: Izmjena lozinke
719 719 button_check_all: Označi sve
720 720 button_clear: Briši
721 721 button_copy: Kopiraj
722 722 button_create: Novi
723 723 button_delete: Briši
724 724 button_download: Download
725 725 button_edit: Ispravka
726 726 button_list: Lista
727 727 button_lock: Zaključaj
728 728 button_log_time: Utrošak vremena
729 729 button_login: Prijava
730 730 button_move: Pomjeri
731 731 button_rename: Promjena imena
732 732 button_reply: Odgovor
733 733 button_reset: Resetuj
734 734 button_rollback: Vrati predhodno stanje
735 735 button_save: Snimi
736 736 button_sort: Sortiranje
737 737 button_submit: Pošalji
738 738 button_test: Testiraj
739 739 button_unarchive: Otpakuj arhivu
740 740 button_uncheck_all: Isključi sve
741 741 button_unlock: Otključaj
742 742 button_unwatch: Prekini notifikaciju
743 743 button_update: Promjena na aktivnosti
744 744 button_view: Pregled
745 745 button_watch: Notifikacija
746 746 button_configure: Konfiguracija
747 747 button_quote: Citat
748 748
749 749 status_active: aktivan
750 750 status_registered: registrovan
751 751 status_locked: zaključan
752 752
753 753 text_select_mail_notifications: Odaberi događaje za koje će se slati email notifikacija.
754 754 text_regexp_info: npr. ^[A-Z0-9]+$
755 755 text_min_max_length_info: 0 znači bez restrikcije
756 756 text_project_destroy_confirmation: Sigurno želite izbrisati ovaj projekat i njegove podatke ?
757 757 text_subprojects_destroy_warning: "Podprojekt(i): %{value} će takođe biti izbrisani."
758 758 text_workflow_edit: Odaberite ulogu i područje aktivnosti za ispravku toka promjena na aktivnosti
759 759 text_are_you_sure: Da li ste sigurni ?
760 760 text_tip_issue_begin_day: zadatak počinje danas
761 761 text_tip_issue_end_day: zadatak završava danas
762 762 text_tip_issue_begin_end_day: zadatak započinje i završava danas
763 763 text_caracters_maximum: "maksimum %{count} karaktera."
764 764 text_caracters_minimum: "Dužina mora biti najmanje %{count} znakova."
765 765 text_length_between: "Broj znakova između %{min} i %{max}."
766 766 text_tracker_no_workflow: Tok statusa nije definisan za ovo područje aktivnosti
767 767 text_unallowed_characters: Nedozvoljeni znakovi
768 768 text_comma_separated: Višestruke vrijednosti dozvoljene (odvojiti zarezom).
769 769 text_issues_ref_in_commit_messages: 'Referenciranje i zatvaranje aktivnosti putem "commit" poruka'
770 770 text_issue_added: "Aktivnost %{id} je prijavljena od %{author}."
771 771 text_issue_updated: "Aktivnost %{id} je izmjenjena od %{author}."
772 772 text_wiki_destroy_confirmation: Sigurno želite izbrisati ovaj wiki i čitav njegov sadržaj ?
773 773 text_issue_category_destroy_question: "Neke aktivnosti (%{count}) pripadaju ovoj kategoriji. Sigurno to želite uraditi ?"
774 774 text_issue_category_destroy_assignments: Ukloni kategoriju
775 775 text_issue_category_reassign_to: Ponovo dodijeli ovu kategoriju
776 776 text_user_mail_option: "Za projekte koje niste odabrali, primićete samo notifikacije o stavkama koje pratite ili ste u njih uključeni (npr. vi ste autor ili su vama dodjeljenje)."
777 777 text_no_configuration_data: "Uloge, područja aktivnosti, statusi aktivnosti i tok promjena statusa nisu konfigurisane.\nKrajnje je preporučeno da učitate tekuđe postavke. Kasnije ćete ih moći mjenjati po svojim potrebama."
778 778 text_load_default_configuration: Učitaj tekuću konfiguraciju
779 779 text_status_changed_by_changeset: "Primjenjeno u setu promjena %{value}."
780 780 text_issues_destroy_confirmation: 'Sigurno želite izbrisati odabranu/e aktivnost/i ?'
781 781 text_select_project_modules: 'Odaberi module koje želite u ovom projektu:'
782 782 text_default_administrator_account_changed: Tekući administratorski račun je promjenjen
783 783 text_file_repository_writable: U direktorij sa fajlovima koji su prilozi se može pisati
784 784 text_plugin_assets_writable: U direktorij plugin-ova se može pisati
785 785 text_rmagick_available: RMagick je dostupan (opciono)
786 786 text_destroy_time_entries_question: "%{hours} sahata je prijavljeno na aktivnostima koje želite brisati. Želite li to učiniti ?"
787 787 text_destroy_time_entries: Izbriši prijavljeno vrijeme
788 788 text_assign_time_entries_to_project: Dodaj prijavljenoo vrijeme projektu
789 789 text_reassign_time_entries: 'Preraspodjeli prijavljeno vrijeme na ovu aktivnost:'
790 790 text_user_wrote: "%{value} je napisao/la:"
791 791 text_enumeration_destroy_question: "Za %{count} objekata je dodjeljenja ova vrijednost."
792 792 text_enumeration_category_reassign_to: 'Ponovo im dodjeli ovu vrijednost:'
793 793 text_email_delivery_not_configured: "Email dostava nije konfiguraisana, notifikacija je onemogućena.\nKonfiguriši SMTP server u config/configuration.yml i restartuj aplikaciju nakon toga."
794 794 text_repository_usernames_mapping: "Odaberi ili ispravi redmine korisnika mapiranog za svako korisničko ima nađeno u logu repozitorija.\nKorisnici sa istim imenom u redmineu i u repozitoruju se automatski mapiraju."
795 795 text_diff_truncated: '... Ovaj prikaz razlike je odsječen pošto premašuje maksimalnu veličinu za prikaz'
796 796 text_custom_field_possible_values_info: 'Jedna linija za svaku vrijednost'
797 797
798 798 default_role_manager: Menadžer
799 799 default_role_developer: Programer
800 800 default_role_reporter: Reporter
801 801 default_tracker_bug: Greška
802 802 default_tracker_feature: Nova funkcija
803 803 default_tracker_support: Podrška
804 804 default_issue_status_new: Novi
805 805 default_issue_status_in_progress: In Progress
806 806 default_issue_status_resolved: Riješen
807 807 default_issue_status_feedback: Čeka se povratna informacija
808 808 default_issue_status_closed: Zatvoren
809 809 default_issue_status_rejected: Odbijen
810 810 default_doc_category_user: Korisnička dokumentacija
811 811 default_doc_category_tech: Tehnička dokumentacija
812 812 default_priority_low: Nizak
813 813 default_priority_normal: Normalan
814 814 default_priority_high: Visok
815 815 default_priority_urgent: Urgentno
816 816 default_priority_immediate: Odmah
817 817 default_activity_design: Dizajn
818 818 default_activity_development: Programiranje
819 819
820 820 enumeration_issue_priorities: Prioritet aktivnosti
821 821 enumeration_doc_categories: Kategorije dokumenata
822 822 enumeration_activities: Operacije (utrošak vremena)
823 823 notice_unable_delete_version: Ne mogu izbrisati verziju.
824 824 button_create_and_continue: Kreiraj i nastavi
825 825 button_annotate: Zabilježi
826 826 button_activate: Aktiviraj
827 827 label_sort: Sortiranje
828 828 label_date_from_to: Od %{start} do %{end}
829 829 label_ascending: Rastuće
830 830 label_descending: Opadajuće
831 831 label_greater_or_equal: ">="
832 832 label_less_or_equal: <=
833 833 text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do?
834 834 text_wiki_page_reassign_children: Reassign child pages to this parent page
835 835 text_wiki_page_nullify_children: Keep child pages as root pages
836 836 text_wiki_page_destroy_children: Delete child pages and all their descendants
837 837 setting_password_min_length: Minimum password length
838 838 field_group_by: Group results by
839 839 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
840 840 label_wiki_content_added: Wiki page added
841 841 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
842 842 mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}.
843 843 label_wiki_content_updated: Wiki page updated
844 844 mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}.
845 845 permission_add_project: Create project
846 846 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
847 847 label_view_all_revisions: View all revisions
848 848 label_tag: Tag
849 849 label_branch: Branch
850 850 error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings.
851 851 error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").
852 852 text_journal_changed: "%{label} changed from %{old} to %{new}"
853 853 text_journal_set_to: "%{label} set to %{value}"
854 854 text_journal_deleted: "%{label} deleted (%{old})"
855 855 label_group_plural: Groups
856 856 label_group: Group
857 857 label_group_new: New group
858 858 label_time_entry_plural: Spent time
859 859 text_journal_added: "%{label} %{value} added"
860 860 field_active: Active
861 861 enumeration_system_activity: System Activity
862 862 permission_delete_issue_watchers: Delete watchers
863 863 version_status_closed: closed
864 864 version_status_locked: locked
865 865 version_status_open: open
866 866 error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened
867 867 label_user_anonymous: Anonymous
868 868 button_move_and_follow: Move and follow
869 869 setting_default_projects_modules: Default enabled modules for new projects
870 870 setting_gravatar_default: Default Gravatar image
871 871 field_sharing: Sharing
872 872 label_version_sharing_hierarchy: With project hierarchy
873 873 label_version_sharing_system: With all projects
874 874 label_version_sharing_descendants: With subprojects
875 875 label_version_sharing_tree: With project tree
876 876 label_version_sharing_none: Not shared
877 877 error_can_not_archive_project: This project can not be archived
878 878 button_duplicate: Duplicate
879 879 button_copy_and_follow: Copy and follow
880 880 label_copy_source: Source
881 881 setting_issue_done_ratio: Calculate the issue done ratio with
882 882 setting_issue_done_ratio_issue_status: Use the issue status
883 883 error_issue_done_ratios_not_updated: Issue done ratios not updated.
884 884 error_workflow_copy_target: Please select target tracker(s) and role(s)
885 885 setting_issue_done_ratio_issue_field: Use the issue field
886 886 label_copy_same_as_target: Same as target
887 887 label_copy_target: Target
888 888 notice_issue_done_ratios_updated: Issue done ratios updated.
889 889 error_workflow_copy_source: Please select a source tracker or role
890 890 label_update_issue_done_ratios: Update issue done ratios
891 891 setting_start_of_week: Start calendars on
892 892 permission_view_issues: View Issues
893 893 label_display_used_statuses_only: Only display statuses that are used by this tracker
894 894 label_revision_id: Revision %{value}
895 895 label_api_access_key: API access key
896 896 label_api_access_key_created_on: API access key created %{value} ago
897 897 label_feeds_access_key: RSS access key
898 898 notice_api_access_key_reseted: Your API access key was reset.
899 899 setting_rest_api_enabled: Enable REST web service
900 900 label_missing_api_access_key: Missing an API access key
901 901 label_missing_feeds_access_key: Missing a RSS access key
902 902 button_show: Show
903 903 text_line_separated: Multiple values allowed (one line for each value).
904 904 setting_mail_handler_body_delimiters: Truncate emails after one of these lines
905 905 permission_add_subprojects: Create subprojects
906 906 label_subproject_new: New subproject
907 907 text_own_membership_delete_confirmation: |-
908 908 You are about to remove some or all of your permissions and may no longer be able to edit this project after that.
909 909 Are you sure you want to continue?
910 910 label_close_versions: Close completed versions
911 911 label_board_sticky: Sticky
912 912 label_board_locked: Locked
913 913 permission_export_wiki_pages: Export wiki pages
914 914 setting_cache_formatted_text: Cache formatted text
915 915 permission_manage_project_activities: Manage project activities
916 916 error_unable_delete_issue_status: Unable to delete issue status
917 917 label_profile: Profile
918 918 permission_manage_subtasks: Manage subtasks
919 919 field_parent_issue: Parent task
920 920 label_subtask_plural: Subtasks
921 921 label_project_copy_notifications: Send email notifications during the project copy
922 922 error_can_not_delete_custom_field: Unable to delete custom field
923 923 error_unable_to_connect: Unable to connect (%{value})
924 924 error_can_not_remove_role: This role is in use and can not be deleted.
925 925 error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
926 926 field_principal: Principal
927 927 label_my_page_block: My page block
928 928 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
929 929 text_zoom_out: Zoom out
930 930 text_zoom_in: Zoom in
931 931 notice_unable_delete_time_entry: Unable to delete time log entry.
932 932 label_overall_spent_time: Overall spent time
933 933 field_time_entries: Log time
934 934 project_module_gantt: Gantt
935 935 project_module_calendar: Calendar
936 936 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
937 937 text_are_you_sure_with_children: Delete issue and all child issues?
938 938 field_text: Text field
939 939 label_user_mail_option_only_owner: Only for things I am the owner of
940 940 setting_default_notification_option: Default notification option
941 941 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
942 942 label_user_mail_option_only_assigned: Only for things I am assigned to
943 943 label_user_mail_option_none: No events
944 944 field_member_of_group: Assignee's group
945 945 field_assigned_to_role: Assignee's role
946 946 notice_not_authorized_archived_project: The project you're trying to access has been archived.
947 947 label_principal_search: "Search for user or group:"
948 948 label_user_search: "Search for user:"
949 949 field_visible: Visible
950 950 setting_emails_header: Emails header
951 951 setting_commit_logtime_activity_id: Activity for logged time
952 952 text_time_logged_by_changeset: Applied in changeset %{value}.
953 953 setting_commit_logtime_enabled: Enable time logging
954 954 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
955 955 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
956 956 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
957 957 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
958 958 label_my_queries: My custom queries
959 959 text_journal_changed_no_detail: "%{label} updated"
960 960 label_news_comment_added: Comment added to a news
961 961 button_expand_all: Expand all
962 962 button_collapse_all: Collapse all
963 963 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
964 964 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
965 965 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
966 966 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
967 967 label_role_anonymous: Anonymous
968 968 label_role_non_member: Non member
969 969 label_issue_note_added: Note added
970 970 label_issue_status_updated: Status updated
971 971 label_issue_priority_updated: Priority updated
972 972 label_issues_visibility_own: Issues created by or assigned to the user
973 973 field_issues_visibility: Issues visibility
974 974 label_issues_visibility_all: All issues
975 975 permission_set_own_issues_private: Set own issues public or private
976 976 field_is_private: Private
977 977 permission_set_issues_private: Set issues public or private
978 978 label_issues_visibility_public: All non private issues
979 979 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
980 980 field_commit_logs_encoding: 'Enkodiranje "commit" poruka'
981 981 field_scm_path_encoding: Path encoding
982 982 text_scm_path_encoding_note: "Default: UTF-8"
983 983 field_path_to_repository: Path to repository
984 984 field_root_directory: Root directory
985 985 field_cvs_module: Module
986 986 field_cvsroot: CVSROOT
987 987 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
988 988 text_scm_command: Command
989 989 text_scm_command_version: Version
990 990 label_git_report_last_commit: Report last commit for files and directories
991 991 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
992 992 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
993 993 notice_issue_successful_create: Issue %{id} created.
994 994 label_between: between
995 995 setting_issue_group_assignment: Allow issue assignment to groups
996 996 label_diff: diff
997 997 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
998 998 description_query_sort_criteria_direction: Sort direction
999 999 description_project_scope: Search scope
1000 1000 description_filter: Filter
1001 1001 description_user_mail_notification: Mail notification settings
1002 1002 description_date_from: Enter start date
1003 1003 description_message_content: Message content
1004 1004 description_available_columns: Available Columns
1005 1005 description_date_range_interval: Choose range by selecting start and end date
1006 1006 description_issue_category_reassign: Choose issue category
1007 1007 description_search: Searchfield
1008 1008 description_notes: Notes
1009 1009 description_date_range_list: Choose range from list
1010 1010 description_choose_project: Projects
1011 1011 description_date_to: Enter end date
1012 1012 description_query_sort_criteria_attribute: Sort attribute
1013 1013 description_wiki_subpages_reassign: Choose new parent page
1014 1014 description_selected_columns: Selected Columns
1015 1015 label_parent_revision: Parent
1016 1016 label_child_revision: Child
1017 1017 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
1018 1018 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1019 1019 button_edit_section: Edit this section
1020 1020 setting_repositories_encodings: Attachments and repositories encodings
1021 1021 description_all_columns: All Columns
1022 1022 button_export: Export
1023 1023 label_export_options: "%{export_format} export options"
1024 1024 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1025 1025 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1026 1026 label_x_issues:
1027 1027 zero: 0 aktivnost
1028 1028 one: 1 aktivnost
1029 1029 other: "%{count} aktivnosti"
1030 1030 label_repository_new: New repository
1031 1031 field_repository_is_default: Main repository
1032 1032 label_copy_attachments: Copy attachments
1033 1033 label_item_position: "%{position}/%{count}"
1034 1034 label_completed_versions: Completed versions
1035 1035 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1036 1036 field_multiple: Multiple values
1037 1037 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1038 1038 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1039 1039 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1040 1040 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1041 1041 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1042 1042 permission_manage_related_issues: Manage related issues
1043 1043 field_ldap_filter: LDAP filter
1044 1044 label_search_for_watchers: Search for watchers to add
1045 1045 notice_account_deleted: Your account has been permanently deleted.
1046 1046 setting_unsubscribe: Allow users to delete their own account
1047 1047 button_delete_my_account: Delete my account
1048 1048 text_account_destroy_confirmation: |-
1049 1049 Are you sure you want to proceed?
1050 1050 Your account will be permanently deleted, with no way to reactivate it.
1051 1051 error_session_expired: Your session has expired. Please login again.
1052 1052 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1053 1053 setting_session_lifetime: Session maximum lifetime
1054 1054 setting_session_timeout: Session inactivity timeout
1055 1055 label_session_expiration: Session expiration
1056 1056 permission_close_project: Close / reopen the project
1057 1057 label_show_closed_projects: View closed projects
1058 1058 button_close: Close
1059 1059 button_reopen: Reopen
1060 1060 project_status_active: active
1061 1061 project_status_closed: closed
1062 1062 project_status_archived: archived
1063 1063 text_project_closed: This project is closed and read-only.
1064 1064 notice_user_successful_create: User %{id} created.
1065 1065 field_core_fields: Standard fields
1066 1066 field_timeout: Timeout (in seconds)
1067 1067 setting_thumbnails_enabled: Display attachment thumbnails
1068 1068 setting_thumbnails_size: Thumbnails size (in pixels)
1069 label_status_transitions: Status transitions
1070 label_fields_permissions: Fields permissions
1071 label_readonly: Read-only
1072 label_required: Required
@@ -1,1056 +1,1060
1 1 # Redmine catalan translation:
2 2 # by Joan Duran
3 3
4 4 ca:
5 5 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
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 de %b"
14 14 long: "%a, %e de %b de %Y"
15 15
16 16 day_names: [Diumenge, Dilluns, Dimarts, Dimecres, Dijous, Divendres, Dissabte]
17 17 abbr_day_names: [dg, dl, dt, dc, dj, dv, ds]
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: [~, Gener, Febrer, Març, Abril, Maig, Juny, Juliol, Agost, Setembre, Octubre, Novembre, Desembre]
21 21 abbr_month_names: [~, Gen, Feb, Mar, Abr, Mai, Jun, Jul, Ago, Set, Oct, Nov, Des]
22 22 # Used in date_select and datime_select.
23 23 order:
24 24 - :year
25 25 - :month
26 26 - :day
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 de %b, %H:%M"
33 33 long: "%a, %e de %b de %Y, %H:%M"
34 34 am: "am"
35 35 pm: "pm"
36 36
37 37 datetime:
38 38 distance_in_words:
39 39 half_a_minute: "mig minut"
40 40 less_than_x_seconds:
41 41 one: "menys d'un segon"
42 42 other: "menys de %{count} segons"
43 43 x_seconds:
44 44 one: "1 segons"
45 45 other: "%{count} segons"
46 46 less_than_x_minutes:
47 47 one: "menys d'un minut"
48 48 other: "menys de %{count} minuts"
49 49 x_minutes:
50 50 one: "1 minut"
51 51 other: "%{count} minuts"
52 52 about_x_hours:
53 53 one: "aproximadament 1 hora"
54 54 other: "aproximadament %{count} hores"
55 55 x_hours:
56 56 one: "1 hour"
57 57 other: "%{count} hours"
58 58 x_days:
59 59 one: "1 dia"
60 60 other: "%{count} dies"
61 61 about_x_months:
62 62 one: "aproximadament 1 mes"
63 63 other: "aproximadament %{count} mesos"
64 64 x_months:
65 65 one: "1 mes"
66 66 other: "%{count} mesos"
67 67 about_x_years:
68 68 one: "aproximadament 1 any"
69 69 other: "aproximadament %{count} anys"
70 70 over_x_years:
71 71 one: "més d'un any"
72 72 other: "més de %{count} anys"
73 73 almost_x_years:
74 74 one: "almost 1 year"
75 75 other: "almost %{count} years"
76 76
77 77 number:
78 78 # Default format for numbers
79 79 format:
80 80 separator: "."
81 81 delimiter: ""
82 82 precision: 3
83 83 human:
84 84 format:
85 85 delimiter: ""
86 86 precision: 3
87 87 storage_units:
88 88 format: "%n %u"
89 89 units:
90 90 byte:
91 91 one: "Byte"
92 92 other: "Bytes"
93 93 kb: "KB"
94 94 mb: "MB"
95 95 gb: "GB"
96 96 tb: "TB"
97 97
98 98 # Used in array.to_sentence.
99 99 support:
100 100 array:
101 101 sentence_connector: "i"
102 102 skip_last_comma: false
103 103
104 104 activerecord:
105 105 errors:
106 106 template:
107 107 header:
108 108 one: "1 error prohibited this %{model} from being saved"
109 109 other: "%{count} errors prohibited this %{model} from being saved"
110 110 messages:
111 111 inclusion: "no està inclòs a la llista"
112 112 exclusion: "està reservat"
113 113 invalid: "no és vàlid"
114 114 confirmation: "la confirmació no coincideix"
115 115 accepted: "s'ha d'acceptar"
116 116 empty: "no pot estar buit"
117 117 blank: "no pot estar en blanc"
118 118 too_long: "és massa llarg"
119 119 too_short: "és massa curt"
120 120 wrong_length: "la longitud és incorrecta"
121 121 taken: "ja s'està utilitzant"
122 122 not_a_number: "no és un número"
123 123 not_a_date: "no és una data vàlida"
124 124 greater_than: "ha de ser més gran que %{count}"
125 125 greater_than_or_equal_to: "ha de ser més gran o igual a %{count}"
126 126 equal_to: "ha de ser igual a %{count}"
127 127 less_than: "ha de ser menys que %{count}"
128 128 less_than_or_equal_to: "ha de ser menys o igual a %{count}"
129 129 odd: "ha de ser senar"
130 130 even: "ha de ser parell"
131 131 greater_than_start_date: "ha de ser superior que la data inicial"
132 132 not_same_project: "no pertany al mateix projecte"
133 133 circular_dependency: "Aquesta relació crearia una dependència circular"
134 134 cant_link_an_issue_with_a_descendant: "Un assumpte no es pot enllaçar a una de les seves subtasques"
135 135
136 136 actionview_instancetag_blank_option: Seleccioneu
137 137
138 138 general_text_No: 'No'
139 139 general_text_Yes: 'Si'
140 140 general_text_no: 'no'
141 141 general_text_yes: 'si'
142 142 general_lang_name: 'Català'
143 143 general_csv_separator: ';'
144 144 general_csv_decimal_separator: ','
145 145 general_csv_encoding: ISO-8859-15
146 146 general_pdf_encoding: UTF-8
147 147 general_first_day_of_week: '1'
148 148
149 149 notice_account_updated: "El compte s'ha actualitzat correctament."
150 150 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
151 151 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
152 152 notice_account_wrong_password: Contrasenya incorrecta
153 153 notice_account_register_done: "El compte s'ha creat correctament. Per a activar el compte, feu clic en l'enllaç que us han enviat per correu electrònic."
154 154 notice_account_unknown_email: Usuari desconegut.
155 155 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
156 156 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
157 157 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
158 158 notice_successful_create: "S'ha creat correctament."
159 159 notice_successful_update: "S'ha modificat correctament."
160 160 notice_successful_delete: "S'ha suprimit correctament."
161 161 notice_successful_connection: "S'ha connectat correctament."
162 162 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
163 163 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
164 164 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
165 165 notice_email_sent: "S'ha enviat un correu electrònic a %{value}"
166 166 notice_email_error: "S'ha produït un error en enviar el correu (%{value})"
167 167 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
168 168 notice_api_access_key_reseted: "S'ha reiniciat la clau d'accés a l'API."
169 169 notice_failed_to_save_issues: "No s'han pogut desar %{count} assumptes de %{total} seleccionats: %{ids}."
170 170 notice_failed_to_save_members: "No s'han pogut desar els membres: %{errors}."
171 171 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
172 172 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
173 173 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
174 174 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
175 175 notice_unable_delete_time_entry: "No s'ha pogut suprimir l'entrada del registre de temps."
176 176 notice_issue_done_ratios_updated: "S'ha actualitzat el tant per cent dels assumptes."
177 177
178 178 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %{value} "
179 179 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
180 180 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: %{value}"
181 181 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
182 182 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
183 183 error_no_tracker_in_project: "Aquest projecte no seguidor associat. Comproveu els paràmetres del projecte."
184 184 error_no_default_issue_status: "No s'ha definit cap estat d'assumpte predeterminat. Comproveu la configuració (aneu a «Administració -> Estats de l'assumpte»)."
185 185 error_can_not_delete_custom_field: "No s'ha pogut suprimir el camp personalitat"
186 186 error_can_not_delete_tracker: "Aquest seguidor conté assumptes i no es pot suprimir."
187 187 error_can_not_remove_role: "Aquest rol s'està utilitzant i no es pot suprimir."
188 188 error_can_not_reopen_issue_on_closed_version: "Un assumpte assignat a una versió tancada no es pot tornar a obrir"
189 189 error_can_not_archive_project: "Aquest projecte no es pot arxivar"
190 190 error_issue_done_ratios_not_updated: "No s'ha actualitza el tant per cent dels assumptes."
191 191 error_workflow_copy_source: "Seleccioneu un seguidor o rol font"
192 192 error_workflow_copy_target: "Seleccioneu seguidors i rols objectiu"
193 193 error_unable_delete_issue_status: "No s'ha pogut suprimir l'estat de l'assumpte"
194 194 error_unable_to_connect: "No s'ha pogut connectar (%{value})"
195 195 warning_attachments_not_saved: "No s'han pogut desar %{count} fitxers."
196 196
197 197 mail_subject_lost_password: "Contrasenya de %{value}"
198 198 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
199 199 mail_subject_register: "Activació del compte de %{value}"
200 200 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
201 201 mail_body_account_information_external: "Podeu utilitzar el compte «%{value}» per a entrar."
202 202 mail_body_account_information: Informació del compte
203 203 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %{value}"
204 204 mail_body_account_activation_request: "S'ha registrat un usuari nou (%{value}). El seu compte està pendent d'aprovació:"
205 205 mail_subject_reminder: "%{count} assumptes venceran els següents %{days} dies"
206 206 mail_body_reminder: "%{count} assumptes que teniu assignades venceran els següents %{days} dies:"
207 207 mail_subject_wiki_content_added: "S'ha afegit la pàgina wiki «%{id}»"
208 208 mail_body_wiki_content_added: "En %{author} ha afegit la pàgina wiki «%{id}»."
209 209 mail_subject_wiki_content_updated: "S'ha actualitzat la pàgina wiki «%{id}»"
210 210 mail_body_wiki_content_updated: "En %{author} ha actualitzat la pàgina wiki «%{id}»."
211 211
212 212 gui_validation_error: 1 error
213 213 gui_validation_error_plural: "%{count} errors"
214 214
215 215 field_name: Nom
216 216 field_description: Descripció
217 217 field_summary: Resum
218 218 field_is_required: Necessari
219 219 field_firstname: Nom
220 220 field_lastname: Cognom
221 221 field_mail: Correu electrònic
222 222 field_filename: Fitxer
223 223 field_filesize: Mida
224 224 field_downloads: Baixades
225 225 field_author: Autor
226 226 field_created_on: Creat
227 227 field_updated_on: Actualitzat
228 228 field_field_format: Format
229 229 field_is_for_all: Per a tots els projectes
230 230 field_possible_values: Valores possibles
231 231 field_regexp: Expressió regular
232 232 field_min_length: Longitud mínima
233 233 field_max_length: Longitud màxima
234 234 field_value: Valor
235 235 field_category: Categoria
236 236 field_title: Títol
237 237 field_project: Projecte
238 238 field_issue: Assumpte
239 239 field_status: Estat
240 240 field_notes: Notes
241 241 field_is_closed: Assumpte tancat
242 242 field_is_default: Estat predeterminat
243 243 field_tracker: Seguidor
244 244 field_subject: Tema
245 245 field_due_date: Data de venciment
246 246 field_assigned_to: Assignat a
247 247 field_priority: Prioritat
248 248 field_fixed_version: Versió objectiu
249 249 field_user: Usuari
250 250 field_principal: Principal
251 251 field_role: Rol
252 252 field_homepage: Pàgina web
253 253 field_is_public: Públic
254 254 field_parent: Subprojecte de
255 255 field_is_in_roadmap: Assumptes mostrats en la planificació
256 256 field_login: Entrada
257 257 field_mail_notification: Notificacions per correu electrònic
258 258 field_admin: Administrador
259 259 field_last_login_on: Última connexió
260 260 field_language: Idioma
261 261 field_effective_date: Data
262 262 field_password: Contrasenya
263 263 field_new_password: Contrasenya nova
264 264 field_password_confirmation: Confirmació
265 265 field_version: Versió
266 266 field_type: Tipus
267 267 field_host: Ordinador
268 268 field_port: Port
269 269 field_account: Compte
270 270 field_base_dn: Base DN
271 271 field_attr_login: "Atribut d'entrada"
272 272 field_attr_firstname: Atribut del nom
273 273 field_attr_lastname: Atribut del cognom
274 274 field_attr_mail: Atribut del correu electrònic
275 275 field_onthefly: "Creació de l'usuari «al vol»"
276 276 field_start_date: Inici
277 277 field_done_ratio: "% realitzat"
278 278 field_auth_source: "Mode d'autenticació"
279 279 field_hide_mail: "Oculta l'adreça de correu electrònic"
280 280 field_comments: Comentari
281 281 field_url: URL
282 282 field_start_page: Pàgina inicial
283 283 field_subproject: Subprojecte
284 284 field_hours: Hores
285 285 field_activity: Activitat
286 286 field_spent_on: Data
287 287 field_identifier: Identificador
288 288 field_is_filter: "S'ha utilitzat com a filtre"
289 289 field_issue_to: Assumpte relacionat
290 290 field_delay: Retard
291 291 field_assignable: Es poden assignar assumptes a aquest rol
292 292 field_redirect_existing_links: Redirigeix els enllaços existents
293 293 field_estimated_hours: Temps previst
294 294 field_column_names: Columnes
295 295 field_time_entries: "Registre de temps"
296 296 field_time_zone: Zona horària
297 297 field_searchable: Es pot cercar
298 298 field_default_value: Valor predeterminat
299 299 field_comments_sorting: Mostra els comentaris
300 300 field_parent_title: Pàgina pare
301 301 field_editable: Es pot editar
302 302 field_watcher: Vigilància
303 303 field_identity_url: URL OpenID
304 304 field_content: Contingut
305 305 field_group_by: "Agrupa els resultats per"
306 306 field_sharing: Compartició
307 307 field_parent_issue: "Tasca pare"
308 308
309 309 setting_app_title: "Títol de l'aplicació"
310 310 setting_app_subtitle: "Subtítol de l'aplicació"
311 311 setting_welcome_text: Text de benvinguda
312 312 setting_default_language: Idioma predeterminat
313 313 setting_login_required: Es necessita autenticació
314 314 setting_self_registration: Registre automàtic
315 315 setting_attachment_max_size: Mida màxima dels adjunts
316 316 setting_issues_export_limit: "Límit d'exportació d'assumptes"
317 317 setting_mail_from: "Adreça de correu electrònic d'emissió"
318 318 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
319 319 setting_plain_text_mail: només text pla (no HTML)
320 320 setting_host_name: "Nom de l'ordinador"
321 321 setting_text_formatting: Format del text
322 322 setting_wiki_compression: "Comprimeix l'historial del wiki"
323 323 setting_feeds_limit: Límit de contingut del canal
324 324 setting_default_projects_public: Els projectes nous són públics per defecte
325 325 setting_autofetch_changesets: Omple automàticament les publicacions
326 326 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
327 327 setting_commit_ref_keywords: Paraules claus per a la referència
328 328 setting_commit_fix_keywords: Paraules claus per a la correcció
329 329 setting_autologin: Entrada automàtica
330 330 setting_date_format: Format de la data
331 331 setting_time_format: Format de hora
332 332 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
333 333 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
334 334 setting_emails_footer: Peu dels correus electrònics
335 335 setting_protocol: Protocol
336 336 setting_per_page_options: Opcions dels objectes per pàgina
337 337 setting_user_format: "Format de com mostrar l'usuari"
338 338 setting_activity_days_default: "Dies a mostrar l'activitat del projecte"
339 339 setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte"
340 340 setting_enabled_scm: "Habilita l'SCM"
341 341 setting_mail_handler_body_delimiters: "Trunca els correus electrònics després d'una d'aquestes línies"
342 342 setting_mail_handler_api_enabled: "Habilita el WS per correus electrònics d'entrada"
343 343 setting_mail_handler_api_key: Clau API
344 344 setting_sequential_project_identifiers: Genera identificadors de projecte seqüencials
345 345 setting_gravatar_enabled: "Utilitza les icones d'usuari Gravatar"
346 346 setting_gravatar_default: "Imatge Gravatar predeterminada"
347 347 setting_diff_max_lines_displayed: Número màxim de línies amb diferències mostrades
348 348 setting_file_max_size_displayed: Mida màxima dels fitxers de text mostrats en línia
349 349 setting_repository_log_display_limit: Número màxim de revisions que es mostren al registre de fitxers
350 350 setting_openid: "Permet entrar i registrar-se amb l'OpenID"
351 351 setting_password_min_length: "Longitud mínima de la contrasenya"
352 352 setting_new_project_user_role_id: "Aquest rol es dóna a un usuari no administrador per a crear projectes"
353 353 setting_default_projects_modules: "Mòduls activats per defecte en els projectes nous"
354 354 setting_issue_done_ratio: "Calcula tant per cent realitzat de l'assumpte amb"
355 355 setting_issue_done_ratio_issue_status: "Utilitza l'estat de l'assumpte"
356 356 setting_issue_done_ratio_issue_field: "Utilitza el camp de l'assumpte"
357 357 setting_start_of_week: "Inicia les setmanes en"
358 358 setting_rest_api_enabled: "Habilita el servei web REST"
359 359 setting_cache_formatted_text: Cache formatted text
360 360
361 361 permission_add_project: "Crea projectes"
362 362 permission_add_subprojects: "Crea subprojectes"
363 363 permission_edit_project: Edita el projecte
364 364 permission_select_project_modules: Selecciona els mòduls del projecte
365 365 permission_manage_members: Gestiona els membres
366 366 permission_manage_project_activities: "Gestiona les activitats del projecte"
367 367 permission_manage_versions: Gestiona les versions
368 368 permission_manage_categories: Gestiona les categories dels assumptes
369 369 permission_view_issues: "Visualitza els assumptes"
370 370 permission_add_issues: Afegeix assumptes
371 371 permission_edit_issues: Edita els assumptes
372 372 permission_manage_issue_relations: Gestiona les relacions dels assumptes
373 373 permission_add_issue_notes: Afegeix notes
374 374 permission_edit_issue_notes: Edita les notes
375 375 permission_edit_own_issue_notes: Edita les notes pròpies
376 376 permission_move_issues: Mou els assumptes
377 377 permission_delete_issues: Suprimeix els assumptes
378 378 permission_manage_public_queries: Gestiona les consultes públiques
379 379 permission_save_queries: Desa les consultes
380 380 permission_view_gantt: Visualitza la gràfica de Gantt
381 381 permission_view_calendar: Visualitza el calendari
382 382 permission_view_issue_watchers: Visualitza la llista de vigilàncies
383 383 permission_add_issue_watchers: Afegeix vigilàncies
384 384 permission_delete_issue_watchers: Suprimeix els vigilants
385 385 permission_log_time: Registra el temps invertit
386 386 permission_view_time_entries: Visualitza el temps invertit
387 387 permission_edit_time_entries: Edita els registres de temps
388 388 permission_edit_own_time_entries: Edita els registres de temps propis
389 389 permission_manage_news: Gestiona les noticies
390 390 permission_comment_news: Comenta les noticies
391 391 permission_manage_documents: Gestiona els documents
392 392 permission_view_documents: Visualitza els documents
393 393 permission_manage_files: Gestiona els fitxers
394 394 permission_view_files: Visualitza els fitxers
395 395 permission_manage_wiki: Gestiona el wiki
396 396 permission_rename_wiki_pages: Canvia el nom de les pàgines wiki
397 397 permission_delete_wiki_pages: Suprimeix les pàgines wiki
398 398 permission_view_wiki_pages: Visualitza el wiki
399 399 permission_view_wiki_edits: "Visualitza l'historial del wiki"
400 400 permission_edit_wiki_pages: Edita les pàgines wiki
401 401 permission_delete_wiki_pages_attachments: Suprimeix adjunts
402 402 permission_protect_wiki_pages: Protegeix les pàgines wiki
403 403 permission_manage_repository: Gestiona el dipòsit
404 404 permission_browse_repository: Navega pel dipòsit
405 405 permission_view_changesets: Visualitza els canvis realitzats
406 406 permission_commit_access: Accés a les publicacions
407 407 permission_manage_boards: Gestiona els taulers
408 408 permission_view_messages: Visualitza els missatges
409 409 permission_add_messages: Envia missatges
410 410 permission_edit_messages: Edita els missatges
411 411 permission_edit_own_messages: Edita els missatges propis
412 412 permission_delete_messages: Suprimeix els missatges
413 413 permission_delete_own_messages: Suprimeix els missatges propis
414 414 permission_export_wiki_pages: "Exporta les pàgines wiki"
415 415 permission_manage_subtasks: "Gestiona subtasques"
416 416
417 417 project_module_issue_tracking: "Seguidor d'assumptes"
418 418 project_module_time_tracking: Seguidor de temps
419 419 project_module_news: Noticies
420 420 project_module_documents: Documents
421 421 project_module_files: Fitxers
422 422 project_module_wiki: Wiki
423 423 project_module_repository: Dipòsit
424 424 project_module_boards: Taulers
425 425 project_module_calendar: Calendari
426 426 project_module_gantt: Gantt
427 427
428 428 label_user: Usuari
429 429 label_user_plural: Usuaris
430 430 label_user_new: Usuari nou
431 431 label_user_anonymous: Anònim
432 432 label_project: Projecte
433 433 label_project_new: Projecte nou
434 434 label_project_plural: Projectes
435 435 label_x_projects:
436 436 zero: cap projecte
437 437 one: 1 projecte
438 438 other: "%{count} projectes"
439 439 label_project_all: Tots els projectes
440 440 label_project_latest: Els últims projectes
441 441 label_issue: Assumpte
442 442 label_issue_new: Assumpte nou
443 443 label_issue_plural: Assumptes
444 444 label_issue_view_all: Visualitza tots els assumptes
445 445 label_issues_by: "Assumptes per %{value}"
446 446 label_issue_added: Assumpte afegit
447 447 label_issue_updated: Assumpte actualitzat
448 448 label_document: Document
449 449 label_document_new: Document nou
450 450 label_document_plural: Documents
451 451 label_document_added: Document afegit
452 452 label_role: Rol
453 453 label_role_plural: Rols
454 454 label_role_new: Rol nou
455 455 label_role_and_permissions: Rols i permisos
456 456 label_member: Membre
457 457 label_member_new: Membre nou
458 458 label_member_plural: Membres
459 459 label_tracker: Seguidor
460 460 label_tracker_plural: Seguidors
461 461 label_tracker_new: Seguidor nou
462 462 label_workflow: Flux de treball
463 463 label_issue_status: "Estat de l'assumpte"
464 464 label_issue_status_plural: "Estats de l'assumpte"
465 465 label_issue_status_new: Estat nou
466 466 label_issue_category: "Categoria de l'assumpte"
467 467 label_issue_category_plural: "Categories de l'assumpte"
468 468 label_issue_category_new: Categoria nova
469 469 label_custom_field: Camp personalitzat
470 470 label_custom_field_plural: Camps personalitzats
471 471 label_custom_field_new: Camp personalitzat nou
472 472 label_enumerations: Enumeracions
473 473 label_enumeration_new: Valor nou
474 474 label_information: Informació
475 475 label_information_plural: Informació
476 476 label_please_login: Entreu
477 477 label_register: Registre
478 478 label_login_with_open_id_option: "o entra amb l'OpenID"
479 479 label_password_lost: Contrasenya perduda
480 480 label_home: Inici
481 481 label_my_page: La meva pàgina
482 482 label_my_account: El meu compte
483 483 label_my_projects: Els meus projectes
484 484 label_my_page_block: "Els meus blocs de pàgina"
485 485 label_administration: Administració
486 486 label_login: Entra
487 487 label_logout: Surt
488 488 label_help: Ajuda
489 489 label_reported_issues: Assumptes informats
490 490 label_assigned_to_me_issues: Assumptes assignats a mi
491 491 label_last_login: Última connexió
492 492 label_registered_on: Informat el
493 493 label_activity: Activitat
494 494 label_overall_activity: Activitat global
495 495 label_user_activity: "Activitat de %{value}"
496 496 label_new: Nou
497 497 label_logged_as: Heu entrat com a
498 498 label_environment: Entorn
499 499 label_authentication: Autenticació
500 500 label_auth_source: "Mode d'autenticació"
501 501 label_auth_source_new: "Mode d'autenticació nou"
502 502 label_auth_source_plural: "Modes d'autenticació"
503 503 label_subproject_plural: Subprojectes
504 504 label_subproject_new: "Subprojecte nou"
505 505 label_and_its_subprojects: "%{value} i els seus subprojectes"
506 506 label_min_max_length: Longitud mín - max
507 507 label_list: Llist
508 508 label_date: Data
509 509 label_integer: Enter
510 510 label_float: Flotant
511 511 label_boolean: Booleà
512 512 label_string: Text
513 513 label_text: Text llarg
514 514 label_attribute: Atribut
515 515 label_attribute_plural: Atributs
516 516 label_download: "%{count} baixada"
517 517 label_download_plural: "%{count} baixades"
518 518 label_no_data: Sense dades a mostrar
519 519 label_change_status: "Canvia l'estat"
520 520 label_history: Historial
521 521 label_attachment: Fitxer
522 522 label_attachment_new: Fitxer nou
523 523 label_attachment_delete: Suprimeix el fitxer
524 524 label_attachment_plural: Fitxers
525 525 label_file_added: Fitxer afegit
526 526 label_report: Informe
527 527 label_report_plural: Informes
528 528 label_news: Noticies
529 529 label_news_new: Afegeix noticies
530 530 label_news_plural: Noticies
531 531 label_news_latest: Últimes noticies
532 532 label_news_view_all: Visualitza totes les noticies
533 533 label_news_added: Noticies afegides
534 534 label_settings: Paràmetres
535 535 label_overview: Resum
536 536 label_version: Versió
537 537 label_version_new: Versió nova
538 538 label_version_plural: Versions
539 539 label_close_versions: "Tanca les versions completades"
540 540 label_confirmation: Confirmació
541 541 label_export_to: "També disponible a:"
542 542 label_read: Llegeix...
543 543 label_public_projects: Projectes públics
544 544 label_open_issues: obert
545 545 label_open_issues_plural: oberts
546 546 label_closed_issues: tancat
547 547 label_closed_issues_plural: tancats
548 548 label_x_open_issues_abbr_on_total:
549 549 zero: 0 oberts / %{total}
550 550 one: 1 obert / %{total}
551 551 other: "%{count} oberts / %{total}"
552 552 label_x_open_issues_abbr:
553 553 zero: 0 oberts
554 554 one: 1 obert
555 555 other: "%{count} oberts"
556 556 label_x_closed_issues_abbr:
557 557 zero: 0 tancats
558 558 one: 1 tancat
559 559 other: "%{count} tancats"
560 560 label_total: Total
561 561 label_permissions: Permisos
562 562 label_current_status: Estat actual
563 563 label_new_statuses_allowed: Nous estats autoritzats
564 564 label_all: tots
565 565 label_none: cap
566 566 label_nobody: ningú
567 567 label_next: Següent
568 568 label_previous: Anterior
569 569 label_used_by: Utilitzat per
570 570 label_details: Detalls
571 571 label_add_note: Afegeix una nota
572 572 label_per_page: Per pàgina
573 573 label_calendar: Calendari
574 574 label_months_from: mesos des de
575 575 label_gantt: Gantt
576 576 label_internal: Intern
577 577 label_last_changes: "últims %{count} canvis"
578 578 label_change_view_all: Visualitza tots els canvis
579 579 label_personalize_page: Personalitza aquesta pàgina
580 580 label_comment: Comentari
581 581 label_comment_plural: Comentaris
582 582 label_x_comments:
583 583 zero: sense comentaris
584 584 one: 1 comentari
585 585 other: "%{count} comentaris"
586 586 label_comment_add: Afegeix un comentari
587 587 label_comment_added: Comentari afegit
588 588 label_comment_delete: Suprimeix comentaris
589 589 label_query: Consulta personalitzada
590 590 label_query_plural: Consultes personalitzades
591 591 label_query_new: Consulta nova
592 592 label_filter_add: Afegeix un filtre
593 593 label_filter_plural: Filtres
594 594 label_equals: és
595 595 label_not_equals: no és
596 596 label_in_less_than: en menys de
597 597 label_in_more_than: en més de
598 598 label_greater_or_equal: ">="
599 599 label_less_or_equal: <=
600 600 label_in: en
601 601 label_today: avui
602 602 label_all_time: tot el temps
603 603 label_yesterday: ahir
604 604 label_this_week: aquesta setmana
605 605 label_last_week: "l'última setmana"
606 606 label_last_n_days: "els últims %{count} dies"
607 607 label_this_month: aquest més
608 608 label_last_month: "l'últim més"
609 609 label_this_year: aquest any
610 610 label_date_range: Abast de les dates
611 611 label_less_than_ago: fa menys de
612 612 label_more_than_ago: fa més de
613 613 label_ago: fa
614 614 label_contains: conté
615 615 label_not_contains: no conté
616 616 label_day_plural: dies
617 617 label_repository: Dipòsit
618 618 label_repository_plural: Dipòsits
619 619 label_browse: Navega
620 620 label_modification: "%{count} canvi"
621 621 label_modification_plural: "%{count} canvis"
622 622 label_branch: Branca
623 623 label_tag: Etiqueta
624 624 label_revision: Revisió
625 625 label_revision_plural: Revisions
626 626 label_revision_id: "Revisió %{value}"
627 627 label_associated_revisions: Revisions associades
628 628 label_added: afegit
629 629 label_modified: modificat
630 630 label_copied: copiat
631 631 label_renamed: reanomenat
632 632 label_deleted: suprimit
633 633 label_latest_revision: Última revisió
634 634 label_latest_revision_plural: Últimes revisions
635 635 label_view_revisions: Visualitza les revisions
636 636 label_view_all_revisions: "Visualitza totes les revisions"
637 637 label_max_size: Mida màxima
638 638 label_sort_highest: Mou a la part superior
639 639 label_sort_higher: Mou cap amunt
640 640 label_sort_lower: Mou cap avall
641 641 label_sort_lowest: Mou a la part inferior
642 642 label_roadmap: Planificació
643 643 label_roadmap_due_in: "Venç en %{value}"
644 644 label_roadmap_overdue: "%{value} tard"
645 645 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
646 646 label_search: Cerca
647 647 label_result_plural: Resultats
648 648 label_all_words: Totes les paraules
649 649 label_wiki: Wiki
650 650 label_wiki_edit: Edició wiki
651 651 label_wiki_edit_plural: Edicions wiki
652 652 label_wiki_page: Pàgina wiki
653 653 label_wiki_page_plural: Pàgines wiki
654 654 label_index_by_title: Índex per títol
655 655 label_index_by_date: Índex per data
656 656 label_current_version: Versió actual
657 657 label_preview: Previsualització
658 658 label_feed_plural: Canals
659 659 label_changes_details: Detalls de tots els canvis
660 660 label_issue_tracking: "Seguiment d'assumptes"
661 661 label_spent_time: Temps invertit
662 662 label_overall_spent_time: "Temps total invertit"
663 663 label_f_hour: "%{value} hora"
664 664 label_f_hour_plural: "%{value} hores"
665 665 label_time_tracking: Temps de seguiment
666 666 label_change_plural: Canvis
667 667 label_statistics: Estadístiques
668 668 label_commits_per_month: Publicacions per mes
669 669 label_commits_per_author: Publicacions per autor
670 670 label_view_diff: Visualitza les diferències
671 671 label_diff_inline: en línia
672 672 label_diff_side_by_side: costat per costat
673 673 label_options: Opcions
674 674 label_copy_workflow_from: Copia el flux de treball des de
675 675 label_permissions_report: Informe de permisos
676 676 label_watched_issues: Assumptes vigilats
677 677 label_related_issues: Assumptes relacionats
678 678 label_applied_status: Estat aplicat
679 679 label_loading: "S'està carregant..."
680 680 label_relation_new: Relació nova
681 681 label_relation_delete: Suprimeix la relació
682 682 label_relates_to: relacionat amb
683 683 label_duplicates: duplicats
684 684 label_duplicated_by: duplicat per
685 685 label_blocks: bloqueja
686 686 label_blocked_by: bloquejats per
687 687 label_precedes: anterior a
688 688 label_follows: posterior a
689 689 label_end_to_start: final al començament
690 690 label_end_to_end: final al final
691 691 label_start_to_start: començament al començament
692 692 label_start_to_end: començament al final
693 693 label_stay_logged_in: "Manté l'entrada"
694 694 label_disabled: inhabilitat
695 695 label_show_completed_versions: Mostra les versions completes
696 696 label_me: jo mateix
697 697 label_board: Fòrum
698 698 label_board_new: Fòrum nou
699 699 label_board_plural: Fòrums
700 700 label_board_locked: Bloquejat
701 701 label_board_sticky: Sticky
702 702 label_topic_plural: Temes
703 703 label_message_plural: Missatges
704 704 label_message_last: Últim missatge
705 705 label_message_new: Missatge nou
706 706 label_message_posted: Missatge afegit
707 707 label_reply_plural: Respostes
708 708 label_send_information: "Envia la informació del compte a l'usuari"
709 709 label_year: Any
710 710 label_month: Mes
711 711 label_week: Setmana
712 712 label_date_from: Des de
713 713 label_date_to: A
714 714 label_language_based: "Basat en l'idioma de l'usuari"
715 715 label_sort_by: "Ordena per %{value}"
716 716 label_send_test_email: Envia un correu electrònic de prova
717 717 label_feeds_access_key: "Clau d'accés del RSS"
718 718 label_missing_feeds_access_key: "Falta una clau d'accés del RSS"
719 719 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa %{value}"
720 720 label_module_plural: Mòduls
721 721 label_added_time_by: "Afegit per %{author} fa %{age}"
722 722 label_updated_time_by: "Actualitzat per %{author} fa %{age}"
723 723 label_updated_time: "Actualitzat fa %{value}"
724 724 label_jump_to_a_project: Salta al projecte...
725 725 label_file_plural: Fitxers
726 726 label_changeset_plural: Conjunt de canvis
727 727 label_default_columns: Columnes predeterminades
728 728 label_no_change_option: (sense canvis)
729 729 label_bulk_edit_selected_issues: Edita en bloc els assumptes seleccionats
730 730 label_theme: Tema
731 731 label_default: Predeterminat
732 732 label_search_titles_only: Cerca només en els títols
733 733 label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes"
734 734 label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..."
735 735 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix"
736 736 label_registration_activation_by_email: activació del compte per correu electrònic
737 737 label_registration_manual_activation: activació del compte manual
738 738 label_registration_automatic_activation: activació del compte automàtica
739 739 label_display_per_page: "Per pàgina: %{value}"
740 740 label_age: Edat
741 741 label_change_properties: Canvia les propietats
742 742 label_general: General
743 743 label_more: Més
744 744 label_scm: SCM
745 745 label_plugins: Connectors
746 746 label_ldap_authentication: Autenticació LDAP
747 747 label_downloads_abbr: Baixades
748 748 label_optional_description: Descripció opcional
749 749 label_add_another_file: Afegeix un altre fitxer
750 750 label_preferences: Preferències
751 751 label_chronological_order: En ordre cronològic
752 752 label_reverse_chronological_order: En ordre cronològic invers
753 753 label_planning: Planificació
754 754 label_incoming_emails: "Correu electrònics d'entrada"
755 755 label_generate_key: Genera una clau
756 756 label_issue_watchers: Vigilàncies
757 757 label_example: Exemple
758 758 label_display: Mostra
759 759 label_sort: Ordena
760 760 label_ascending: Ascendent
761 761 label_descending: Descendent
762 762 label_date_from_to: Des de %{start} a %{end}
763 763 label_wiki_content_added: "S'ha afegit la pàgina wiki"
764 764 label_wiki_content_updated: "S'ha actualitzat la pàgina wiki"
765 765 label_group: Grup
766 766 label_group_plural: Grups
767 767 label_group_new: Grup nou
768 768 label_time_entry_plural: Temps invertit
769 769 label_version_sharing_hierarchy: "Amb la jerarquia del projecte"
770 770 label_version_sharing_system: "Amb tots els projectes"
771 771 label_version_sharing_descendants: "Amb tots els subprojectes"
772 772 label_version_sharing_tree: "Amb l'arbre del projecte"
773 773 label_version_sharing_none: "Sense compartir"
774 774 label_update_issue_done_ratios: "Actualitza el tant per cent dels assumptes realitzats"
775 775 label_copy_source: Font
776 776 label_copy_target: Objectiu
777 777 label_copy_same_as_target: "El mateix que l'objectiu"
778 778 label_display_used_statuses_only: "Mostra només els estats que utilitza aquest seguidor"
779 779 label_api_access_key: "Clau d'accés a l'API"
780 780 label_missing_api_access_key: "Falta una clau d'accés de l'API"
781 781 label_api_access_key_created_on: "Clau d'accés de l'API creada fa %{value}"
782 782 label_profile: Perfil
783 783 label_subtask_plural: Subtasques
784 784 label_project_copy_notifications: "Envia notificacions de correu electrònic durant la còpia del projecte"
785 785
786 786 button_login: Entra
787 787 button_submit: Tramet
788 788 button_save: Desa
789 789 button_check_all: Activa-ho tot
790 790 button_uncheck_all: Desactiva-ho tot
791 791 button_delete: Suprimeix
792 792 button_create: Crea
793 793 button_create_and_continue: Crea i continua
794 794 button_test: Test
795 795 button_edit: Edit
796 796 button_add: Afegeix
797 797 button_change: Canvia
798 798 button_apply: Aplica
799 799 button_clear: Neteja
800 800 button_lock: Bloca
801 801 button_unlock: Desbloca
802 802 button_download: Baixa
803 803 button_list: Llista
804 804 button_view: Visualitza
805 805 button_move: Mou
806 806 button_move_and_follow: "Mou i segueix"
807 807 button_back: Enrere
808 808 button_cancel: Cancel·la
809 809 button_activate: Activa
810 810 button_sort: Ordena
811 811 button_log_time: "Registre de temps"
812 812 button_rollback: Torna a aquesta versió
813 813 button_watch: Vigila
814 814 button_unwatch: No vigilis
815 815 button_reply: Resposta
816 816 button_archive: Arxiva
817 817 button_unarchive: Desarxiva
818 818 button_reset: Reinicia
819 819 button_rename: Reanomena
820 820 button_change_password: Canvia la contrasenya
821 821 button_copy: Copia
822 822 button_copy_and_follow: "Copia i segueix"
823 823 button_annotate: Anota
824 824 button_update: Actualitza
825 825 button_configure: Configura
826 826 button_quote: Cita
827 827 button_duplicate: Duplica
828 828 button_show: Mostra
829 829
830 830 status_active: actiu
831 831 status_registered: informat
832 832 status_locked: bloquejat
833 833
834 834 version_status_open: oberta
835 835 version_status_locked: bloquejada
836 836 version_status_closed: tancada
837 837
838 838 field_active: Actiu
839 839
840 840 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria d'enviar una notificació per correu electrònic."
841 841 text_regexp_info: ex. ^[A-Z0-9]+$
842 842 text_min_max_length_info: 0 significa sense restricció
843 843 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
844 844 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: %{value}."
845 845 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
846 846 text_are_you_sure: Segur?
847 847 text_journal_changed: "%{label} ha canviat de %{old} a %{new}"
848 848 text_journal_set_to: "%{label} s'ha establert a %{value}"
849 849 text_journal_deleted: "%{label} s'ha suprimit (%{old})"
850 850 text_journal_added: "S'ha afegit %{label} %{value}"
851 851 text_tip_issue_begin_day: "tasca que s'inicia aquest dia"
852 852 text_tip_issue_end_day: tasca que finalitza aquest dia
853 853 text_tip_issue_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
854 854 text_caracters_maximum: "%{count} caràcters com a màxim."
855 855 text_caracters_minimum: "Com a mínim ha de tenir %{count} caràcters."
856 856 text_length_between: "Longitud entre %{min} i %{max} caràcters."
857 857 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
858 858 text_unallowed_characters: Caràcters no permesos
859 859 text_comma_separated: Es permeten valors múltiples (separats per una coma).
860 860 text_line_separated: "Es permeten diversos valors (una línia per cada valor)."
861 861 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
862 862 text_issue_added: "L'assumpte %{id} ha sigut informat per %{author}."
863 863 text_issue_updated: "L'assumpte %{id} ha sigut actualitzat per %{author}."
864 864 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
865 865 text_issue_category_destroy_question: "Alguns assumptes (%{count}) estan assignats a aquesta categoria. Què voleu fer?"
866 866 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
867 867 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
868 868 text_user_mail_option: "Per als projectes no seleccionats, només rebreu notificacions sobre les coses que vigileu o que hi esteu implicat (ex. assumptes que en sou l'autor o hi esteu assignat)."
869 869 text_no_configuration_data: "Encara no s'han configurat els rols, seguidors, estats de l'assumpte i flux de treball.\nÉs altament recomanable que carregueu la configuració predeterminada. Podreu modificar-la un cop carregada."
870 870 text_load_default_configuration: Carrega la configuració predeterminada
871 871 text_status_changed_by_changeset: "Aplicat en el conjunt de canvis %{value}."
872 872 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
873 873 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
874 874 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
875 875 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
876 876 text_plugin_assets_writable: Es pot escriure als connectors actius
877 877 text_rmagick_available: RMagick disponible (opcional)
878 878 text_destroy_time_entries_question: "S'han informat %{hours} hores en els assumptes que aneu a suprimir. Què voleu fer?"
879 879 text_destroy_time_entries: Suprimeix les hores informades
880 880 text_assign_time_entries_to_project: Assigna les hores informades al projecte
881 881 text_reassign_time_entries: "Torna a assignar les hores informades a aquest assumpte:"
882 882 text_user_wrote: "%{value} va escriure:"
883 883 text_enumeration_destroy_question: "%{count} objectes estan assignats a aquest valor."
884 884 text_enumeration_category_reassign_to: "Torna a assignar-los a aquest valor:"
885 885 text_email_delivery_not_configured: "El lliurament per correu electrònic no està configurat i les notificacions estan inhabilitades.\nConfigureu el servidor SMTP a config/configuration.yml i reinicieu l'aplicació per habilitar-lo."
886 886 text_repository_usernames_mapping: "Seleccioneu l'assignació entre els usuaris del Redmine i cada nom d'usuari trobat al dipòsit.\nEls usuaris amb el mateix nom d'usuari o correu del Redmine i del dipòsit s'assignaran automàticament."
887 887 text_diff_truncated: "... Aquestes diferències s'han trucat perquè excedeixen la mida màxima que es pot mostrar."
888 888 text_custom_field_possible_values_info: "Una línia per a cada valor"
889 889 text_wiki_page_destroy_question: "Aquesta pàgina %{descendants} pàgines fill i descendents. Què voleu fer?"
890 890 text_wiki_page_nullify_children: "Deixa les pàgines fill com a pàgines arrel"
891 891 text_wiki_page_destroy_children: "Suprimeix les pàgines fill i tots els seus descendents"
892 892 text_wiki_page_reassign_children: "Reasigna les pàgines fill a aquesta pàgina pare"
893 893 text_own_membership_delete_confirmation: "Esteu a punt de suprimir algun o tots els vostres permisos i potser no podreu editar més aquest projecte.\nSegur que voleu continuar?"
894 894 text_zoom_in: Redueix
895 895 text_zoom_out: Amplia
896 896
897 897 default_role_manager: Gestor
898 898 default_role_developer: Desenvolupador
899 899 default_role_reporter: Informador
900 900 default_tracker_bug: Error
901 901 default_tracker_feature: Característica
902 902 default_tracker_support: Suport
903 903 default_issue_status_new: Nou
904 904 default_issue_status_in_progress: In Progress
905 905 default_issue_status_resolved: Resolt
906 906 default_issue_status_feedback: Comentaris
907 907 default_issue_status_closed: Tancat
908 908 default_issue_status_rejected: Rebutjat
909 909 default_doc_category_user: "Documentació d'usuari"
910 910 default_doc_category_tech: Documentació tècnica
911 911 default_priority_low: Baixa
912 912 default_priority_normal: Normal
913 913 default_priority_high: Alta
914 914 default_priority_urgent: Urgent
915 915 default_priority_immediate: Immediata
916 916 default_activity_design: Disseny
917 917 default_activity_development: Desenvolupament
918 918
919 919 enumeration_issue_priorities: Prioritat dels assumptes
920 920 enumeration_doc_categories: Categories del document
921 921 enumeration_activities: Activitats (seguidor de temps)
922 922 enumeration_system_activity: Activitat del sistema
923 923
924 924 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
925 925 text_are_you_sure_with_children: Delete issue and all child issues?
926 926 field_text: Text field
927 927 label_user_mail_option_only_owner: Only for things I am the owner of
928 928 setting_default_notification_option: Default notification option
929 929 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
930 930 label_user_mail_option_only_assigned: Only for things I am assigned to
931 931 label_user_mail_option_none: No events
932 932 field_member_of_group: Assignee's group
933 933 field_assigned_to_role: Assignee's role
934 934 notice_not_authorized_archived_project: The project you're trying to access has been archived.
935 935 label_principal_search: "Search for user or group:"
936 936 label_user_search: "Search for user:"
937 937 field_visible: Visible
938 938 setting_emails_header: Emails header
939 939 setting_commit_logtime_activity_id: Activity for logged time
940 940 text_time_logged_by_changeset: Applied in changeset %{value}.
941 941 setting_commit_logtime_enabled: Enable time logging
942 942 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
943 943 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
944 944 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
945 945 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
946 946 label_my_queries: My custom queries
947 947 text_journal_changed_no_detail: "%{label} updated"
948 948 label_news_comment_added: Comment added to a news
949 949 button_expand_all: Expand all
950 950 button_collapse_all: Collapse all
951 951 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
952 952 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
953 953 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
954 954 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
955 955 label_role_anonymous: Anonymous
956 956 label_role_non_member: Non member
957 957 label_issue_note_added: Note added
958 958 label_issue_status_updated: Status updated
959 959 label_issue_priority_updated: Priority updated
960 960 label_issues_visibility_own: Issues created by or assigned to the user
961 961 field_issues_visibility: Issues visibility
962 962 label_issues_visibility_all: All issues
963 963 permission_set_own_issues_private: Set own issues public or private
964 964 field_is_private: Private
965 965 permission_set_issues_private: Set issues public or private
966 966 label_issues_visibility_public: All non private issues
967 967 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
968 968 field_commit_logs_encoding: Codificació dels missatges publicats
969 969 field_scm_path_encoding: Path encoding
970 970 text_scm_path_encoding_note: "Default: UTF-8"
971 971 field_path_to_repository: Path to repository
972 972 field_root_directory: Root directory
973 973 field_cvs_module: Module
974 974 field_cvsroot: CVSROOT
975 975 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
976 976 text_scm_command: Command
977 977 text_scm_command_version: Version
978 978 label_git_report_last_commit: Report last commit for files and directories
979 979 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
980 980 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
981 981 notice_issue_successful_create: Issue %{id} created.
982 982 label_between: between
983 983 setting_issue_group_assignment: Allow issue assignment to groups
984 984 label_diff: diff
985 985 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
986 986 description_query_sort_criteria_direction: Sort direction
987 987 description_project_scope: Search scope
988 988 description_filter: Filter
989 989 description_user_mail_notification: Mail notification settings
990 990 description_date_from: Enter start date
991 991 description_message_content: Message content
992 992 description_available_columns: Available Columns
993 993 description_date_range_interval: Choose range by selecting start and end date
994 994 description_issue_category_reassign: Choose issue category
995 995 description_search: Searchfield
996 996 description_notes: Notes
997 997 description_date_range_list: Choose range from list
998 998 description_choose_project: Projects
999 999 description_date_to: Enter end date
1000 1000 description_query_sort_criteria_attribute: Sort attribute
1001 1001 description_wiki_subpages_reassign: Choose new parent page
1002 1002 description_selected_columns: Selected Columns
1003 1003 label_parent_revision: Parent
1004 1004 label_child_revision: Child
1005 1005 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
1006 1006 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1007 1007 button_edit_section: Edit this section
1008 1008 setting_repositories_encodings: Attachments and repositories encodings
1009 1009 description_all_columns: All Columns
1010 1010 button_export: Export
1011 1011 label_export_options: "%{export_format} export options"
1012 1012 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1013 1013 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1014 1014 label_x_issues:
1015 1015 zero: 0 assumpte
1016 1016 one: 1 assumpte
1017 1017 other: "%{count} assumptes"
1018 1018 label_repository_new: New repository
1019 1019 field_repository_is_default: Main repository
1020 1020 label_copy_attachments: Copy attachments
1021 1021 label_item_position: "%{position}/%{count}"
1022 1022 label_completed_versions: Completed versions
1023 1023 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1024 1024 field_multiple: Multiple values
1025 1025 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1026 1026 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1027 1027 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1028 1028 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1029 1029 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1030 1030 permission_manage_related_issues: Manage related issues
1031 1031 field_ldap_filter: LDAP filter
1032 1032 label_search_for_watchers: Search for watchers to add
1033 1033 notice_account_deleted: Your account has been permanently deleted.
1034 1034 setting_unsubscribe: Allow users to delete their own account
1035 1035 button_delete_my_account: Delete my account
1036 1036 text_account_destroy_confirmation: |-
1037 1037 Are you sure you want to proceed?
1038 1038 Your account will be permanently deleted, with no way to reactivate it.
1039 1039 error_session_expired: Your session has expired. Please login again.
1040 1040 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1041 1041 setting_session_lifetime: Session maximum lifetime
1042 1042 setting_session_timeout: Session inactivity timeout
1043 1043 label_session_expiration: Session expiration
1044 1044 permission_close_project: Close / reopen the project
1045 1045 label_show_closed_projects: View closed projects
1046 1046 button_close: Close
1047 1047 button_reopen: Reopen
1048 1048 project_status_active: active
1049 1049 project_status_closed: closed
1050 1050 project_status_archived: archived
1051 1051 text_project_closed: This project is closed and read-only.
1052 1052 notice_user_successful_create: User %{id} created.
1053 1053 field_core_fields: Standard fields
1054 1054 field_timeout: Timeout (in seconds)
1055 1055 setting_thumbnails_enabled: Display attachment thumbnails
1056 1056 setting_thumbnails_size: Thumbnails size (in pixels)
1057 label_status_transitions: Status transitions
1058 label_fields_permissions: Fields permissions
1059 label_readonly: Read-only
1060 label_required: Required
@@ -1,1057 +1,1061
1 1 # Update to 1.1 by Michal Gebauer <mishak@mishak.net>
2 2 # Updated by Josef Liška <jl@chl.cz>
3 3 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
4 4 # Based on original CZ translation by Jan Kadleček
5 5 cs:
6 6 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
7 7 direction: ltr
8 8 date:
9 9 formats:
10 10 # Use the strftime parameters for formats.
11 11 # When no format has been given, it uses default.
12 12 # You can provide other formats here if you like!
13 13 default: "%Y-%m-%d"
14 14 short: "%b %d"
15 15 long: "%B %d, %Y"
16 16
17 17 day_names: [Neděle, Pondělí, Úterý, Středa, Čtvrtek, Pátek, Sobota]
18 18 abbr_day_names: [Ne, Po, Út, St, Čt, , So]
19 19
20 20 # Don't forget the nil at the beginning; there's no such thing as a 0th month
21 21 month_names: [~, Leden, Únor, Březen, Duben, Květen, Červen, Červenec, Srpen, Září, Říjen, Listopad, Prosinec]
22 22 abbr_month_names: [~, Led, Úno, Bře, Dub, Kvě, Čer, Čec, Srp, Zář, Říj, Lis, Pro]
23 23 # Used in date_select and datime_select.
24 24 order:
25 25 - :year
26 26 - :month
27 27 - :day
28 28
29 29 time:
30 30 formats:
31 31 default: "%a, %d %b %Y %H:%M:%S %z"
32 32 time: "%H:%M"
33 33 short: "%d %b %H:%M"
34 34 long: "%B %d, %Y %H:%M"
35 35 am: "dop."
36 36 pm: "odp."
37 37
38 38 datetime:
39 39 distance_in_words:
40 40 half_a_minute: "půl minuty"
41 41 less_than_x_seconds:
42 42 one: "méně než sekunda"
43 43 other: "méně než %{count} sekund"
44 44 x_seconds:
45 45 one: "1 sekunda"
46 46 other: "%{count} sekund"
47 47 less_than_x_minutes:
48 48 one: "méně než minuta"
49 49 other: "méně než %{count} minut"
50 50 x_minutes:
51 51 one: "1 minuta"
52 52 other: "%{count} minut"
53 53 about_x_hours:
54 54 one: "asi 1 hodina"
55 55 other: "asi %{count} hodin"
56 56 x_hours:
57 57 one: "1 hour"
58 58 other: "%{count} hours"
59 59 x_days:
60 60 one: "1 den"
61 61 other: "%{count} dnů"
62 62 about_x_months:
63 63 one: "asi 1 měsíc"
64 64 other: "asi %{count} měsíců"
65 65 x_months:
66 66 one: "1 měsíc"
67 67 other: "%{count} měsíců"
68 68 about_x_years:
69 69 one: "asi 1 rok"
70 70 other: "asi %{count} let"
71 71 over_x_years:
72 72 one: "více než 1 rok"
73 73 other: "více než %{count} roky"
74 74 almost_x_years:
75 75 one: "témeř 1 rok"
76 76 other: "téměř %{count} roky"
77 77
78 78 number:
79 79 # Výchozí formát pro čísla
80 80 format:
81 81 separator: "."
82 82 delimiter: ""
83 83 precision: 3
84 84 human:
85 85 format:
86 86 delimiter: ""
87 87 precision: 3
88 88 storage_units:
89 89 format: "%n %u"
90 90 units:
91 91 byte:
92 92 one: "Bajt"
93 93 other: "Bajtů"
94 94 kb: "KB"
95 95 mb: "MB"
96 96 gb: "GB"
97 97 tb: "TB"
98 98
99 99 # Used in array.to_sentence.
100 100 support:
101 101 array:
102 102 sentence_connector: "a"
103 103 skip_last_comma: false
104 104
105 105 activerecord:
106 106 errors:
107 107 template:
108 108 header:
109 109 one: "1 chyba zabránila uložení %{model}"
110 110 other: "%{count} chyb zabránilo uložení %{model}"
111 111 messages:
112 112 inclusion: "není zahrnuto v seznamu"
113 113 exclusion: "je rezervováno"
114 114 invalid: "je neplatné"
115 115 confirmation: "se neshoduje s potvrzením"
116 116 accepted: "musí být akceptováno"
117 117 empty: "nemůže být prázdný"
118 118 blank: "nemůže být prázdný"
119 119 too_long: "je příliš dlouhý"
120 120 too_short: "je příliš krátký"
121 121 wrong_length: "má chybnou délku"
122 122 taken: "je již použito"
123 123 not_a_number: "není číslo"
124 124 not_a_date: "není platné datum"
125 125 greater_than: "musí být větší než %{count}"
126 126 greater_than_or_equal_to: "musí být větší nebo rovno %{count}"
127 127 equal_to: "musí být přesně %{count}"
128 128 less_than: "musí být méně než %{count}"
129 129 less_than_or_equal_to: "musí být méně nebo rovno %{count}"
130 130 odd: "musí být liché"
131 131 even: "musí být sudé"
132 132 greater_than_start_date: "musí být větší než počáteční datum"
133 133 not_same_project: "nepatří stejnému projektu"
134 134 circular_dependency: "Tento vztah by vytvořil cyklickou závislost"
135 135 cant_link_an_issue_with_a_descendant: "Úkol nemůže být spojen s jedním z jeho dílčích úkolů"
136 136
137 137 actionview_instancetag_blank_option: Prosím vyberte
138 138
139 139 general_text_No: 'Ne'
140 140 general_text_Yes: 'Ano'
141 141 general_text_no: 'ne'
142 142 general_text_yes: 'ano'
143 143 general_lang_name: 'Čeština'
144 144 general_csv_separator: ','
145 145 general_csv_decimal_separator: '.'
146 146 general_csv_encoding: UTF-8
147 147 general_pdf_encoding: UTF-8
148 148 general_first_day_of_week: '1'
149 149
150 150 notice_account_updated: Účet byl úspěšně změněn.
151 151 notice_account_invalid_creditentials: Chybné jméno nebo heslo
152 152 notice_account_password_updated: Heslo bylo úspěšně změněno.
153 153 notice_account_wrong_password: Chybné heslo
154 154 notice_account_register_done: Účet byl úspěšně vytvořen. Pro aktivaci účtu klikněte na odkaz v emailu, který vám byl zaslán.
155 155 notice_account_unknown_email: Neznámý uživatel.
156 156 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
157 157 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
158 158 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
159 159 notice_successful_create: Úspěšně vytvořeno.
160 160 notice_successful_update: Úspěšně aktualizováno.
161 161 notice_successful_delete: Úspěšně odstraněno.
162 162 notice_successful_connection: Úspěšné připojení.
163 163 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
164 164 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
165 165 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
166 166 notice_not_authorized_archived_project: Projekt ke kterému se snažíte přistupovat byl archivován.
167 167 notice_email_sent: "Na adresu %{value} byl odeslán email"
168 168 notice_email_error: "Při odesílání emailu nastala chyba (%{value})"
169 169 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
170 170 notice_api_access_key_reseted: Váš API přístupový klíč byl resetován.
171 171 notice_failed_to_save_issues: "Chyba při uložení %{count} úkolu(ů) z %{total} vybraných: %{ids}."
172 172 notice_failed_to_save_members: "Nepodařilo se uložit člena(y): %{errors}."
173 173 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
174 174 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
175 175 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
176 176 notice_unable_delete_version: Nemohu odstanit verzi
177 177 notice_unable_delete_time_entry: Nelze smazat čas ze záznamu.
178 178 notice_issue_done_ratios_updated: Koeficienty dokončení úkolu byly aktualizovány.
179 179 notice_gantt_chart_truncated: Graf byl oříznut, počet položek přesáhl limit pro zobrazení (%{max})
180 180
181 181 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %{value}"
182 182 error_scm_not_found: "Položka a/nebo revize neexistují v repozitáři."
183 183 error_scm_command_failed: "Při pokusu o přístup k repozitáři došlo k chybě: %{value}"
184 184 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
185 185 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
186 186 error_no_tracker_in_project: Žádná fronta nebyla přiřazena tomuto projektu. Prosím zkontroluje nastavení projektu.
187 187 error_no_default_issue_status: Není nastaven výchozí stav úkolu. Prosím zkontrolujte nastavení ("Administrace -> Stavy úkolů").
188 188 error_can_not_delete_custom_field: Nelze smazat volitelné pole
189 189 error_can_not_delete_tracker: Tato fronta obsahuje úkoly a nemůže být smazán.
190 190 error_can_not_remove_role: Tato role je právě používaná a nelze ji smazat.
191 191 error_can_not_reopen_issue_on_closed_version: Úkol přiřazený k uzavřené verzi nemůže být znovu otevřen
192 192 error_can_not_archive_project: Tento projekt nemůže být archivován
193 193 error_issue_done_ratios_not_updated: Koeficient dokončení úkolu nebyl aktualizován.
194 194 error_workflow_copy_source: Prosím vyberte zdrojovou frontu nebo roly
195 195 error_workflow_copy_target: Prosím vyberte cílovou frontu(y) a roly(e)
196 196 error_unable_delete_issue_status: Nelze smazat stavy úkolů
197 197 error_unable_to_connect: Nelze se připojit (%{value})
198 198 warning_attachments_not_saved: "%{count} soubor(ů) nebylo možné uložit."
199 199
200 200 mail_subject_lost_password: "Vaše heslo (%{value})"
201 201 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
202 202 mail_subject_register: "Aktivace účtu (%{value})"
203 203 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
204 204 mail_body_account_information_external: "Pomocí vašeho účtu %{value} se můžete přihlásit."
205 205 mail_body_account_information: Informace o vašem účtu
206 206 mail_subject_account_activation_request: "Aktivace %{value} účtu"
207 207 mail_body_account_activation_request: "Byl zaregistrován nový uživatel %{value}. Aktivace jeho účtu závisí na vašem potvrzení."
208 208 mail_subject_reminder: "%{count} úkol(ů) termín během několik dní (%{days})"
209 209 mail_body_reminder: "%{count} úkol(ů), které máte přiřazeny termín během několik dní (%{days}):"
210 210 mail_subject_wiki_content_added: "'%{id}' Wiki stránka byla přidána"
211 211 mail_body_wiki_content_added: "'%{id}' Wiki stránka byla přidána od %{author}."
212 212 mail_subject_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována"
213 213 mail_body_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována od %{author}."
214 214
215 215 gui_validation_error: 1 chyba
216 216 gui_validation_error_plural: "%{count} chyb(y)"
217 217
218 218 field_name: Název
219 219 field_description: Popis
220 220 field_summary: Přehled
221 221 field_is_required: Povinné pole
222 222 field_firstname: Jméno
223 223 field_lastname: Příjmení
224 224 field_mail: Email
225 225 field_filename: Soubor
226 226 field_filesize: Velikost
227 227 field_downloads: Staženo
228 228 field_author: Autor
229 229 field_created_on: Vytvořeno
230 230 field_updated_on: Aktualizováno
231 231 field_field_format: Formát
232 232 field_is_for_all: Pro všechny projekty
233 233 field_possible_values: Možné hodnoty
234 234 field_regexp: Regulární výraz
235 235 field_min_length: Minimální délka
236 236 field_max_length: Maximální délka
237 237 field_value: Hodnota
238 238 field_category: Kategorie
239 239 field_title: Název
240 240 field_project: Projekt
241 241 field_issue: Úkol
242 242 field_status: Stav
243 243 field_notes: Poznámka
244 244 field_is_closed: Úkol uzavřen
245 245 field_is_default: Výchozí stav
246 246 field_tracker: Fronta
247 247 field_subject: Předmět
248 248 field_due_date: Uzavřít do
249 249 field_assigned_to: Přiřazeno
250 250 field_priority: Priorita
251 251 field_fixed_version: Cílová verze
252 252 field_user: Uživatel
253 253 field_principal: Hlavní
254 254 field_role: Role
255 255 field_homepage: Domovská stránka
256 256 field_is_public: Veřejný
257 257 field_parent: Nadřazený projekt
258 258 field_is_in_roadmap: Úkoly zobrazené v plánu
259 259 field_login: Přihlášení
260 260 field_mail_notification: Emailová oznámení
261 261 field_admin: Administrátor
262 262 field_last_login_on: Poslední přihlášení
263 263 field_language: Jazyk
264 264 field_effective_date: Datum
265 265 field_password: Heslo
266 266 field_new_password: Nové heslo
267 267 field_password_confirmation: Potvrzení
268 268 field_version: Verze
269 269 field_type: Typ
270 270 field_host: Host
271 271 field_port: Port
272 272 field_account: Účet
273 273 field_base_dn: Base DN
274 274 field_attr_login: Přihlášení (atribut)
275 275 field_attr_firstname: Jméno (atribut)
276 276 field_attr_lastname: Příjemní (atribut)
277 277 field_attr_mail: Email (atribut)
278 278 field_onthefly: Automatické vytváření uživatelů
279 279 field_start_date: Začátek
280 280 field_done_ratio: "% Hotovo"
281 281 field_auth_source: Autentifikační mód
282 282 field_hide_mail: Nezobrazovat můj email
283 283 field_comments: Komentář
284 284 field_url: URL
285 285 field_start_page: Výchozí stránka
286 286 field_subproject: Podprojekt
287 287 field_hours: Hodiny
288 288 field_activity: Aktivita
289 289 field_spent_on: Datum
290 290 field_identifier: Identifikátor
291 291 field_is_filter: Použít jako filtr
292 292 field_issue_to: Související úkol
293 293 field_delay: Zpoždění
294 294 field_assignable: Úkoly mohou být přiřazeny této roli
295 295 field_redirect_existing_links: Přesměrovat stvávající odkazy
296 296 field_estimated_hours: Odhadovaná doba
297 297 field_column_names: Sloupce
298 298 field_time_entries: Zaznamenaný čas
299 299 field_time_zone: Časové pásmo
300 300 field_searchable: Umožnit vyhledávání
301 301 field_default_value: Výchozí hodnota
302 302 field_comments_sorting: Zobrazit komentáře
303 303 field_parent_title: Rodičovská stránka
304 304 field_editable: Editovatelný
305 305 field_watcher: Sleduje
306 306 field_identity_url: OpenID URL
307 307 field_content: Obsah
308 308 field_group_by: Seskupovat výsledky podle
309 309 field_sharing: Sdílení
310 310 field_parent_issue: Rodičovský úkol
311 311 field_member_of_group: Skupina přiřaditele
312 312 field_assigned_to_role: Role přiřaditele
313 313 field_text: Textové pole
314 314 field_visible: Viditelný
315 315
316 316 setting_app_title: Název aplikace
317 317 setting_app_subtitle: Podtitulek aplikace
318 318 setting_welcome_text: Uvítací text
319 319 setting_default_language: Výchozí jazyk
320 320 setting_login_required: Autentifikace vyžadována
321 321 setting_self_registration: Povolena automatická registrace
322 322 setting_attachment_max_size: Maximální velikost přílohy
323 323 setting_issues_export_limit: Limit pro export úkolů
324 324 setting_mail_from: Odesílat emaily z adresy
325 325 setting_bcc_recipients: Příjemci skryté kopie (bcc)
326 326 setting_plain_text_mail: pouze prostý text (ne HTML)
327 327 setting_host_name: Jméno serveru
328 328 setting_text_formatting: Formátování textu
329 329 setting_wiki_compression: Komprese historie Wiki
330 330 setting_feeds_limit: Limit obsahu příspěvků
331 331 setting_default_projects_public: Nové projekty nastavovat jako veřejné
332 332 setting_autofetch_changesets: Automaticky stahovat commity
333 333 setting_sys_api_enabled: Povolit WS pro správu repozitory
334 334 setting_commit_ref_keywords: Klíčová slova pro odkazy
335 335 setting_commit_fix_keywords: Klíčová slova pro uzavření
336 336 setting_autologin: Automatické přihlašování
337 337 setting_date_format: Formát data
338 338 setting_time_format: Formát času
339 339 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
340 340 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
341 341 setting_emails_header: Hlavička emailů
342 342 setting_emails_footer: Patička emailů
343 343 setting_protocol: Protokol
344 344 setting_per_page_options: Povolené počty řádků na stránce
345 345 setting_user_format: Formát zobrazení uživatele
346 346 setting_activity_days_default: Dny zobrazené v činnosti projektu
347 347 setting_display_subprojects_issues: Automaticky zobrazit úkoly podprojektu v hlavním projektu
348 348 setting_enabled_scm: Povolené SCM
349 349 setting_mail_handler_body_delimiters: Zkrátit e-maily po jednom z těchto řádků
350 350 setting_mail_handler_api_enabled: Povolit WS pro příchozí e-maily
351 351 setting_mail_handler_api_key: API klíč
352 352 setting_sequential_project_identifiers: Generovat sekvenční identifikátory projektů
353 353 setting_gravatar_enabled: Použít uživatelské ikony Gravatar
354 354 setting_gravatar_default: Výchozí Gravatar
355 355 setting_diff_max_lines_displayed: Maximální počet zobrazených řádků rozdílů
356 356 setting_file_max_size_displayed: Maximální velikost textových souborů zobrazených přímo na stránce
357 357 setting_repository_log_display_limit: Maximální počet revizí zobrazených v logu souboru
358 358 setting_openid: Umožnit přihlašování a registrace s OpenID
359 359 setting_password_min_length: Minimální délka hesla
360 360 setting_new_project_user_role_id: Role přiřazená uživateli bez práv administrátora, který projekt vytvořil
361 361 setting_default_projects_modules: Výchozí zapnutné moduly pro nový projekt
362 362 setting_issue_done_ratio: Spočítat koeficient dokončení úkolu s
363 363 setting_issue_done_ratio_issue_field: Použít pole úkolu
364 364 setting_issue_done_ratio_issue_status: Použít stav úkolu
365 365 setting_start_of_week: Začínat kalendáře
366 366 setting_rest_api_enabled: Zapnout službu REST
367 367 setting_cache_formatted_text: Ukládat formátovaný text do vyrovnávací paměti
368 368 setting_default_notification_option: Výchozí nastavení oznámení
369 369 setting_commit_logtime_enabled: Povolit zapisování času
370 370 setting_commit_logtime_activity_id: Aktivita pro zapsaný čas
371 371 setting_gantt_items_limit: Maximální počet položek zobrazený na ganttově grafu
372 372
373 373 permission_add_project: Vytvořit projekt
374 374 permission_add_subprojects: Vytvořit podprojekty
375 375 permission_edit_project: Úprava projektů
376 376 permission_select_project_modules: Výběr modulů projektu
377 377 permission_manage_members: Spravování členství
378 378 permission_manage_project_activities: Spravovat aktivity projektu
379 379 permission_manage_versions: Spravování verzí
380 380 permission_manage_categories: Spravování kategorií úkolů
381 381 permission_view_issues: Zobrazit úkoly
382 382 permission_add_issues: Přidávání úkolů
383 383 permission_edit_issues: Upravování úkolů
384 384 permission_manage_issue_relations: Spravování vztahů mezi úkoly
385 385 permission_add_issue_notes: Přidávání poznámek
386 386 permission_edit_issue_notes: Upravování poznámek
387 387 permission_edit_own_issue_notes: Upravování vlastních poznámek
388 388 permission_move_issues: Přesouvání úkolů
389 389 permission_delete_issues: Mazání úkolů
390 390 permission_manage_public_queries: Správa veřejných dotazů
391 391 permission_save_queries: Ukládání dotazů
392 392 permission_view_gantt: Zobrazené Ganttova diagramu
393 393 permission_view_calendar: Prohlížení kalendáře
394 394 permission_view_issue_watchers: Zobrazení seznamu sledujícíh uživatelů
395 395 permission_add_issue_watchers: Přidání sledujících uživatelů
396 396 permission_delete_issue_watchers: Smazat přihlížející
397 397 permission_log_time: Zaznamenávání stráveného času
398 398 permission_view_time_entries: Zobrazení stráveného času
399 399 permission_edit_time_entries: Upravování záznamů o stráveném času
400 400 permission_edit_own_time_entries: Upravování vlastních zázamů o stráveném čase
401 401 permission_manage_news: Spravování novinek
402 402 permission_comment_news: Komentování novinek
403 403 permission_manage_documents: Správa dokumentů
404 404 permission_view_documents: Prohlížení dokumentů
405 405 permission_manage_files: Spravování souborů
406 406 permission_view_files: Prohlížení souborů
407 407 permission_manage_wiki: Spravování Wiki
408 408 permission_rename_wiki_pages: Přejmenovávání Wiki stránek
409 409 permission_delete_wiki_pages: Mazání stránek na Wiki
410 410 permission_view_wiki_pages: Prohlížení Wiki
411 411 permission_view_wiki_edits: Prohlížení historie Wiki
412 412 permission_edit_wiki_pages: Upravování stránek Wiki
413 413 permission_delete_wiki_pages_attachments: Mazání příloh
414 414 permission_protect_wiki_pages: Zabezpečení Wiki stránek
415 415 permission_manage_repository: Spravování repozitáře
416 416 permission_browse_repository: Procházení repozitáře
417 417 permission_view_changesets: Zobrazování sady změn
418 418 permission_commit_access: Commit přístup
419 419 permission_manage_boards: Správa diskusních fór
420 420 permission_view_messages: Prohlížení zpráv
421 421 permission_add_messages: Posílání zpráv
422 422 permission_edit_messages: Upravování zpráv
423 423 permission_edit_own_messages: Upravit vlastní zprávy
424 424 permission_delete_messages: Mazání zpráv
425 425 permission_delete_own_messages: Smazat vlastní zprávy
426 426 permission_export_wiki_pages: Exportovat Wiki stránky
427 427 permission_manage_subtasks: Spravovat podúkoly
428 428
429 429 project_module_issue_tracking: Sledování úkolů
430 430 project_module_time_tracking: Sledování času
431 431 project_module_news: Novinky
432 432 project_module_documents: Dokumenty
433 433 project_module_files: Soubory
434 434 project_module_wiki: Wiki
435 435 project_module_repository: Repozitář
436 436 project_module_boards: Diskuse
437 437 project_module_calendar: Kalendář
438 438 project_module_gantt: Gantt
439 439
440 440 label_user: Uživatel
441 441 label_user_plural: Uživatelé
442 442 label_user_new: Nový uživatel
443 443 label_user_anonymous: Anonymní
444 444 label_project: Projekt
445 445 label_project_new: Nový projekt
446 446 label_project_plural: Projekty
447 447 label_x_projects:
448 448 zero: žádné projekty
449 449 one: 1 projekt
450 450 other: "%{count} projekty(ů)"
451 451 label_project_all: Všechny projekty
452 452 label_project_latest: Poslední projekty
453 453 label_issue: Úkol
454 454 label_issue_new: Nový úkol
455 455 label_issue_plural: Úkoly
456 456 label_issue_view_all: Všechny úkoly
457 457 label_issues_by: "Úkoly podle %{value}"
458 458 label_issue_added: Úkol přidán
459 459 label_issue_updated: Úkol aktualizován
460 460 label_document: Dokument
461 461 label_document_new: Nový dokument
462 462 label_document_plural: Dokumenty
463 463 label_document_added: Dokument přidán
464 464 label_role: Role
465 465 label_role_plural: Role
466 466 label_role_new: Nová role
467 467 label_role_and_permissions: Role a práva
468 468 label_member: Člen
469 469 label_member_new: Nový člen
470 470 label_member_plural: Členové
471 471 label_tracker: Fronta
472 472 label_tracker_plural: Fronty
473 473 label_tracker_new: Nová fronta
474 474 label_workflow: Průběh práce
475 475 label_issue_status: Stav úkolu
476 476 label_issue_status_plural: Stavy úkolů
477 477 label_issue_status_new: Nový stav
478 478 label_issue_category: Kategorie úkolu
479 479 label_issue_category_plural: Kategorie úkolů
480 480 label_issue_category_new: Nová kategorie
481 481 label_custom_field: Uživatelské pole
482 482 label_custom_field_plural: Uživatelská pole
483 483 label_custom_field_new: Nové uživatelské pole
484 484 label_enumerations: Seznamy
485 485 label_enumeration_new: Nová hodnota
486 486 label_information: Informace
487 487 label_information_plural: Informace
488 488 label_please_login: Prosím přihlašte se
489 489 label_register: Registrovat
490 490 label_login_with_open_id_option: nebo se přihlašte s OpenID
491 491 label_password_lost: Zapomenuté heslo
492 492 label_home: Úvodní
493 493 label_my_page: Moje stránka
494 494 label_my_account: Můj účet
495 495 label_my_projects: Moje projekty
496 496 label_my_page_block: Bloky na mé stránce
497 497 label_administration: Administrace
498 498 label_login: Přihlášení
499 499 label_logout: Odhlášení
500 500 label_help: Nápověda
501 501 label_reported_issues: Nahlášené úkoly
502 502 label_assigned_to_me_issues: Mé úkoly
503 503 label_last_login: Poslední přihlášení
504 504 label_registered_on: Registrován
505 505 label_activity: Aktivita
506 506 label_overall_activity: Celková aktivita
507 507 label_user_activity: "Aktivita uživatele: %{value}"
508 508 label_new: Nový
509 509 label_logged_as: Přihlášen jako
510 510 label_environment: Prostředí
511 511 label_authentication: Autentifikace
512 512 label_auth_source: Mód autentifikace
513 513 label_auth_source_new: Nový mód autentifikace
514 514 label_auth_source_plural: Módy autentifikace
515 515 label_subproject_plural: Podprojekty
516 516 label_subproject_new: Nový podprojekt
517 517 label_and_its_subprojects: "%{value} a jeho podprojekty"
518 518 label_min_max_length: Min - Max délka
519 519 label_list: Seznam
520 520 label_date: Datum
521 521 label_integer: Celé číslo
522 522 label_float: Desetinné číslo
523 523 label_boolean: Ano/Ne
524 524 label_string: Text
525 525 label_text: Dlouhý text
526 526 label_attribute: Atribut
527 527 label_attribute_plural: Atributy
528 528 label_download: "%{count} stažení"
529 529 label_download_plural: "%{count} stažení"
530 530 label_no_data: Žádné položky
531 531 label_change_status: Změnit stav
532 532 label_history: Historie
533 533 label_attachment: Soubor
534 534 label_attachment_new: Nový soubor
535 535 label_attachment_delete: Odstranit soubor
536 536 label_attachment_plural: Soubory
537 537 label_file_added: Soubor přidán
538 538 label_report: Přehled
539 539 label_report_plural: Přehledy
540 540 label_news: Novinky
541 541 label_news_new: Přidat novinku
542 542 label_news_plural: Novinky
543 543 label_news_latest: Poslední novinky
544 544 label_news_view_all: Zobrazit všechny novinky
545 545 label_news_added: Novinka přidána
546 546 label_settings: Nastavení
547 547 label_overview: Přehled
548 548 label_version: Verze
549 549 label_version_new: Nová verze
550 550 label_version_plural: Verze
551 551 label_close_versions: Zavřít dokončené verze
552 552 label_confirmation: Potvrzení
553 553 label_export_to: 'Také k dispozici:'
554 554 label_read: Načítá se...
555 555 label_public_projects: Veřejné projekty
556 556 label_open_issues: otevřený
557 557 label_open_issues_plural: otevřené
558 558 label_closed_issues: uzavřený
559 559 label_closed_issues_plural: uzavřené
560 560 label_x_open_issues_abbr_on_total:
561 561 zero: 0 otevřených / %{total}
562 562 one: 1 otevřený / %{total}
563 563 other: "%{count} otevřených / %{total}"
564 564 label_x_open_issues_abbr:
565 565 zero: 0 otevřených
566 566 one: 1 otevřený
567 567 other: "%{count} otevřených"
568 568 label_x_closed_issues_abbr:
569 569 zero: 0 uzavřených
570 570 one: 1 uzavřený
571 571 other: "%{count} uzavřených"
572 572 label_total: Celkem
573 573 label_permissions: Práva
574 574 label_current_status: Aktuální stav
575 575 label_new_statuses_allowed: Nové povolené stavy
576 576 label_all: vše
577 577 label_none: nic
578 578 label_nobody: nikdo
579 579 label_next: Další
580 580 label_previous: Předchozí
581 581 label_used_by: Použito
582 582 label_details: Detaily
583 583 label_add_note: Přidat poznámku
584 584 label_per_page: Na stránku
585 585 label_calendar: Kalendář
586 586 label_months_from: měsíců od
587 587 label_gantt: Ganttův graf
588 588 label_internal: Interní
589 589 label_last_changes: "posledních %{count} změn"
590 590 label_change_view_all: Zobrazit všechny změny
591 591 label_personalize_page: Přizpůsobit tuto stránku
592 592 label_comment: Komentář
593 593 label_comment_plural: Komentáře
594 594 label_x_comments:
595 595 zero: žádné komentáře
596 596 one: 1 komentář
597 597 other: "%{count} komentářů"
598 598 label_comment_add: Přidat komentáře
599 599 label_comment_added: Komentář přidán
600 600 label_comment_delete: Odstranit komentář
601 601 label_query: Uživatelský dotaz
602 602 label_query_plural: Uživatelské dotazy
603 603 label_query_new: Nový dotaz
604 604 label_filter_add: Přidat filtr
605 605 label_filter_plural: Filtry
606 606 label_equals: je
607 607 label_not_equals: není
608 608 label_in_less_than: je měší než
609 609 label_in_more_than: je větší než
610 610 label_greater_or_equal: '>='
611 611 label_less_or_equal: '<='
612 612 label_in: v
613 613 label_today: dnes
614 614 label_all_time: vše
615 615 label_yesterday: včera
616 616 label_this_week: tento týden
617 617 label_last_week: minulý týden
618 618 label_last_n_days: "posledních %{count} dnů"
619 619 label_this_month: tento měsíc
620 620 label_last_month: minulý měsíc
621 621 label_this_year: tento rok
622 622 label_date_range: Časový rozsah
623 623 label_less_than_ago: před méně jak (dny)
624 624 label_more_than_ago: před více jak (dny)
625 625 label_ago: před (dny)
626 626 label_contains: obsahuje
627 627 label_not_contains: neobsahuje
628 628 label_day_plural: dny
629 629 label_repository: Repozitář
630 630 label_repository_plural: Repozitáře
631 631 label_browse: Procházet
632 632 label_modification: "%{count} změna"
633 633 label_modification_plural: "%{count} změn"
634 634 label_branch: Větev
635 635 label_tag: Tag
636 636 label_revision: Revize
637 637 label_revision_plural: Revizí
638 638 label_revision_id: "Revize %{value}"
639 639 label_associated_revisions: Související verze
640 640 label_added: přidáno
641 641 label_modified: změněno
642 642 label_copied: zkopírováno
643 643 label_renamed: přejmenováno
644 644 label_deleted: odstraněno
645 645 label_latest_revision: Poslední revize
646 646 label_latest_revision_plural: Poslední revize
647 647 label_view_revisions: Zobrazit revize
648 648 label_view_all_revisions: Zobrazit všechny revize
649 649 label_max_size: Maximální velikost
650 650 label_sort_highest: Přesunout na začátek
651 651 label_sort_higher: Přesunout nahoru
652 652 label_sort_lower: Přesunout dolů
653 653 label_sort_lowest: Přesunout na konec
654 654 label_roadmap: Plán
655 655 label_roadmap_due_in: "Zbývá %{value}"
656 656 label_roadmap_overdue: "%{value} pozdě"
657 657 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
658 658 label_search: Hledat
659 659 label_result_plural: Výsledky
660 660 label_all_words: Všechna slova
661 661 label_wiki: Wiki
662 662 label_wiki_edit: Wiki úprava
663 663 label_wiki_edit_plural: Wiki úpravy
664 664 label_wiki_page: Wiki stránka
665 665 label_wiki_page_plural: Wiki stránky
666 666 label_index_by_title: Index dle názvu
667 667 label_index_by_date: Index dle data
668 668 label_current_version: Aktuální verze
669 669 label_preview: Náhled
670 670 label_feed_plural: Příspěvky
671 671 label_changes_details: Detail všech změn
672 672 label_issue_tracking: Sledování úkolů
673 673 label_spent_time: Strávený čas
674 674 label_overall_spent_time: Celkem strávený čas
675 675 label_f_hour: "%{value} hodina"
676 676 label_f_hour_plural: "%{value} hodin"
677 677 label_time_tracking: Sledování času
678 678 label_change_plural: Změny
679 679 label_statistics: Statistiky
680 680 label_commits_per_month: Commitů za měsíc
681 681 label_commits_per_author: Commitů za autora
682 682 label_view_diff: Zobrazit rozdíly
683 683 label_diff_inline: uvnitř
684 684 label_diff_side_by_side: vedle sebe
685 685 label_options: Nastavení
686 686 label_copy_workflow_from: Kopírovat průběh práce z
687 687 label_permissions_report: Přehled práv
688 688 label_watched_issues: Sledované úkoly
689 689 label_related_issues: Související úkoly
690 690 label_applied_status: Použitý stav
691 691 label_loading: Nahrávám...
692 692 label_relation_new: Nová souvislost
693 693 label_relation_delete: Odstranit souvislost
694 694 label_relates_to: související s
695 695 label_duplicates: duplikuje
696 696 label_duplicated_by: zduplikován
697 697 label_blocks: blokuje
698 698 label_blocked_by: zablokován
699 699 label_precedes: předchází
700 700 label_follows: následuje
701 701 label_end_to_start: od konce do začátku
702 702 label_end_to_end: od konce do konce
703 703 label_start_to_start: od začátku do začátku
704 704 label_start_to_end: od začátku do konce
705 705 label_stay_logged_in: Zůstat přihlášený
706 706 label_disabled: zakázán
707 707 label_show_completed_versions: Ukázat dokončené verze
708 708 label_me:
709 709 label_board: Fórum
710 710 label_board_new: Nové fórum
711 711 label_board_plural: Fóra
712 712 label_board_locked: Uzamčeno
713 713 label_board_sticky: Nálepka
714 714 label_topic_plural: Témata
715 715 label_message_plural: Zprávy
716 716 label_message_last: Poslední zpráva
717 717 label_message_new: Nová zpráva
718 718 label_message_posted: Zpráva přidána
719 719 label_reply_plural: Odpovědi
720 720 label_send_information: Zaslat informace o účtu uživateli
721 721 label_year: Rok
722 722 label_month: Měsíc
723 723 label_week: Týden
724 724 label_date_from: Od
725 725 label_date_to: Do
726 726 label_language_based: Podle výchozího jazyku
727 727 label_sort_by: "Seřadit podle %{value}"
728 728 label_send_test_email: Poslat testovací email
729 729 label_feeds_access_key: Přístupový klíč pro RSS
730 730 label_missing_feeds_access_key: Postrádá přístupový klíč pro RSS
731 731 label_feeds_access_key_created_on: "Přístupový klíč pro RSS byl vytvořen před %{value}"
732 732 label_module_plural: Moduly
733 733 label_added_time_by: "Přidáno uživatelem %{author} před %{age}"
734 734 label_updated_time_by: "Aktualizováno uživatelem %{author} před %{age}"
735 735 label_updated_time: "Aktualizováno před %{value}"
736 736 label_jump_to_a_project: Vyberte projekt...
737 737 label_file_plural: Soubory
738 738 label_changeset_plural: Changesety
739 739 label_default_columns: Výchozí sloupce
740 740 label_no_change_option: (beze změny)
741 741 label_bulk_edit_selected_issues: Hromadná úprava vybraných úkolů
742 742 label_theme: Téma
743 743 label_default: Výchozí
744 744 label_search_titles_only: Vyhledávat pouze v názvech
745 745 label_user_mail_option_all: "Pro všechny události všech mých projektů"
746 746 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
747 747 label_user_mail_option_none: "Žádné události"
748 748 label_user_mail_option_only_my_events: "Jen pro věci co sleduji nebo jsem v nich zapojen"
749 749 label_user_mail_option_only_assigned: "Jen pro všeci kterým sem přiřazen"
750 750 label_user_mail_option_only_owner: "Jen pro věci které vlastním"
751 751 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
752 752 label_registration_activation_by_email: aktivace účtu emailem
753 753 label_registration_manual_activation: manuální aktivace účtu
754 754 label_registration_automatic_activation: automatická aktivace účtu
755 755 label_display_per_page: "%{value} na stránku"
756 756 label_age: Věk
757 757 label_change_properties: Změnit vlastnosti
758 758 label_general: Obecné
759 759 label_more: Více
760 760 label_scm: SCM
761 761 label_plugins: Doplňky
762 762 label_ldap_authentication: Autentifikace LDAP
763 763 label_downloads_abbr: Staž.
764 764 label_optional_description: Volitelný popis
765 765 label_add_another_file: Přidat další soubor
766 766 label_preferences: Nastavení
767 767 label_chronological_order: V chronologickém pořadí
768 768 label_reverse_chronological_order: V obrácaném chronologickém pořadí
769 769 label_planning: Plánování
770 770 label_incoming_emails: Příchozí e-maily
771 771 label_generate_key: Generovat klíč
772 772 label_issue_watchers: Sledování
773 773 label_example: Příklad
774 774 label_display: Zobrazit
775 775 label_sort: Řazení
776 776 label_ascending: Vzestupně
777 777 label_descending: Sestupně
778 778 label_date_from_to: Od %{start} do %{end}
779 779 label_wiki_content_added: Wiki stránka přidána
780 780 label_wiki_content_updated: Wiki stránka aktualizována
781 781 label_group: Skupina
782 782 label_group_plural: Skupiny
783 783 label_group_new: Nová skupina
784 784 label_time_entry_plural: Strávený čas
785 785 label_version_sharing_none: Nesdíleno
786 786 label_version_sharing_descendants: S podprojekty
787 787 label_version_sharing_hierarchy: S hierarchií projektu
788 788 label_version_sharing_tree: Se stromem projektu
789 789 label_version_sharing_system: Se všemi projekty
790 790 label_update_issue_done_ratios: Aktualizovat koeficienty dokončení úkolů
791 791 label_copy_source: Zdroj
792 792 label_copy_target: Cíl
793 793 label_copy_same_as_target: Stejný jako cíl
794 794 label_display_used_statuses_only: Zobrazit pouze stavy které jsou použité touto frontou
795 795 label_api_access_key: API přístupový klíč
796 796 label_missing_api_access_key: Chybějící přístupový klíč API
797 797 label_api_access_key_created_on: API přístupový klíč vytvořen %{value}
798 798 label_profile: Profil
799 799 label_subtask_plural: Podúkol
800 800 label_project_copy_notifications: Odeslat email oznámení v průběhu kopie projektu
801 801 label_principal_search: "Hledat uživatele nebo skupinu:"
802 802 label_user_search: "Hledat uživatele:"
803 803
804 804 button_login: Přihlásit
805 805 button_submit: Potvrdit
806 806 button_save: Uložit
807 807 button_check_all: Zašrtnout vše
808 808 button_uncheck_all: Odšrtnout vše
809 809 button_delete: Odstranit
810 810 button_create: Vytvořit
811 811 button_create_and_continue: Vytvořit a pokračovat
812 812 button_test: Testovat
813 813 button_edit: Upravit
814 814 button_edit_associated_wikipage: "Upravit přiřazenou Wiki stránku: %{page_title}"
815 815 button_add: Přidat
816 816 button_change: Změnit
817 817 button_apply: Použít
818 818 button_clear: Smazat
819 819 button_lock: Zamknout
820 820 button_unlock: Odemknout
821 821 button_download: Stáhnout
822 822 button_list: Vypsat
823 823 button_view: Zobrazit
824 824 button_move: Přesunout
825 825 button_move_and_follow: Přesunout a následovat
826 826 button_back: Zpět
827 827 button_cancel: Storno
828 828 button_activate: Aktivovat
829 829 button_sort: Seřadit
830 830 button_log_time: Přidat čas
831 831 button_rollback: Zpět k této verzi
832 832 button_watch: Sledovat
833 833 button_unwatch: Nesledovat
834 834 button_reply: Odpovědět
835 835 button_archive: Archivovat
836 836 button_unarchive: Odarchivovat
837 837 button_reset: Resetovat
838 838 button_rename: Přejmenovat
839 839 button_change_password: Změnit heslo
840 840 button_copy: Kopírovat
841 841 button_copy_and_follow: Kopírovat a následovat
842 842 button_annotate: Komentovat
843 843 button_update: Aktualizovat
844 844 button_configure: Konfigurovat
845 845 button_quote: Citovat
846 846 button_duplicate: Duplikovat
847 847 button_show: Zobrazit
848 848
849 849 status_active: aktivní
850 850 status_registered: registrovaný
851 851 status_locked: uzamčený
852 852
853 853 version_status_open: otevřený
854 854 version_status_locked: uzamčený
855 855 version_status_closed: zavřený
856 856
857 857 field_active: Aktivní
858 858
859 859 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
860 860 text_regexp_info: např. ^[A-Z0-9]+$
861 861 text_min_max_length_info: 0 znamená bez limitu
862 862 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
863 863 text_subprojects_destroy_warning: "Jeho podprojek(y): %{value} budou také smazány."
864 864 text_workflow_edit: Vyberte roli a frontu k editaci průběhu práce
865 865 text_are_you_sure: Jste si jisti?
866 866 text_are_you_sure_with_children: Smazat úkol včetně všech podúkolů?
867 867 text_journal_changed: "%{label} změněn z %{old} na %{new}"
868 868 text_journal_set_to: "%{label} nastaven na %{value}"
869 869 text_journal_deleted: "%{label} smazán (%{old})"
870 870 text_journal_added: "%{label} %{value} přidán"
871 871 text_tip_issue_begin_day: úkol začíná v tento den
872 872 text_tip_issue_end_day: úkol končí v tento den
873 873 text_tip_issue_begin_end_day: úkol začíná a končí v tento den
874 874 text_caracters_maximum: "%{count} znaků maximálně."
875 875 text_caracters_minimum: "Musí být alespoň %{count} znaků dlouhé."
876 876 text_length_between: "Délka mezi %{min} a %{max} znaky."
877 877 text_tracker_no_workflow: Pro tuto frontu není definován žádný průběh práce
878 878 text_unallowed_characters: Nepovolené znaky
879 879 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
880 880 text_line_separated: Více hodnot povoleno (jeden řádek pro každou hodnotu).
881 881 text_issues_ref_in_commit_messages: Odkazování a opravování úkolů ve zprávách commitů
882 882 text_issue_added: "Úkol %{id} byl vytvořen uživatelem %{author}."
883 883 text_issue_updated: "Úkol %{id} byl aktualizován uživatelem %{author}."
884 884 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto Wiki a celý její obsah?
885 885 text_issue_category_destroy_question: "Některé úkoly (%{count}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?"
886 886 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
887 887 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
888 888 text_user_mail_option: "U projektů, které nebyly vybrány, budete dostávat oznámení pouze o vašich či o sledovaných položkách (např. o položkách jejichž jste autor nebo ke kterým jste přiřazen(a))."
889 889 text_no_configuration_data: "Role, fronty, stavy úkolů ani průběh práce nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci. Po si můžete vše upravit"
890 890 text_load_default_configuration: Nahrát výchozí konfiguraci
891 891 text_status_changed_by_changeset: "Použito v changesetu %{value}."
892 892 text_time_logged_by_changeset: Aplikováno v changesetu %{value}.
893 893 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
894 894 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
895 895 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
896 896 text_file_repository_writable: Povolen zápis do adresáře ukládání souborů
897 897 text_plugin_assets_writable: Možnost zápisu do adresáře plugin assets
898 898 text_rmagick_available: RMagick k dispozici (volitelné)
899 899 text_destroy_time_entries_question: "U úkolů, které chcete odstranit je evidováno %{hours} práce. Co chete udělat?"
900 900 text_destroy_time_entries: Odstranit evidované hodiny.
901 901 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
902 902 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
903 903 text_user_wrote: "%{value} napsal:"
904 904 text_enumeration_destroy_question: "Několik (%{count}) objektů je přiřazeno k této hodnotě."
905 905 text_enumeration_category_reassign_to: 'Přeřadit je do této:'
906 906 text_email_delivery_not_configured: "Doručování e-mailů není nastaveno a odesílání notifikací je zakázáno.\nNastavte Váš SMTP server v souboru config/configuration.yml a restartujte aplikaci."
907 907 text_repository_usernames_mapping: "Vybrat nebo upravit mapování mezi Redmine uživateli a uživatelskými jmény nalezenými v logu repozitáře.\nUživatelé se shodným Redmine uživatelským jménem a uživatelským jménem v repozitáři jsou mapovaní automaticky."
908 908 text_diff_truncated: '... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.'
909 909 text_custom_field_possible_values_info: 'Každá hodnota na novém řádku'
910 910 text_wiki_page_destroy_question: Tato stránka má %{descendants} podstránek a potomků. Co chcete udělat?
911 911 text_wiki_page_nullify_children: Ponechat podstránky jako kořenové stránky
912 912 text_wiki_page_destroy_children: Smazat podstránky a všechny jejich potomky
913 913 text_wiki_page_reassign_children: Přiřadit podstránky k tomuto rodiči
914 914 text_own_membership_delete_confirmation: "Chystáte se odebrat si některá nebo všechny svá oprávnění a potom již nemusíte být schopni upravit tento projekt.\nOpravdu chcete pokračovat?"
915 915 text_zoom_in: Přiblížit
916 916 text_zoom_out: Oddálit
917 917
918 918 default_role_manager: Manažer
919 919 default_role_developer: Vývojář
920 920 default_role_reporter: Reportér
921 921 default_tracker_bug: Chyba
922 922 default_tracker_feature: Požadavek
923 923 default_tracker_support: Podpora
924 924 default_issue_status_new: Nový
925 925 default_issue_status_in_progress: Ve vývoji
926 926 default_issue_status_resolved: Vyřešený
927 927 default_issue_status_feedback: Čeká se
928 928 default_issue_status_closed: Uzavřený
929 929 default_issue_status_rejected: Odmítnutý
930 930 default_doc_category_user: Uživatelská dokumentace
931 931 default_doc_category_tech: Technická dokumentace
932 932 default_priority_low: Nízká
933 933 default_priority_normal: Normální
934 934 default_priority_high: Vysoká
935 935 default_priority_urgent: Urgentní
936 936 default_priority_immediate: Okamžitá
937 937 default_activity_design: Návhr
938 938 default_activity_development: Vývoj
939 939
940 940 enumeration_issue_priorities: Priority úkolů
941 941 enumeration_doc_categories: Kategorie dokumentů
942 942 enumeration_activities: Aktivity (sledování času)
943 943 enumeration_system_activity: Systémová aktivita
944 944
945 945 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
946 946 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
947 947 label_my_queries: My custom queries
948 948 text_journal_changed_no_detail: "%{label} updated"
949 949 label_news_comment_added: Comment added to a news
950 950 button_expand_all: Expand all
951 951 button_collapse_all: Collapse all
952 952 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
953 953 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
954 954 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
955 955 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
956 956 label_role_anonymous: Anonymous
957 957 label_role_non_member: Non member
958 958 label_issue_note_added: Note added
959 959 label_issue_status_updated: Status updated
960 960 label_issue_priority_updated: Priority updated
961 961 label_issues_visibility_own: Issues created by or assigned to the user
962 962 field_issues_visibility: Issues visibility
963 963 label_issues_visibility_all: All issues
964 964 permission_set_own_issues_private: Set own issues public or private
965 965 field_is_private: Private
966 966 permission_set_issues_private: Set issues public or private
967 967 label_issues_visibility_public: All non private issues
968 968 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
969 969 field_commit_logs_encoding: Kódování zpráv při commitu
970 970 field_scm_path_encoding: Path encoding
971 971 text_scm_path_encoding_note: "Default: UTF-8"
972 972 field_path_to_repository: Path to repository
973 973 field_root_directory: Root directory
974 974 field_cvs_module: Module
975 975 field_cvsroot: CVSROOT
976 976 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
977 977 text_scm_command: Command
978 978 text_scm_command_version: Version
979 979 label_git_report_last_commit: Report last commit for files and directories
980 980 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
981 981 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
982 982 notice_issue_successful_create: Issue %{id} created.
983 983 label_between: between
984 984 setting_issue_group_assignment: Allow issue assignment to groups
985 985 label_diff: diff
986 986 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
987 987 description_query_sort_criteria_direction: Sort direction
988 988 description_project_scope: Search scope
989 989 description_filter: Filter
990 990 description_user_mail_notification: Mail notification settings
991 991 description_date_from: Enter start date
992 992 description_message_content: Message content
993 993 description_available_columns: Available Columns
994 994 description_date_range_interval: Choose range by selecting start and end date
995 995 description_issue_category_reassign: Choose issue category
996 996 description_search: Searchfield
997 997 description_notes: Notes
998 998 description_date_range_list: Choose range from list
999 999 description_choose_project: Projects
1000 1000 description_date_to: Enter end date
1001 1001 description_query_sort_criteria_attribute: Sort attribute
1002 1002 description_wiki_subpages_reassign: Choose new parent page
1003 1003 description_selected_columns: Selected Columns
1004 1004 label_parent_revision: Parent
1005 1005 label_child_revision: Child
1006 1006 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
1007 1007 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1008 1008 button_edit_section: Edit this section
1009 1009 setting_repositories_encodings: Attachments and repositories encodings
1010 1010 description_all_columns: All Columns
1011 1011 button_export: Export
1012 1012 label_export_options: "%{export_format} export options"
1013 1013 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1014 1014 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1015 1015 label_x_issues:
1016 1016 zero: 0 Úkol
1017 1017 one: 1 Úkol
1018 1018 other: "%{count} Úkoly"
1019 1019 label_repository_new: New repository
1020 1020 field_repository_is_default: Main repository
1021 1021 label_copy_attachments: Copy attachments
1022 1022 label_item_position: "%{position}/%{count}"
1023 1023 label_completed_versions: Completed versions
1024 1024 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1025 1025 field_multiple: Multiple values
1026 1026 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1027 1027 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1028 1028 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1029 1029 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1030 1030 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1031 1031 permission_manage_related_issues: Manage related issues
1032 1032 field_ldap_filter: LDAP filter
1033 1033 label_search_for_watchers: Search for watchers to add
1034 1034 notice_account_deleted: Your account has been permanently deleted.
1035 1035 setting_unsubscribe: Allow users to delete their own account
1036 1036 button_delete_my_account: Delete my account
1037 1037 text_account_destroy_confirmation: |-
1038 1038 Are you sure you want to proceed?
1039 1039 Your account will be permanently deleted, with no way to reactivate it.
1040 1040 error_session_expired: Your session has expired. Please login again.
1041 1041 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1042 1042 setting_session_lifetime: Session maximum lifetime
1043 1043 setting_session_timeout: Session inactivity timeout
1044 1044 label_session_expiration: Session expiration
1045 1045 permission_close_project: Close / reopen the project
1046 1046 label_show_closed_projects: View closed projects
1047 1047 button_close: Close
1048 1048 button_reopen: Reopen
1049 1049 project_status_active: active
1050 1050 project_status_closed: closed
1051 1051 project_status_archived: archived
1052 1052 text_project_closed: This project is closed and read-only.
1053 1053 notice_user_successful_create: User %{id} created.
1054 1054 field_core_fields: Standard fields
1055 1055 field_timeout: Timeout (in seconds)
1056 1056 setting_thumbnails_enabled: Display attachment thumbnails
1057 1057 setting_thumbnails_size: Thumbnails size (in pixels)
1058 label_status_transitions: Status transitions
1059 label_fields_permissions: Fields permissions
1060 label_readonly: Read-only
1061 label_required: Required
@@ -1,1071 +1,1075
1 1 # Danish translation file for standard Ruby on Rails internationalization
2 2 # by Lars Hoeg (http://www.lenio.dk/)
3 3 # updated and upgraded to 0.9 by Morten Krogh Andersen (http://www.krogh.net)
4 4
5 5 da:
6 6 direction: ltr
7 7 date:
8 8 formats:
9 9 default: "%d.%m.%Y"
10 10 short: "%e. %b %Y"
11 11 long: "%e. %B %Y"
12 12
13 13 day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
14 14 abbr_day_names: [, ma, ti, 'on', to, fr, ]
15 15 month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december]
16 16 abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
17 17 order:
18 18 - :day
19 19 - :month
20 20 - :year
21 21
22 22 time:
23 23 formats:
24 24 default: "%e. %B %Y, %H:%M"
25 25 time: "%H:%M"
26 26 short: "%e. %b %Y, %H:%M"
27 27 long: "%A, %e. %B %Y, %H:%M"
28 28 am: ""
29 29 pm: ""
30 30
31 31 support:
32 32 array:
33 33 sentence_connector: "og"
34 34 skip_last_comma: true
35 35
36 36 datetime:
37 37 distance_in_words:
38 38 half_a_minute: "et halvt minut"
39 39 less_than_x_seconds:
40 40 one: "mindre end et sekund"
41 41 other: "mindre end %{count} sekunder"
42 42 x_seconds:
43 43 one: "et sekund"
44 44 other: "%{count} sekunder"
45 45 less_than_x_minutes:
46 46 one: "mindre end et minut"
47 47 other: "mindre end %{count} minutter"
48 48 x_minutes:
49 49 one: "et minut"
50 50 other: "%{count} minutter"
51 51 about_x_hours:
52 52 one: "cirka en time"
53 53 other: "cirka %{count} timer"
54 54 x_hours:
55 55 one: "1 hour"
56 56 other: "%{count} hours"
57 57 x_days:
58 58 one: "en dag"
59 59 other: "%{count} dage"
60 60 about_x_months:
61 61 one: "cirka en måned"
62 62 other: "cirka %{count} måneder"
63 63 x_months:
64 64 one: "en måned"
65 65 other: "%{count} måneder"
66 66 about_x_years:
67 67 one: "cirka et år"
68 68 other: "cirka %{count} år"
69 69 over_x_years:
70 70 one: "mere end et år"
71 71 other: "mere end %{count} år"
72 72 almost_x_years:
73 73 one: "næsten 1 år"
74 74 other: "næsten %{count} år"
75 75
76 76 number:
77 77 format:
78 78 separator: ","
79 79 delimiter: "."
80 80 precision: 3
81 81 currency:
82 82 format:
83 83 format: "%u %n"
84 84 unit: "DKK"
85 85 separator: ","
86 86 delimiter: "."
87 87 precision: 2
88 88 precision:
89 89 format:
90 90 # separator:
91 91 delimiter: ""
92 92 # precision:
93 93 human:
94 94 format:
95 95 # separator:
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 percentage:
109 109 format:
110 110 # separator:
111 111 delimiter: ""
112 112 # precision:
113 113
114 114 activerecord:
115 115 errors:
116 116 template:
117 117 header:
118 118 one: "1 error prohibited this %{model} from being saved"
119 119 other: "%{count} errors prohibited this %{model} from being saved"
120 120 messages:
121 121 inclusion: "er ikke i listen"
122 122 exclusion: "er reserveret"
123 123 invalid: "er ikke gyldig"
124 124 confirmation: "stemmer ikke overens"
125 125 accepted: "skal accepteres"
126 126 empty: "må ikke udelades"
127 127 blank: "skal udfyldes"
128 128 too_long: "er for lang (højst %{count} tegn)"
129 129 too_short: "er for kort (mindst %{count} tegn)"
130 130 wrong_length: "har forkert længde (skulle være %{count} tegn)"
131 131 taken: "er allerede anvendt"
132 132 not_a_number: "er ikke et tal"
133 133 greater_than: "skal være større end %{count}"
134 134 greater_than_or_equal_to: "skal være større end eller lig med %{count}"
135 135 equal_to: "skal være lig med %{count}"
136 136 less_than: "skal være mindre end %{count}"
137 137 less_than_or_equal_to: "skal være mindre end eller lig med %{count}"
138 138 odd: "skal være ulige"
139 139 even: "skal være lige"
140 140 greater_than_start_date: "skal være senere end startdatoen"
141 141 not_same_project: "hører ikke til samme projekt"
142 142 circular_dependency: "Denne relation vil skabe et afhængighedsforhold"
143 143 cant_link_an_issue_with_a_descendant: "En sag kan ikke relateres til en af dens underopgaver"
144 144
145 145 template:
146 146 header:
147 147 one: "En fejl forhindrede %{model} i at blive gemt"
148 148 other: "%{count} fejl forhindrede denne %{model} i at blive gemt"
149 149 body: "Der var problemer med følgende felter:"
150 150
151 151 actionview_instancetag_blank_option: Vælg venligst
152 152
153 153 general_text_No: 'Nej'
154 154 general_text_Yes: 'Ja'
155 155 general_text_no: 'nej'
156 156 general_text_yes: 'ja'
157 157 general_lang_name: 'Danish (Dansk)'
158 158 general_csv_separator: ','
159 159 general_csv_encoding: ISO-8859-1
160 160 general_pdf_encoding: UTF-8
161 161 general_first_day_of_week: '1'
162 162
163 163 notice_account_updated: Kontoen er opdateret.
164 164 notice_account_invalid_creditentials: Ugyldig bruger og/eller kodeord
165 165 notice_account_password_updated: Kodeordet er opdateret.
166 166 notice_account_wrong_password: Forkert kodeord
167 167 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email.
168 168 notice_account_unknown_email: Ukendt bruger.
169 169 notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord.
170 170 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
171 171 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
172 172 notice_successful_create: Succesfuld oprettelse.
173 173 notice_successful_update: Succesfuld opdatering.
174 174 notice_successful_delete: Succesfuld sletning.
175 175 notice_successful_connection: Succesfuld forbindelse.
176 176 notice_file_not_found: Siden du forsøger at tilgå eksisterer ikke eller er blevet fjernet.
177 177 notice_locking_conflict: Data er opdateret af en anden bruger.
178 178 notice_not_authorized: Du har ikke adgang til denne side.
179 179 notice_email_sent: "En email er sendt til %{value}"
180 180 notice_email_error: "En fejl opstod under afsendelse af email (%{value})"
181 181 notice_feeds_access_key_reseted: Din adgangsnøgle til RSS er nulstillet.
182 182 notice_failed_to_save_issues: "Det mislykkedes at gemme %{count} sage(r) %{total} valgt: %{ids}."
183 183 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
184 184 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
185 185 notice_default_data_loaded: Standardopsætningen er indlæst.
186 186
187 187 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %{value}"
188 188 error_scm_not_found: "Adgang nægtet og/eller revision blev ikke fundet i det valgte repository."
189 189 error_scm_command_failed: "En fejl opstod under forbindelsen til det valgte repository: %{value}"
190 190
191 191 mail_subject_lost_password: "Dit %{value} kodeord"
192 192 mail_body_lost_password: 'Klik dette link for at ændre dit kodeord:'
193 193 mail_subject_register: "%{value} kontoaktivering"
194 194 mail_body_register: 'Klik dette link for at aktivere din konto:'
195 195 mail_body_account_information_external: "Du kan bruge din %{value} konto til at logge ind."
196 196 mail_body_account_information: Din kontoinformation
197 197 mail_subject_account_activation_request: "%{value} kontoaktivering"
198 198 mail_body_account_activation_request: "En ny bruger (%{value}) er registreret. Godkend venligst kontoen:"
199 199
200 200 gui_validation_error: 1 fejl
201 201 gui_validation_error_plural: "%{count} fejl"
202 202
203 203 field_name: Navn
204 204 field_description: Beskrivelse
205 205 field_summary: Sammenfatning
206 206 field_is_required: Skal udfyldes
207 207 field_firstname: Fornavn
208 208 field_lastname: Efternavn
209 209 field_mail: Email
210 210 field_filename: Fil
211 211 field_filesize: Størrelse
212 212 field_downloads: Downloads
213 213 field_author: Forfatter
214 214 field_created_on: Oprettet
215 215 field_updated_on: Opdateret
216 216 field_field_format: Format
217 217 field_is_for_all: For alle projekter
218 218 field_possible_values: Mulige værdier
219 219 field_regexp: Regulære udtryk
220 220 field_min_length: Mindste længde
221 221 field_max_length: Største længde
222 222 field_value: Værdi
223 223 field_category: Kategori
224 224 field_title: Titel
225 225 field_project: Projekt
226 226 field_issue: Sag
227 227 field_status: Status
228 228 field_notes: Noter
229 229 field_is_closed: Sagen er lukket
230 230 field_is_default: Standardværdi
231 231 field_tracker: Type
232 232 field_subject: Emne
233 233 field_due_date: Deadline
234 234 field_assigned_to: Tildelt til
235 235 field_priority: Prioritet
236 236 field_fixed_version: Udgave
237 237 field_user: Bruger
238 238 field_role: Rolle
239 239 field_homepage: Hjemmeside
240 240 field_is_public: Offentlig
241 241 field_parent: Underprojekt af
242 242 field_is_in_roadmap: Sager vist i roadmap
243 243 field_login: Login
244 244 field_mail_notification: Email-påmindelser
245 245 field_admin: Administrator
246 246 field_last_login_on: Sidste forbindelse
247 247 field_language: Sprog
248 248 field_effective_date: Dato
249 249 field_password: Kodeord
250 250 field_new_password: Nyt kodeord
251 251 field_password_confirmation: Bekræft
252 252 field_version: Version
253 253 field_type: Type
254 254 field_host: Vært
255 255 field_port: Port
256 256 field_account: Kode
257 257 field_base_dn: Base DN
258 258 field_attr_login: Login attribut
259 259 field_attr_firstname: Fornavn attribut
260 260 field_attr_lastname: Efternavn attribut
261 261 field_attr_mail: Email attribut
262 262 field_onthefly: løbende brugeroprettelse
263 263 field_start_date: Start dato
264 264 field_done_ratio: "% færdig"
265 265 field_auth_source: Sikkerhedsmetode
266 266 field_hide_mail: Skjul min email
267 267 field_comments: Kommentar
268 268 field_url: URL
269 269 field_start_page: Startside
270 270 field_subproject: Underprojekt
271 271 field_hours: Timer
272 272 field_activity: Aktivitet
273 273 field_spent_on: Dato
274 274 field_identifier: Identifikator
275 275 field_is_filter: Brugt som et filter
276 276 field_issue_to: Beslægtede sag
277 277 field_delay: Udsættelse
278 278 field_assignable: Sager kan tildeles denne rolle
279 279 field_redirect_existing_links: Videresend eksisterende links
280 280 field_estimated_hours: Anslået tid
281 281 field_column_names: Kolonner
282 282 field_time_zone: Tidszone
283 283 field_searchable: Søgbar
284 284 field_default_value: Standardværdi
285 285
286 286 setting_app_title: Applikationstitel
287 287 setting_app_subtitle: Applikationsundertekst
288 288 setting_welcome_text: Velkomsttekst
289 289 setting_default_language: Standardsporg
290 290 setting_login_required: Sikkerhed påkrævet
291 291 setting_self_registration: Brugeroprettelse
292 292 setting_attachment_max_size: Vedhæftede filers max størrelse
293 293 setting_issues_export_limit: Sagseksporteringsbegrænsning
294 294 setting_mail_from: Afsender-email
295 295 setting_bcc_recipients: Skjult modtager (bcc)
296 296 setting_host_name: Værtsnavn
297 297 setting_text_formatting: Tekstformatering
298 298 setting_wiki_compression: Komprimering af wiki-historik
299 299 setting_feeds_limit: Feed indholdsbegrænsning
300 300 setting_autofetch_changesets: Hent automatisk commits
301 301 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
302 302 setting_commit_ref_keywords: Referencenøgleord
303 303 setting_commit_fix_keywords: Afslutningsnøgleord
304 304 setting_autologin: Automatisk login
305 305 setting_date_format: Datoformat
306 306 setting_time_format: Tidsformat
307 307 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
308 308 setting_issue_list_default_columns: Standardkolonner på sagslisten
309 309 setting_emails_footer: Email-fodnote
310 310 setting_protocol: Protokol
311 311 setting_user_format: Brugervisningsformat
312 312
313 313 project_module_issue_tracking: Sagssøgning
314 314 project_module_time_tracking: Tidsstyring
315 315 project_module_news: Nyheder
316 316 project_module_documents: Dokumenter
317 317 project_module_files: Filer
318 318 project_module_wiki: Wiki
319 319 project_module_repository: Repository
320 320 project_module_boards: Fora
321 321
322 322 label_user: Bruger
323 323 label_user_plural: Brugere
324 324 label_user_new: Ny bruger
325 325 label_project: Projekt
326 326 label_project_new: Nyt projekt
327 327 label_project_plural: Projekter
328 328 label_x_projects:
329 329 zero: Ingen projekter
330 330 one: 1 projekt
331 331 other: "%{count} projekter"
332 332 label_project_all: Alle projekter
333 333 label_project_latest: Seneste projekter
334 334 label_issue: Sag
335 335 label_issue_new: Opret sag
336 336 label_issue_plural: Sager
337 337 label_issue_view_all: Vis alle sager
338 338 label_issues_by: "Sager fra %{value}"
339 339 label_issue_added: Sagen er oprettet
340 340 label_issue_updated: Sagen er opdateret
341 341 label_document: Dokument
342 342 label_document_new: Nyt dokument
343 343 label_document_plural: Dokumenter
344 344 label_document_added: Dokument tilføjet
345 345 label_role: Rolle
346 346 label_role_plural: Roller
347 347 label_role_new: Ny rolle
348 348 label_role_and_permissions: Roller og rettigheder
349 349 label_member: Medlem
350 350 label_member_new: Nyt medlem
351 351 label_member_plural: Medlemmer
352 352 label_tracker: Type
353 353 label_tracker_plural: Typer
354 354 label_tracker_new: Ny type
355 355 label_workflow: Arbejdsgang
356 356 label_issue_status: Sagsstatus
357 357 label_issue_status_plural: Sagsstatusser
358 358 label_issue_status_new: Ny status
359 359 label_issue_category: Sagskategori
360 360 label_issue_category_plural: Sagskategorier
361 361 label_issue_category_new: Ny kategori
362 362 label_custom_field: Brugerdefineret felt
363 363 label_custom_field_plural: Brugerdefinerede felter
364 364 label_custom_field_new: Nyt brugerdefineret felt
365 365 label_enumerations: Værdier
366 366 label_enumeration_new: Ny værdi
367 367 label_information: Information
368 368 label_information_plural: Information
369 369 label_please_login: Login
370 370 label_register: Registrér
371 371 label_password_lost: Glemt kodeord
372 372 label_home: Forside
373 373 label_my_page: Min side
374 374 label_my_account: Min konto
375 375 label_my_projects: Mine projekter
376 376 label_administration: Administration
377 377 label_login: Log ind
378 378 label_logout: Log ud
379 379 label_help: Hjælp
380 380 label_reported_issues: Rapporterede sager
381 381 label_assigned_to_me_issues: Sager tildelt til mig
382 382 label_last_login: Sidste logintidspunkt
383 383 label_registered_on: Registreret den
384 384 label_activity: Aktivitet
385 385 label_new: Ny
386 386 label_logged_as: Registreret som
387 387 label_environment: Miljø
388 388 label_authentication: Sikkerhed
389 389 label_auth_source: Sikkerhedsmetode
390 390 label_auth_source_new: Ny sikkerhedsmetode
391 391 label_auth_source_plural: Sikkerhedsmetoder
392 392 label_subproject_plural: Underprojekter
393 393 label_min_max_length: Min - Max længde
394 394 label_list: Liste
395 395 label_date: Dato
396 396 label_integer: Heltal
397 397 label_float: Kommatal
398 398 label_boolean: Sand/falsk
399 399 label_string: Tekst
400 400 label_text: Lang tekst
401 401 label_attribute: Attribut
402 402 label_attribute_plural: Attributter
403 403 label_download: "%{count} Download"
404 404 label_download_plural: "%{count} Downloads"
405 405 label_no_data: Ingen data at vise
406 406 label_change_status: Ændringsstatus
407 407 label_history: Historik
408 408 label_attachment: Fil
409 409 label_attachment_new: Ny fil
410 410 label_attachment_delete: Slet fil
411 411 label_attachment_plural: Filer
412 412 label_file_added: Fil tilføjet
413 413 label_report: Rapport
414 414 label_report_plural: Rapporter
415 415 label_news: Nyheder
416 416 label_news_new: Tilføj nyheder
417 417 label_news_plural: Nyheder
418 418 label_news_latest: Seneste nyheder
419 419 label_news_view_all: Vis alle nyheder
420 420 label_news_added: Nyhed tilføjet
421 421 label_settings: Indstillinger
422 422 label_overview: Oversigt
423 423 label_version: Udgave
424 424 label_version_new: Ny udgave
425 425 label_version_plural: Udgaver
426 426 label_confirmation: Bekræftelser
427 427 label_export_to: Eksporter til
428 428 label_read: Læs...
429 429 label_public_projects: Offentlige projekter
430 430 label_open_issues: åben
431 431 label_open_issues_plural: åbne
432 432 label_closed_issues: lukket
433 433 label_closed_issues_plural: lukkede
434 434 label_x_open_issues_abbr_on_total:
435 435 zero: 0 åbne / %{total}
436 436 one: 1 åben / %{total}
437 437 other: "%{count} åbne / %{total}"
438 438 label_x_open_issues_abbr:
439 439 zero: 0 åbne
440 440 one: 1 åben
441 441 other: "%{count} åbne"
442 442 label_x_closed_issues_abbr:
443 443 zero: 0 lukkede
444 444 one: 1 lukket
445 445 other: "%{count} lukkede"
446 446 label_total: Total
447 447 label_permissions: Rettigheder
448 448 label_current_status: Nuværende status
449 449 label_new_statuses_allowed: Ny status tilladt
450 450 label_all: alle
451 451 label_none: intet
452 452 label_nobody: ingen
453 453 label_next: Næste
454 454 label_previous: Forrige
455 455 label_used_by: Brugt af
456 456 label_details: Detaljer
457 457 label_add_note: Tilføj note
458 458 label_per_page: Pr. side
459 459 label_calendar: Kalender
460 460 label_months_from: måneder frem
461 461 label_gantt: Gantt
462 462 label_internal: Intern
463 463 label_last_changes: "sidste %{count} ændringer"
464 464 label_change_view_all: Vis alle ændringer
465 465 label_personalize_page: Tilret denne side
466 466 label_comment: Kommentar
467 467 label_comment_plural: Kommentarer
468 468 label_x_comments:
469 469 zero: ingen kommentarer
470 470 one: 1 kommentar
471 471 other: "%{count} kommentarer"
472 472 label_comment_add: Tilføj en kommentar
473 473 label_comment_added: Kommentaren er tilføjet
474 474 label_comment_delete: Slet kommentar
475 475 label_query: Brugerdefineret forespørgsel
476 476 label_query_plural: Brugerdefinerede forespørgsler
477 477 label_query_new: Ny forespørgsel
478 478 label_filter_add: Tilføj filter
479 479 label_filter_plural: Filtre
480 480 label_equals: er
481 481 label_not_equals: er ikke
482 482 label_in_less_than: er mindre end
483 483 label_in_more_than: er større end
484 484 label_in: indeholdt i
485 485 label_today: i dag
486 486 label_all_time: altid
487 487 label_yesterday: i går
488 488 label_this_week: denne uge
489 489 label_last_week: sidste uge
490 490 label_last_n_days: "sidste %{count} dage"
491 491 label_this_month: denne måned
492 492 label_last_month: sidste måned
493 493 label_this_year: dette år
494 494 label_date_range: Dato interval
495 495 label_less_than_ago: mindre end dage siden
496 496 label_more_than_ago: mere end dage siden
497 497 label_ago: dage siden
498 498 label_contains: indeholder
499 499 label_not_contains: ikke indeholder
500 500 label_day_plural: dage
501 501 label_repository: Repository
502 502 label_repository_plural: Repositories
503 503 label_browse: Gennemse
504 504 label_modification: "%{count} ændring"
505 505 label_modification_plural: "%{count} ændringer"
506 506 label_revision: Revision
507 507 label_revision_plural: Revisioner
508 508 label_associated_revisions: Tilknyttede revisioner
509 509 label_added: tilføjet
510 510 label_modified: ændret
511 511 label_deleted: slettet
512 512 label_latest_revision: Seneste revision
513 513 label_latest_revision_plural: Seneste revisioner
514 514 label_view_revisions: Se revisioner
515 515 label_max_size: Maksimal størrelse
516 516 label_sort_highest: Flyt til toppen
517 517 label_sort_higher: Flyt op
518 518 label_sort_lower: Flyt ned
519 519 label_sort_lowest: Flyt til bunden
520 520 label_roadmap: Roadmap
521 521 label_roadmap_due_in: Deadline
522 522 label_roadmap_overdue: "%{value} forsinket"
523 523 label_roadmap_no_issues: Ingen sager i denne version
524 524 label_search: Søg
525 525 label_result_plural: Resultater
526 526 label_all_words: Alle ord
527 527 label_wiki: Wiki
528 528 label_wiki_edit: Wiki ændring
529 529 label_wiki_edit_plural: Wiki ændringer
530 530 label_wiki_page: Wiki side
531 531 label_wiki_page_plural: Wiki sider
532 532 label_index_by_title: Indhold efter titel
533 533 label_index_by_date: Indhold efter dato
534 534 label_current_version: Nuværende version
535 535 label_preview: Forhåndsvisning
536 536 label_feed_plural: Feeds
537 537 label_changes_details: Detaljer for alle ændringer
538 538 label_issue_tracking: Sagssøgning
539 539 label_spent_time: Anvendt tid
540 540 label_f_hour: "%{value} time"
541 541 label_f_hour_plural: "%{value} timer"
542 542 label_time_tracking: Tidsstyring
543 543 label_change_plural: Ændringer
544 544 label_statistics: Statistik
545 545 label_commits_per_month: Commits pr. måned
546 546 label_commits_per_author: Commits pr. bruger
547 547 label_view_diff: Vis forskelle
548 548 label_diff_inline: inline
549 549 label_diff_side_by_side: side om side
550 550 label_options: Formatering
551 551 label_copy_workflow_from: Kopier arbejdsgang fra
552 552 label_permissions_report: Godkendelsesrapport
553 553 label_watched_issues: Overvågede sager
554 554 label_related_issues: Relaterede sager
555 555 label_applied_status: Anvendte statusser
556 556 label_loading: Indlæser...
557 557 label_relation_new: Ny relation
558 558 label_relation_delete: Slet relation
559 559 label_relates_to: relaterer til
560 560 label_duplicates: duplikater
561 561 label_blocks: blokerer
562 562 label_blocked_by: blokeret af
563 563 label_precedes: kommer før
564 564 label_follows: følger
565 565 label_end_to_start: slut til start
566 566 label_end_to_end: slut til slut
567 567 label_start_to_start: start til start
568 568 label_start_to_end: start til slut
569 569 label_stay_logged_in: Forbliv indlogget
570 570 label_disabled: deaktiveret
571 571 label_show_completed_versions: Vis færdige versioner
572 572 label_me: mig
573 573 label_board: Forum
574 574 label_board_new: Nyt forum
575 575 label_board_plural: Fora
576 576 label_topic_plural: Emner
577 577 label_message_plural: Beskeder
578 578 label_message_last: Sidste besked
579 579 label_message_new: Ny besked
580 580 label_message_posted: Besked tilføjet
581 581 label_reply_plural: Besvarer
582 582 label_send_information: Send konto information til bruger
583 583 label_year: År
584 584 label_month: Måned
585 585 label_week: Uge
586 586 label_date_from: Fra
587 587 label_date_to: Til
588 588 label_language_based: Baseret på brugerens sprog
589 589 label_sort_by: "Sortér efter %{value}"
590 590 label_send_test_email: Send en test email
591 591 label_feeds_access_key_created_on: "RSS adgangsnøgle dannet for %{value} siden"
592 592 label_module_plural: Moduler
593 593 label_added_time_by: "Tilføjet af %{author} for %{age} siden"
594 594 label_updated_time: "Opdateret for %{value} siden"
595 595 label_jump_to_a_project: Skift til projekt...
596 596 label_file_plural: Filer
597 597 label_changeset_plural: Ændringer
598 598 label_default_columns: Standardkolonner
599 599 label_no_change_option: (Ingen ændringer)
600 600 label_bulk_edit_selected_issues: Masse-ret de valgte sager
601 601 label_theme: Tema
602 602 label_default: standard
603 603 label_search_titles_only: Søg kun i titler
604 604 label_user_mail_option_all: "For alle hændelser mine projekter"
605 605 label_user_mail_option_selected: "For alle hændelser de valgte projekter..."
606 606 label_user_mail_no_self_notified: "Jeg ønsker ikke besked om ændring foretaget af mig selv"
607 607 label_registration_activation_by_email: kontoaktivering på email
608 608 label_registration_manual_activation: manuel kontoaktivering
609 609 label_registration_automatic_activation: automatisk kontoaktivering
610 610 label_display_per_page: "Per side: %{value}"
611 611 label_age: Alder
612 612 label_change_properties: Ændre indstillinger
613 613 label_general: Generelt
614 614 label_more: Mere
615 615 label_scm: SCM
616 616 label_plugins: Plugins
617 617 label_ldap_authentication: LDAP-godkendelse
618 618 label_downloads_abbr: D/L
619 619
620 620 button_login: Login
621 621 button_submit: Send
622 622 button_save: Gem
623 623 button_check_all: Vælg alt
624 624 button_uncheck_all: Fravælg alt
625 625 button_delete: Slet
626 626 button_create: Opret
627 627 button_test: Test
628 628 button_edit: Ret
629 629 button_add: Tilføj
630 630 button_change: Ændre
631 631 button_apply: Anvend
632 632 button_clear: Nulstil
633 633 button_lock: Lås
634 634 button_unlock: Lås op
635 635 button_download: Download
636 636 button_list: List
637 637 button_view: Vis
638 638 button_move: Flyt
639 639 button_back: Tilbage
640 640 button_cancel: Annullér
641 641 button_activate: Aktivér
642 642 button_sort: Sortér
643 643 button_log_time: Log tid
644 644 button_rollback: Tilbagefør til denne version
645 645 button_watch: Overvåg
646 646 button_unwatch: Stop overvågning
647 647 button_reply: Besvar
648 648 button_archive: Arkivér
649 649 button_unarchive: Fjern fra arkiv
650 650 button_reset: Nulstil
651 651 button_rename: Omdøb
652 652 button_change_password: Skift kodeord
653 653 button_copy: Kopiér
654 654 button_annotate: Annotér
655 655 button_update: Opdatér
656 656 button_configure: Konfigurér
657 657
658 658 status_active: aktiv
659 659 status_registered: registreret
660 660 status_locked: låst
661 661
662 662 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
663 663 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
664 664 text_min_max_length_info: 0 betyder ingen begrænsninger
665 665 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
666 666 text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen
667 667 text_are_you_sure: Er du sikker?
668 668 text_tip_issue_begin_day: opgaven begynder denne dag
669 669 text_tip_issue_end_day: opaven slutter denne dag
670 670 text_tip_issue_begin_end_day: opgaven begynder og slutter denne dag
671 671 text_caracters_maximum: "max %{count} karakterer."
672 672 text_caracters_minimum: "Skal være mindst %{count} karakterer lang."
673 673 text_length_between: "Længde skal være mellem %{min} og %{max} karakterer."
674 674 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
675 675 text_unallowed_characters: Ikke-tilladte karakterer
676 676 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
677 677 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
678 678 text_issue_added: "Sag %{id} er rapporteret af %{author}."
679 679 text_issue_updated: "Sag %{id} er blevet opdateret af %{author}."
680 680 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
681 681 text_issue_category_destroy_question: "Nogle sager (%{count}) er tildelt denne kategori. Hvad ønsker du at gøre?"
682 682 text_issue_category_destroy_assignments: Slet tildelinger af kategori
683 683 text_issue_category_reassign_to: Tildel sager til denne kategori
684 684 text_user_mail_option: "For ikke-valgte projekter vil du kun modtage beskeder omhandlende ting du er involveret i eller overvåger (f.eks. sager du har indberettet eller ejer)."
685 685 text_no_configuration_data: "Roller, typer, sagsstatusser og arbejdsgange er endnu ikke konfigureret.\nDet er anbefalet at indlæse standardopsætningen. Du vil kunne ændre denne når den er indlæst."
686 686 text_load_default_configuration: Indlæs standardopsætningen
687 687 text_status_changed_by_changeset: "Anvendt i ændring %{value}."
688 688 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
689 689 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
690 690 text_default_administrator_account_changed: Standardadministratorkonto ændret
691 691 text_file_repository_writable: Filarkiv er skrivbar
692 692 text_rmagick_available: RMagick tilgængelig (valgfri)
693 693
694 694 default_role_manager: Leder
695 695 default_role_developer: Udvikler
696 696 default_role_reporter: Rapportør
697 697 default_tracker_bug: Fejl
698 698 default_tracker_feature: Funktion
699 699 default_tracker_support: Support
700 700 default_issue_status_new: Ny
701 701 default_issue_status_in_progress: Igangværende
702 702 default_issue_status_resolved: Løst
703 703 default_issue_status_feedback: Feedback
704 704 default_issue_status_closed: Lukket
705 705 default_issue_status_rejected: Afvist
706 706 default_doc_category_user: Brugerdokumentation
707 707 default_doc_category_tech: Teknisk dokumentation
708 708 default_priority_low: Lav
709 709 default_priority_normal: Normal
710 710 default_priority_high: Høj
711 711 default_priority_urgent: Akut
712 712 default_priority_immediate: Omgående
713 713 default_activity_design: Design
714 714 default_activity_development: Udvikling
715 715
716 716 enumeration_issue_priorities: Sagsprioriteter
717 717 enumeration_doc_categories: Dokumentkategorier
718 718 enumeration_activities: Aktiviteter (tidsstyring)
719 719
720 720 label_add_another_file: Tilføj endnu en fil
721 721 label_chronological_order: I kronologisk rækkefølge
722 722 setting_activity_days_default: Antal dage der vises under projektaktivitet
723 723 text_destroy_time_entries_question: "%{hours} timer er registreret denne sag som du er ved at slette. Hvad vil du gøre?"
724 724 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
725 725 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
726 726 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
727 727 label_optional_description: Valgfri beskrivelse
728 728 text_destroy_time_entries: Slet registrerede timer
729 729 field_comments_sorting: Vis kommentar
730 730 text_reassign_time_entries: 'Tildel registrerede timer til denne sag igen'
731 731 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
732 732 label_preferences: Præferencer
733 733 label_overall_activity: Overordnet aktivitet
734 734 setting_default_projects_public: Nye projekter er offentlige som standard
735 735 error_scm_annotate: "Filen findes ikke, eller kunne ikke annoteres."
736 736 label_planning: Planlægning
737 737 text_subprojects_destroy_warning: "Dets underprojekter(er): %{value} vil også blive slettet."
738 738 permission_edit_issues: Redigér sager
739 739 setting_diff_max_lines_displayed: Højeste antal forskelle der vises
740 740 permission_edit_own_issue_notes: Redigér egne noter
741 741 setting_enabled_scm: Aktiveret SCM
742 742 button_quote: Citér
743 743 permission_view_files: Se filer
744 744 permission_add_issues: Tilføj sager
745 745 permission_edit_own_messages: Redigér egne beskeder
746 746 permission_delete_own_messages: Slet egne beskeder
747 747 permission_manage_public_queries: Administrér offentlig forespørgsler
748 748 permission_log_time: Registrér anvendt tid
749 749 label_renamed: omdøbt
750 750 label_incoming_emails: Indkommende emails
751 751 permission_view_changesets: Se ændringer
752 752 permission_manage_versions: Administrér versioner
753 753 permission_view_time_entries: Se anvendt tid
754 754 label_generate_key: Generér en nøglefil
755 755 permission_manage_categories: Administrér sagskategorier
756 756 permission_manage_wiki: Administrér wiki
757 757 setting_sequential_project_identifiers: Generér sekventielle projekt-identifikatorer
758 758 setting_plain_text_mail: Emails som almindelig tekst (ingen HTML)
759 759 field_parent_title: Siden over
760 760 text_email_delivery_not_configured: "Email-afsendelse er ikke indstillet og notifikationer er defor slået fra.\nKonfigurér din SMTP server i config/configuration.yml og genstart applikationen for at aktivere email-afsendelse."
761 761 permission_protect_wiki_pages: Beskyt wiki sider
762 762 permission_manage_documents: Administrér dokumenter
763 763 permission_add_issue_watchers: Tilføj overvågere
764 764 warning_attachments_not_saved: "der var %{count} fil(er), som ikke kunne gemmes."
765 765 permission_comment_news: Kommentér nyheder
766 766 text_enumeration_category_reassign_to: 'Flyt dem til denne værdi:'
767 767 permission_select_project_modules: Vælg projektmoduler
768 768 permission_view_gantt: Se Gantt diagram
769 769 permission_delete_messages: Slet beskeder
770 770 permission_move_issues: Flyt sager
771 771 permission_edit_wiki_pages: Redigér wiki sider
772 772 label_user_activity: "%{value}'s aktivitet"
773 773 permission_manage_issue_relations: Administrér sags-relationer
774 774 label_issue_watchers: Overvågere
775 775 permission_delete_wiki_pages: Slet wiki sider
776 776 notice_unable_delete_version: Kan ikke slette versionen.
777 777 permission_view_wiki_edits: Se wiki historik
778 778 field_editable: Redigérbar
779 779 label_duplicated_by: dubleret af
780 780 permission_manage_boards: Administrér fora
781 781 permission_delete_wiki_pages_attachments: Slet filer vedhæftet wiki sider
782 782 permission_view_messages: Se beskeder
783 783 text_enumeration_destroy_question: "%{count} objekter er tildelt denne værdi."
784 784 permission_manage_files: Administrér filer
785 785 permission_add_messages: Opret beskeder
786 786 permission_edit_issue_notes: Redigér noter
787 787 permission_manage_news: Administrér nyheder
788 788 text_plugin_assets_writable: Der er skriverettigheder til plugin assets folderen
789 789 label_display: Vis
790 790 label_and_its_subprojects: "%{value} og dets underprojekter"
791 791 permission_view_calendar: Se kalender
792 792 button_create_and_continue: Opret og fortsæt
793 793 setting_gravatar_enabled: Anvend Gravatar brugerikoner
794 794 label_updated_time_by: "Opdateret af %{author} for %{age} siden"
795 795 text_diff_truncated: '... Listen over forskelle er blevet afkortet da den overstiger den maksimale størrelse der kan vises.'
796 796 text_user_wrote: "%{value} skrev:"
797 797 setting_mail_handler_api_enabled: Aktiver webservice for indkomne emails
798 798 permission_delete_issues: Slet sager
799 799 permission_view_documents: Se dokumenter
800 800 permission_browse_repository: Gennemse repository
801 801 permission_manage_repository: Administrér repository
802 802 permission_manage_members: Administrér medlemmer
803 803 mail_subject_reminder: "%{count} sag(er) har deadline i de kommende dage (%{days})"
804 804 permission_add_issue_notes: Tilføj noter
805 805 permission_edit_messages: Redigér beskeder
806 806 permission_view_issue_watchers: Se liste over overvågere
807 807 permission_commit_access: Commit adgang
808 808 setting_mail_handler_api_key: API nøgle
809 809 label_example: Eksempel
810 810 permission_rename_wiki_pages: Omdøb wiki sider
811 811 text_custom_field_possible_values_info: 'En linje for hver værdi'
812 812 permission_view_wiki_pages: Se wiki
813 813 permission_edit_project: Redigér projekt
814 814 permission_save_queries: Gem forespørgsler
815 815 label_copied: kopieret
816 816 text_repository_usernames_mapping: "Vælg eller opdatér de Redmine brugere der svarer til de enkelte brugere fundet i repository loggen.\nBrugere med samme brugernavn eller email adresse i både Redmine og det valgte repository bliver automatisk koblet sammen."
817 817 permission_edit_time_entries: Redigér tidsregistreringer
818 818 general_csv_decimal_separator: ','
819 819 permission_edit_own_time_entries: Redigér egne tidsregistreringer
820 820 setting_repository_log_display_limit: Højeste antal revisioner vist i fil-log
821 821 setting_file_max_size_displayed: Maksimale størrelse på tekstfiler vist inline
822 822 field_watcher: Overvåger
823 823 setting_openid: Tillad OpenID login og registrering
824 824 field_identity_url: OpenID URL
825 825 label_login_with_open_id_option: eller login med OpenID
826 826 setting_per_page_options: Enheder per side muligheder
827 827 mail_body_reminder: "%{count} sage(er) som er tildelt dig har deadline indenfor de næste %{days} dage:"
828 828 field_content: Indhold
829 829 label_descending: Aftagende
830 830 label_sort: Sortér
831 831 label_ascending: Tiltagende
832 832 label_date_from_to: Fra %{start} til %{end}
833 833 label_greater_or_equal: ">="
834 834 label_less_or_equal: <=
835 835 text_wiki_page_destroy_question: Denne side har %{descendants} underside(r) og afledte. Hvad vil du gøre?
836 836 text_wiki_page_reassign_children: Flyt undersider til denne side
837 837 text_wiki_page_nullify_children: Behold undersider som rod-sider
838 838 text_wiki_page_destroy_children: Slet undersider ogalle deres afledte sider.
839 839 setting_password_min_length: Mindste længde på kodeord
840 840 field_group_by: Gruppér resultater efter
841 841 mail_subject_wiki_content_updated: "'%{id}' wikisiden er blevet opdateret"
842 842 label_wiki_content_added: Wiki side tilføjet
843 843 mail_subject_wiki_content_added: "'%{id}' wikisiden er blevet tilføjet"
844 844 mail_body_wiki_content_added: The '%{id}' wikiside er blevet tilføjet af %{author}.
845 845 label_wiki_content_updated: Wikiside opdateret
846 846 mail_body_wiki_content_updated: Wikisiden '%{id}' er blevet opdateret af %{author}.
847 847 permission_add_project: Opret projekt
848 848 setting_new_project_user_role_id: Denne rolle gives til en bruger, som ikke er administrator, og som opretter et projekt
849 849 label_view_all_revisions: Se alle revisioner
850 850 label_tag: Tag
851 851 label_branch: Branch
852 852 error_no_tracker_in_project: Der er ingen sagshåndtering for dette projekt. Kontrollér venligst projektindstillingerne.
853 853 error_no_default_issue_status: Der er ikke defineret en standardstatus. Kontrollér venligst indstillingerne (gå til "Administration -> Sagsstatusser").
854 854 text_journal_changed: "%{label} ændret fra %{old} til %{new}"
855 855 text_journal_set_to: "%{label} sat til %{value}"
856 856 text_journal_deleted: "%{label} slettet (%{old})"
857 857 label_group_plural: Grupper
858 858 label_group: Grupper
859 859 label_group_new: Ny gruppe
860 860 label_time_entry_plural: Anvendt tid
861 861 text_journal_added: "%{label} %{value} tilføjet"
862 862 field_active: Aktiv
863 863 enumeration_system_activity: System Aktivitet
864 864 permission_delete_issue_watchers: Slet overvågere
865 865 version_status_closed: lukket
866 866 version_status_locked: låst
867 867 version_status_open: åben
868 868 error_can_not_reopen_issue_on_closed_version: En sag tildelt en lukket version kan ikke genåbnes
869 869 label_user_anonymous: Anonym
870 870 button_move_and_follow: Flyt og overvåg
871 871 setting_default_projects_modules: Standard moduler, aktiveret for nye projekter
872 872 setting_gravatar_default: Standard Gravatar billede
873 873 field_sharing: Delning
874 874 label_version_sharing_hierarchy: Med projekthierarki
875 875 label_version_sharing_system: Med alle projekter
876 876 label_version_sharing_descendants: Med underprojekter
877 877 label_version_sharing_tree: Med projekttræ
878 878 label_version_sharing_none: Ikke delt
879 879 error_can_not_archive_project: Dette projekt kan ikke arkiveres
880 880 button_duplicate: Duplikér
881 881 button_copy_and_follow: Kopiér og overvåg
882 882 label_copy_source: Kilde
883 883 setting_issue_done_ratio: Beregn sagsløsning ratio
884 884 setting_issue_done_ratio_issue_status: Benyt sagsstatus
885 885 error_issue_done_ratios_not_updated: Sagsløsnings ratio, ikke opdateret.
886 886 error_workflow_copy_target: Vælg venligst måltracker og rolle(r)
887 887 setting_issue_done_ratio_issue_field: Benyt sagsfelt
888 888 label_copy_same_as_target: Samme som mål
889 889 label_copy_target: Mål
890 890 notice_issue_done_ratios_updated: Sagsløsningsratio opdateret.
891 891 error_workflow_copy_source: Vælg venligst en kildetracker eller rolle
892 892 label_update_issue_done_ratios: Opdater sagsløsningsratio
893 893 setting_start_of_week: Start kalendre på
894 894 permission_view_issues: Vis sager
895 895 label_display_used_statuses_only: Vis kun statusser der er benyttet af denne tracker
896 896 label_revision_id: Revision %{value}
897 897 label_api_access_key: API nøgle
898 898 label_api_access_key_created_on: API nøgle genereret %{value} siden
899 899 label_feeds_access_key: RSS nøgle
900 900 notice_api_access_key_reseted: Din API nøgle er nulstillet.
901 901 setting_rest_api_enabled: Aktiver REST web service
902 902 label_missing_api_access_key: Mangler en API nøgle
903 903 label_missing_feeds_access_key: Mangler en RSS nøgle
904 904 button_show: Vis
905 905 text_line_separated: Flere væredier tilladt (en linje for hver værdi).
906 906 setting_mail_handler_body_delimiters: Trunkér emails efter en af disse linjer
907 907 permission_add_subprojects: Lav underprojekter
908 908 label_subproject_new: Nyt underprojekt
909 909 text_own_membership_delete_confirmation: |-
910 910 Du er ved at fjerne en eller flere af dine rettigheder, og kan muligvis ikke redigere projektet bagefter.
911 911 Er du sikker på du ønsker at fortsætte?
912 912 label_close_versions: Luk færdige versioner
913 913 label_board_sticky: Klistret
914 914 label_board_locked: Låst
915 915 permission_export_wiki_pages: Eksporter wiki sider
916 916 setting_cache_formatted_text: Cache formatteret tekst
917 917 permission_manage_project_activities: Administrer projektaktiviteter
918 918 error_unable_delete_issue_status: Det var ikke muligt at slette sagsstatus
919 919 label_profile: Profil
920 920 permission_manage_subtasks: Administrer underopgaver
921 921 field_parent_issue: Hovedopgave
922 922 label_subtask_plural: Underopgaver
923 923 label_project_copy_notifications: Send email notifikationer, mens projektet kopieres
924 924 error_can_not_delete_custom_field: Kan ikke slette brugerdefineret felt
925 925 error_unable_to_connect: Kan ikke forbinde (%{value})
926 926 error_can_not_remove_role: Denne rolle er i brug og kan ikke slettes.
927 927 error_can_not_delete_tracker: Denne type indeholder sager og kan ikke slettes.
928 928 field_principal: Principal
929 929 label_my_page_block: blok
930 930 notice_failed_to_save_members: "Fejl under lagring af medlem(mer): %{errors}."
931 931 text_zoom_out: Zoom ud
932 932 text_zoom_in: Zoom ind
933 933 notice_unable_delete_time_entry: Kan ikke slette tidsregistrering.
934 934 label_overall_spent_time: Overordnet forbrug af tid
935 935 field_time_entries: Log tid
936 936 project_module_gantt: Gantt
937 937 project_module_calendar: Kalender
938 938 button_edit_associated_wikipage: "Redigér tilknyttet Wiki side: %{page_title}"
939 939 text_are_you_sure_with_children: Slet sag og alle undersager?
940 940 field_text: Tekstfelt
941 941 label_user_mail_option_only_owner: Kun for ting jeg er ejer af
942 942 setting_default_notification_option: Standardpåmindelsesmulighed
943 943 label_user_mail_option_only_my_events: Kun for ting jeg overvåger eller er involveret i
944 944 label_user_mail_option_only_assigned: Kun for ting jeg er tildelt
945 945 label_user_mail_option_none: Ingen hændelser
946 946 field_member_of_group: Medlem af gruppe
947 947 field_assigned_to_role: Medlem af rolle
948 948 notice_not_authorized_archived_project: Projektet du prøver at tilgå, er blevet arkiveret.
949 949 label_principal_search: "Søg efter bruger eller gruppe:"
950 950 label_user_search: "Søg efter bruger:"
951 951 field_visible: Synlig
952 952 setting_emails_header: Emails header
953 953 setting_commit_logtime_activity_id: Aktivitet for registreret tid
954 954 text_time_logged_by_changeset: Anvendt i changeset %{value}.
955 955 setting_commit_logtime_enabled: Aktiver tidsregistrering
956 956 notice_gantt_chart_truncated: Kortet er blevet afkortet, fordi det overstiger det maksimale antal elementer, der kan vises (%{max})
957 957 setting_gantt_items_limit: Maksimalt antal af elementer der kan vises på gantt kortet
958 958
959 959 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
960 960 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
961 961 label_my_queries: My custom queries
962 962 text_journal_changed_no_detail: "%{label} updated"
963 963 label_news_comment_added: Comment added to a news
964 964 button_expand_all: Expand all
965 965 button_collapse_all: Collapse all
966 966 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
967 967 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
968 968 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
969 969 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
970 970 label_role_anonymous: Anonymous
971 971 label_role_non_member: Non member
972 972 label_issue_note_added: Note added
973 973 label_issue_status_updated: Status updated
974 974 label_issue_priority_updated: Priority updated
975 975 label_issues_visibility_own: Issues created by or assigned to the user
976 976 field_issues_visibility: Issues visibility
977 977 label_issues_visibility_all: All issues
978 978 permission_set_own_issues_private: Set own issues public or private
979 979 field_is_private: Private
980 980 permission_set_issues_private: Set issues public or private
981 981 label_issues_visibility_public: All non private issues
982 982 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
983 983 field_commit_logs_encoding: Kodning af Commit beskeder
984 984 field_scm_path_encoding: Path encoding
985 985 text_scm_path_encoding_note: "Default: UTF-8"
986 986 field_path_to_repository: Path to repository
987 987 field_root_directory: Root directory
988 988 field_cvs_module: Module
989 989 field_cvsroot: CVSROOT
990 990 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
991 991 text_scm_command: Command
992 992 text_scm_command_version: Version
993 993 label_git_report_last_commit: Report last commit for files and directories
994 994 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
995 995 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
996 996 notice_issue_successful_create: Issue %{id} created.
997 997 label_between: between
998 998 setting_issue_group_assignment: Allow issue assignment to groups
999 999 label_diff: diff
1000 1000 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
1001 1001 description_query_sort_criteria_direction: Sort direction
1002 1002 description_project_scope: Search scope
1003 1003 description_filter: Filter
1004 1004 description_user_mail_notification: Mail notification settings
1005 1005 description_date_from: Enter start date
1006 1006 description_message_content: Message content
1007 1007 description_available_columns: Available Columns
1008 1008 description_date_range_interval: Choose range by selecting start and end date
1009 1009 description_issue_category_reassign: Choose issue category
1010 1010 description_search: Searchfield
1011 1011 description_notes: Notes
1012 1012 description_date_range_list: Choose range from list
1013 1013 description_choose_project: Projects
1014 1014 description_date_to: Enter end date
1015 1015 description_query_sort_criteria_attribute: Sort attribute
1016 1016 description_wiki_subpages_reassign: Choose new parent page
1017 1017 description_selected_columns: Selected Columns
1018 1018 label_parent_revision: Parent
1019 1019 label_child_revision: Child
1020 1020 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
1021 1021 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1022 1022 button_edit_section: Edit this section
1023 1023 setting_repositories_encodings: Attachments and repositories encodings
1024 1024 description_all_columns: All Columns
1025 1025 button_export: Export
1026 1026 label_export_options: "%{export_format} export options"
1027 1027 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1028 1028 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1029 1029 label_x_issues:
1030 1030 zero: 0 sag
1031 1031 one: 1 sag
1032 1032 other: "%{count} sager"
1033 1033 label_repository_new: New repository
1034 1034 field_repository_is_default: Main repository
1035 1035 label_copy_attachments: Copy attachments
1036 1036 label_item_position: "%{position}/%{count}"
1037 1037 label_completed_versions: Completed versions
1038 1038 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1039 1039 field_multiple: Multiple values
1040 1040 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1041 1041 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1042 1042 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1043 1043 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1044 1044 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1045 1045 permission_manage_related_issues: Manage related issues
1046 1046 field_ldap_filter: LDAP filter
1047 1047 label_search_for_watchers: Search for watchers to add
1048 1048 notice_account_deleted: Your account has been permanently deleted.
1049 1049 setting_unsubscribe: Allow users to delete their own account
1050 1050 button_delete_my_account: Delete my account
1051 1051 text_account_destroy_confirmation: |-
1052 1052 Are you sure you want to proceed?
1053 1053 Your account will be permanently deleted, with no way to reactivate it.
1054 1054 error_session_expired: Your session has expired. Please login again.
1055 1055 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1056 1056 setting_session_lifetime: Session maximum lifetime
1057 1057 setting_session_timeout: Session inactivity timeout
1058 1058 label_session_expiration: Session expiration
1059 1059 permission_close_project: Close / reopen the project
1060 1060 label_show_closed_projects: View closed projects
1061 1061 button_close: Close
1062 1062 button_reopen: Reopen
1063 1063 project_status_active: active
1064 1064 project_status_closed: closed
1065 1065 project_status_archived: archived
1066 1066 text_project_closed: This project is closed and read-only.
1067 1067 notice_user_successful_create: User %{id} created.
1068 1068 field_core_fields: Standard fields
1069 1069 field_timeout: Timeout (in seconds)
1070 1070 setting_thumbnails_enabled: Display attachment thumbnails
1071 1071 setting_thumbnails_size: Thumbnails size (in pixels)
1072 label_status_transitions: Status transitions
1073 label_fields_permissions: Fields permissions
1074 label_readonly: Read-only
1075 label_required: Required
@@ -1,1072 +1,1076
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 hour"
57 57 other: "%{count} hours"
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 separator:
88 88 delimiter:
89 89 precision:
90 90 percentage:
91 91 format:
92 92 delimiter: ""
93 93 precision:
94 94 format:
95 95 delimiter: ""
96 96 human:
97 97 format:
98 98 delimiter: ""
99 99 precision: 3
100 100 storage_units:
101 101 format: "%n %u"
102 102 units:
103 103 byte:
104 104 one: "Byte"
105 105 other: "Bytes"
106 106 kb: "KB"
107 107 mb: "MB"
108 108 gb: "GB"
109 109 tb: "TB"
110 110
111 111 # Used in array.to_sentence.
112 112 support:
113 113 array:
114 114 sentence_connector: "und"
115 115 skip_last_comma: true
116 116
117 117 activerecord:
118 118 errors:
119 119 template:
120 120 header:
121 121 one: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler."
122 122 other: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler."
123 123 body: "Bitte überprüfen Sie die folgenden Felder:"
124 124
125 125 messages:
126 126 inclusion: "ist kein gültiger Wert"
127 127 exclusion: "ist nicht verfügbar"
128 128 invalid: "ist nicht gültig"
129 129 confirmation: "stimmt nicht mit der Bestätigung überein"
130 130 accepted: "muss akzeptiert werden"
131 131 empty: "muss ausgefüllt werden"
132 132 blank: "muss ausgefüllt werden"
133 133 too_long: "ist zu lang (nicht mehr als %{count} Zeichen)"
134 134 too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)"
135 135 wrong_length: "hat die falsche Länge (muss genau %{count} Zeichen haben)"
136 136 taken: "ist bereits vergeben"
137 137 not_a_number: "ist keine Zahl"
138 138 not_a_date: "is kein gültiges Datum"
139 139 greater_than: "muss größer als %{count} sein"
140 140 greater_than_or_equal_to: "muss größer oder gleich %{count} sein"
141 141 equal_to: "muss genau %{count} sein"
142 142 less_than: "muss kleiner als %{count} sein"
143 143 less_than_or_equal_to: "muss kleiner oder gleich %{count} sein"
144 144 odd: "muss ungerade sein"
145 145 even: "muss gerade sein"
146 146 greater_than_start_date: "muss größer als Anfangsdatum sein"
147 147 not_same_project: "gehört nicht zum selben Projekt"
148 148 circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen"
149 149 cant_link_an_issue_with_a_descendant: "Ein Ticket kann nicht mit einer ihrer Unteraufgaben verlinkt werden"
150 150
151 151 actionview_instancetag_blank_option: Bitte auswählen
152 152
153 153 general_text_No: 'Nein'
154 154 general_text_Yes: 'Ja'
155 155 general_text_no: 'nein'
156 156 general_text_yes: 'ja'
157 157 general_lang_name: 'Deutsch'
158 158 general_csv_separator: ';'
159 159 general_csv_decimal_separator: ','
160 160 general_csv_encoding: ISO-8859-1
161 161 general_pdf_encoding: UTF-8
162 162 general_first_day_of_week: '1'
163 163
164 164 notice_account_updated: Konto wurde erfolgreich aktualisiert.
165 165 notice_account_invalid_creditentials: Benutzer oder Kennwort ist ungültig.
166 166 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
167 167 notice_account_wrong_password: Falsches Kennwort.
168 168 notice_account_register_done: Konto wurde erfolgreich angelegt.
169 169 notice_account_unknown_email: Unbekannter Benutzer.
170 170 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
171 171 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
172 172 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
173 173 notice_successful_create: Erfolgreich angelegt
174 174 notice_successful_update: Erfolgreich aktualisiert.
175 175 notice_successful_delete: Erfolgreich gelöscht.
176 176 notice_successful_connection: Verbindung erfolgreich.
177 177 notice_file_not_found: Anhang existiert nicht oder ist gelöscht worden.
178 178 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
179 179 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
180 180 notice_email_sent: "Eine E-Mail wurde an %{value} gesendet."
181 181 notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten (%{value})."
182 182 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
183 183 notice_api_access_key_reseted: Ihr API-Zugriffsschlüssel wurde zurückgesetzt.
184 184 notice_failed_to_save_issues: "%{count} von %{total} ausgewählten Tickets konnte(n) nicht gespeichert werden: %{ids}."
185 185 notice_failed_to_save_members: "Benutzer konnte nicht gespeichert werden: %{errors}."
186 186 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
187 187 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
188 188 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
189 189 notice_unable_delete_version: Die Version konnte nicht gelöscht werden.
190 190 notice_unable_delete_time_entry: Der Zeiterfassungseintrag konnte nicht gelöscht werden.
191 191 notice_issue_done_ratios_updated: Der Ticket-Fortschritt wurde aktualisiert.
192 192
193 193 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %{value}"
194 194 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
195 195 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %{value}"
196 196 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
197 197 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
198 198 error_no_tracker_in_project: Diesem Projekt ist kein Tracker zugeordnet. Bitte überprüfen Sie die Projekteinstellungen.
199 199 error_no_default_issue_status: Es ist kein Status als Standard definiert. Bitte überprüfen Sie Ihre Konfiguration (unter "Administration -> Ticket-Status").
200 200 error_can_not_delete_custom_field: Kann das benutzerdefinierte Feld nicht löschen.
201 201 error_can_not_delete_tracker: Dieser Tracker enthält Tickets und kann nicht gelöscht werden.
202 202 error_can_not_remove_role: Diese Rolle wird verwendet und kann nicht gelöscht werden.
203 203 error_can_not_reopen_issue_on_closed_version: Das Ticket ist einer abgeschlossenen Version zugeordnet und kann daher nicht wieder geöffnet werden.
204 204 error_can_not_archive_project: Dieses Projekt kann nicht archiviert werden.
205 205 error_issue_done_ratios_not_updated: Der Ticket-Fortschritt wurde nicht aktualisiert.
206 206 error_workflow_copy_source: Bitte wählen Sie einen Quell-Tracker und eine Quell-Rolle.
207 207 error_workflow_copy_target: Bitte wählen Sie die Ziel-Tracker und -Rollen.
208 208 error_unable_delete_issue_status: "Der Ticket-Status konnte nicht gelöscht werden."
209 209 error_unable_to_connect: Fehler beim Verbinden (%{value})
210 210 warning_attachments_not_saved: "%{count} Datei(en) konnten nicht gespeichert werden."
211 211
212 212 mail_subject_lost_password: "Ihr %{value} Kennwort"
213 213 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
214 214 mail_subject_register: "%{value} Kontoaktivierung"
215 215 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
216 216 mail_body_account_information_external: "Sie können sich mit Ihrem Konto %{value} anmelden."
217 217 mail_body_account_information: Ihre Konto-Informationen
218 218 mail_subject_account_activation_request: "Antrag auf %{value} Kontoaktivierung"
219 219 mail_body_account_activation_request: "Ein neuer Benutzer (%{value}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:"
220 220 mail_subject_reminder: "%{count} Tickets müssen in den nächsten %{days} Tagen abgegeben werden"
221 221 mail_body_reminder: "%{count} Tickets, die Ihnen zugewiesen sind, müssen in den nächsten %{days} Tagen abgegeben werden:"
222 222 mail_subject_wiki_content_added: "Wiki-Seite '%{id}' hinzugefügt"
223 223 mail_body_wiki_content_added: "Die Wiki-Seite '%{id}' wurde von %{author} hinzugefügt."
224 224 mail_subject_wiki_content_updated: "Wiki-Seite '%{id}' erfolgreich aktualisiert"
225 225 mail_body_wiki_content_updated: "Die Wiki-Seite '%{id}' wurde von %{author} aktualisiert."
226 226
227 227 gui_validation_error: 1 Fehler
228 228 gui_validation_error_plural: "%{count} Fehler"
229 229
230 230 field_name: Name
231 231 field_description: Beschreibung
232 232 field_summary: Zusammenfassung
233 233 field_is_required: Erforderlich
234 234 field_firstname: Vorname
235 235 field_lastname: Nachname
236 236 field_mail: E-Mail
237 237 field_filename: Datei
238 238 field_filesize: Größe
239 239 field_downloads: Downloads
240 240 field_author: Autor
241 241 field_created_on: Angelegt
242 242 field_updated_on: Aktualisiert
243 243 field_field_format: Format
244 244 field_is_for_all: Für alle Projekte
245 245 field_possible_values: Mögliche Werte
246 246 field_regexp: Regulärer Ausdruck
247 247 field_min_length: Minimale Länge
248 248 field_max_length: Maximale Länge
249 249 field_value: Wert
250 250 field_category: Kategorie
251 251 field_title: Titel
252 252 field_project: Projekt
253 253 field_issue: Ticket
254 254 field_status: Status
255 255 field_notes: Kommentare
256 256 field_is_closed: Ticket geschlossen
257 257 field_is_default: Standardeinstellung
258 258 field_tracker: Tracker
259 259 field_subject: Thema
260 260 field_due_date: Abgabedatum
261 261 field_assigned_to: Zugewiesen an
262 262 field_priority: Priorität
263 263 field_fixed_version: Zielversion
264 264 field_user: Benutzer
265 265 field_principal: Auftraggeber
266 266 field_role: Rolle
267 267 field_homepage: Projekt-Homepage
268 268 field_is_public: Öffentlich
269 269 field_parent: Unterprojekt von
270 270 field_is_in_roadmap: In der Roadmap anzeigen
271 271 field_login: Mitgliedsname
272 272 field_mail_notification: Mailbenachrichtigung
273 273 field_admin: Administrator
274 274 field_last_login_on: Letzte Anmeldung
275 275 field_language: Sprache
276 276 field_effective_date: Datum
277 277 field_password: Kennwort
278 278 field_new_password: Neues Kennwort
279 279 field_password_confirmation: Bestätigung
280 280 field_version: Version
281 281 field_type: Typ
282 282 field_host: Host
283 283 field_port: Port
284 284 field_account: Konto
285 285 field_base_dn: Base DN
286 286 field_attr_login: Mitgliedsname-Attribut
287 287 field_attr_firstname: Vorname-Attribut
288 288 field_attr_lastname: Name-Attribut
289 289 field_attr_mail: E-Mail-Attribut
290 290 field_onthefly: On-the-fly-Benutzererstellung
291 291 field_start_date: Beginn
292 292 field_done_ratio: "% erledigt"
293 293 field_auth_source: Authentifizierungs-Modus
294 294 field_hide_mail: E-Mail-Adresse nicht anzeigen
295 295 field_comments: Kommentar
296 296 field_url: URL
297 297 field_start_page: Hauptseite
298 298 field_subproject: Unterprojekt von
299 299 field_hours: Stunden
300 300 field_activity: Aktivität
301 301 field_spent_on: Datum
302 302 field_identifier: Kennung
303 303 field_is_filter: Als Filter benutzen
304 304 field_issue_to: Zugehöriges Ticket
305 305 field_delay: Pufferzeit
306 306 field_assignable: Tickets können dieser Rolle zugewiesen werden
307 307 field_redirect_existing_links: Existierende Links umleiten
308 308 field_estimated_hours: Geschätzter Aufwand
309 309 field_column_names: Spalten
310 310 field_time_entries: Logzeit
311 311 field_time_zone: Zeitzone
312 312 field_searchable: Durchsuchbar
313 313 field_default_value: Standardwert
314 314 field_comments_sorting: Kommentare anzeigen
315 315 field_parent_title: Übergeordnete Seite
316 316 field_editable: Bearbeitbar
317 317 field_watcher: Beobachter
318 318 field_identity_url: OpenID-URL
319 319 field_content: Inhalt
320 320 field_group_by: Gruppiere Ergebnisse nach
321 321 field_sharing: Gemeinsame Verwendung
322 322 field_parent_issue: Übergeordnete Aufgabe
323 323
324 324 setting_app_title: Applikations-Titel
325 325 setting_app_subtitle: Applikations-Untertitel
326 326 setting_welcome_text: Willkommenstext
327 327 setting_default_language: Default-Sprache
328 328 setting_login_required: Authentifizierung erforderlich
329 329 setting_self_registration: Anmeldung ermöglicht
330 330 setting_attachment_max_size: Max. Dateigröße
331 331 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
332 332 setting_mail_from: E-Mail-Absender
333 333 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
334 334 setting_plain_text_mail: Nur reinen Text (kein HTML) senden
335 335 setting_host_name: Hostname
336 336 setting_text_formatting: Textformatierung
337 337 setting_wiki_compression: Wiki-Historie komprimieren
338 338 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
339 339 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
340 340 setting_autofetch_changesets: Changesets automatisch abrufen
341 341 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
342 342 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
343 343 setting_commit_fix_keywords: Schlüsselwörter (Status)
344 344 setting_autologin: Automatische Anmeldung
345 345 setting_date_format: Datumsformat
346 346 setting_time_format: Zeitformat
347 347 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
348 348 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
349 349 setting_emails_footer: E-Mail-Fußzeile
350 350 setting_protocol: Protokoll
351 351 setting_per_page_options: Objekte pro Seite
352 352 setting_user_format: Benutzer-Anzeigeformat
353 353 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
354 354 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
355 355 setting_enabled_scm: Aktivierte Versionskontrollsysteme
356 356 setting_mail_handler_body_delimiters: "Schneide E-Mails nach einer dieser Zeilen ab"
357 357 setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren
358 358 setting_mail_handler_api_key: API-Schlüssel
359 359 setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren
360 360 setting_gravatar_enabled: Gravatar-Benutzerbilder benutzen
361 361 setting_gravatar_default: Standard-Gravatar-Bild
362 362 setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen
363 363 setting_file_max_size_displayed: Maximale Größe inline angezeigter Textdateien
364 364 setting_repository_log_display_limit: Maximale Anzahl anzuzeigender Revisionen in der Historie einer Datei
365 365 setting_openid: Erlaube OpenID-Anmeldung und -Registrierung
366 366 setting_password_min_length: Mindestlänge des Kennworts
367 367 setting_new_project_user_role_id: Rolle, die einem Nicht-Administrator zugeordnet wird, der ein Projekt erstellt
368 368 setting_default_projects_modules: Standardmäßig aktivierte Module für neue Projekte
369 369 setting_issue_done_ratio: Berechne den Ticket-Fortschritt mittels
370 370 setting_issue_done_ratio_issue_field: Ticket-Feld %-erledigt
371 371 setting_issue_done_ratio_issue_status: Ticket-Status
372 372 setting_start_of_week: Wochenanfang
373 373 setting_rest_api_enabled: REST-Schnittstelle aktivieren
374 374 setting_cache_formatted_text: Formatierten Text im Cache speichern
375 375
376 376 permission_add_project: Projekt erstellen
377 377 permission_add_subprojects: Unterprojekte erstellen
378 378 permission_edit_project: Projekt bearbeiten
379 379 permission_select_project_modules: Projektmodule auswählen
380 380 permission_manage_members: Mitglieder verwalten
381 381 permission_manage_project_activities: Aktivitäten (Zeiterfassung) verwalten
382 382 permission_manage_versions: Versionen verwalten
383 383 permission_manage_categories: Ticket-Kategorien verwalten
384 384 permission_view_issues: Tickets anzeigen
385 385 permission_add_issues: Tickets hinzufügen
386 386 permission_edit_issues: Tickets bearbeiten
387 387 permission_manage_issue_relations: Ticket-Beziehungen verwalten
388 388 permission_add_issue_notes: Kommentare hinzufügen
389 389 permission_edit_issue_notes: Kommentare bearbeiten
390 390 permission_edit_own_issue_notes: Eigene Kommentare bearbeiten
391 391 permission_move_issues: Tickets verschieben
392 392 permission_delete_issues: Tickets löschen
393 393 permission_manage_public_queries: Öffentliche Filter verwalten
394 394 permission_save_queries: Filter speichern
395 395 permission_view_gantt: Gantt-Diagramm ansehen
396 396 permission_view_calendar: Kalender ansehen
397 397 permission_view_issue_watchers: Liste der Beobachter ansehen
398 398 permission_add_issue_watchers: Beobachter hinzufügen
399 399 permission_delete_issue_watchers: Beobachter löschen
400 400 permission_log_time: Aufwände buchen
401 401 permission_view_time_entries: Gebuchte Aufwände ansehen
402 402 permission_edit_time_entries: Gebuchte Aufwände bearbeiten
403 403 permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten
404 404 permission_manage_news: News verwalten
405 405 permission_comment_news: News kommentieren
406 406 permission_manage_documents: Dokumente verwalten
407 407 permission_view_documents: Dokumente ansehen
408 408 permission_manage_files: Dateien verwalten
409 409 permission_view_files: Dateien ansehen
410 410 permission_manage_wiki: Wiki verwalten
411 411 permission_rename_wiki_pages: Wiki-Seiten umbenennen
412 412 permission_delete_wiki_pages: Wiki-Seiten löschen
413 413 permission_view_wiki_pages: Wiki ansehen
414 414 permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen
415 415 permission_edit_wiki_pages: Wiki-Seiten bearbeiten
416 416 permission_delete_wiki_pages_attachments: Anhänge löschen
417 417 permission_protect_wiki_pages: Wiki-Seiten schützen
418 418 permission_manage_repository: Projektarchiv verwalten
419 419 permission_browse_repository: Projektarchiv ansehen
420 420 permission_view_changesets: Changesets ansehen
421 421 permission_commit_access: Commit-Zugriff (über WebDAV)
422 422 permission_manage_boards: Foren verwalten
423 423 permission_view_messages: Forenbeiträge ansehen
424 424 permission_add_messages: Forenbeiträge hinzufügen
425 425 permission_edit_messages: Forenbeiträge bearbeiten
426 426 permission_edit_own_messages: Eigene Forenbeiträge bearbeiten
427 427 permission_delete_messages: Forenbeiträge löschen
428 428 permission_delete_own_messages: Eigene Forenbeiträge löschen
429 429 permission_export_wiki_pages: Wiki-Seiten exportieren
430 430 permission_manage_subtasks: Unteraufgaben verwalten
431 431
432 432 project_module_issue_tracking: Ticket-Verfolgung
433 433 project_module_time_tracking: Zeiterfassung
434 434 project_module_news: News
435 435 project_module_documents: Dokumente
436 436 project_module_files: Dateien
437 437 project_module_wiki: Wiki
438 438 project_module_repository: Projektarchiv
439 439 project_module_boards: Foren
440 440 project_module_calendar: Kalender
441 441 project_module_gantt: Gantt
442 442
443 443 label_user: Benutzer
444 444 label_user_plural: Benutzer
445 445 label_user_new: Neuer Benutzer
446 446 label_user_anonymous: Anonym
447 447 label_project: Projekt
448 448 label_project_new: Neues Projekt
449 449 label_project_plural: Projekte
450 450 label_x_projects:
451 451 zero: keine Projekte
452 452 one: 1 Projekt
453 453 other: "%{count} Projekte"
454 454 label_project_all: Alle Projekte
455 455 label_project_latest: Neueste Projekte
456 456 label_issue: Ticket
457 457 label_issue_new: Neues Ticket
458 458 label_issue_plural: Tickets
459 459 label_issue_view_all: Alle Tickets anzeigen
460 460 label_issues_by: "Tickets von %{value}"
461 461 label_issue_added: Ticket hinzugefügt
462 462 label_issue_updated: Ticket aktualisiert
463 463 label_document: Dokument
464 464 label_document_new: Neues Dokument
465 465 label_document_plural: Dokumente
466 466 label_document_added: Dokument hinzugefügt
467 467 label_role: Rolle
468 468 label_role_plural: Rollen
469 469 label_role_new: Neue Rolle
470 470 label_role_and_permissions: Rollen und Rechte
471 471 label_member: Mitglied
472 472 label_member_new: Neues Mitglied
473 473 label_member_plural: Mitglieder
474 474 label_tracker: Tracker
475 475 label_tracker_plural: Tracker
476 476 label_tracker_new: Neuer Tracker
477 477 label_workflow: Workflow
478 478 label_issue_status: Ticket-Status
479 479 label_issue_status_plural: Ticket-Status
480 480 label_issue_status_new: Neuer Status
481 481 label_issue_category: Ticket-Kategorie
482 482 label_issue_category_plural: Ticket-Kategorien
483 483 label_issue_category_new: Neue Kategorie
484 484 label_custom_field: Benutzerdefiniertes Feld
485 485 label_custom_field_plural: Benutzerdefinierte Felder
486 486 label_custom_field_new: Neues Feld
487 487 label_enumerations: Aufzählungen
488 488 label_enumeration_new: Neuer Wert
489 489 label_information: Information
490 490 label_information_plural: Informationen
491 491 label_please_login: Anmelden
492 492 label_register: Registrieren
493 493 label_login_with_open_id_option: oder mit OpenID anmelden
494 494 label_password_lost: Kennwort vergessen
495 495 label_home: Hauptseite
496 496 label_my_page: Meine Seite
497 497 label_my_account: Mein Konto
498 498 label_my_projects: Meine Projekte
499 499 label_my_page_block: Bereich "Meine Seite"
500 500 label_administration: Administration
501 501 label_login: Anmelden
502 502 label_logout: Abmelden
503 503 label_help: Hilfe
504 504 label_reported_issues: Gemeldete Tickets
505 505 label_assigned_to_me_issues: Mir zugewiesen
506 506 label_last_login: Letzte Anmeldung
507 507 label_registered_on: Angemeldet am
508 508 label_activity: Aktivität
509 509 label_overall_activity: Aktivitäten aller Projekte anzeigen
510 510 label_user_activity: "Aktivität von %{value}"
511 511 label_new: Neu
512 512 label_logged_as: Angemeldet als
513 513 label_environment: Umgebung
514 514 label_authentication: Authentifizierung
515 515 label_auth_source: Authentifizierungs-Modus
516 516 label_auth_source_new: Neuer Authentifizierungs-Modus
517 517 label_auth_source_plural: Authentifizierungs-Arten
518 518 label_subproject_plural: Unterprojekte
519 519 label_subproject_new: Neues Unterprojekt
520 520 label_and_its_subprojects: "%{value} und dessen Unterprojekte"
521 521 label_min_max_length: Länge (Min. - Max.)
522 522 label_list: Liste
523 523 label_date: Datum
524 524 label_integer: Zahl
525 525 label_float: Fließkommazahl
526 526 label_boolean: Boolean
527 527 label_string: Text
528 528 label_text: Langer Text
529 529 label_attribute: Attribut
530 530 label_attribute_plural: Attribute
531 531 label_download: "%{count} Download"
532 532 label_download_plural: "%{count} Downloads"
533 533 label_no_data: Nichts anzuzeigen
534 534 label_change_status: Statuswechsel
535 535 label_history: Historie
536 536 label_attachment: Datei
537 537 label_attachment_new: Neue Datei
538 538 label_attachment_delete: Anhang löschen
539 539 label_attachment_plural: Dateien
540 540 label_file_added: Datei hinzugefügt
541 541 label_report: Bericht
542 542 label_report_plural: Berichte
543 543 label_news: News
544 544 label_news_new: News hinzufügen
545 545 label_news_plural: News
546 546 label_news_latest: Letzte News
547 547 label_news_view_all: Alle News anzeigen
548 548 label_news_added: News hinzugefügt
549 549 label_settings: Konfiguration
550 550 label_overview: Übersicht
551 551 label_version: Version
552 552 label_version_new: Neue Version
553 553 label_version_plural: Versionen
554 554 label_close_versions: Vollständige Versionen schließen
555 555 label_confirmation: Bestätigung
556 556 label_export_to: "Auch abrufbar als:"
557 557 label_read: Lesen...
558 558 label_public_projects: Öffentliche Projekte
559 559 label_open_issues: offen
560 560 label_open_issues_plural: offen
561 561 label_closed_issues: geschlossen
562 562 label_closed_issues_plural: geschlossen
563 563 label_x_open_issues_abbr_on_total:
564 564 zero: 0 offen / %{total}
565 565 one: 1 offen / %{total}
566 566 other: "%{count} offen / %{total}"
567 567 label_x_open_issues_abbr:
568 568 zero: 0 offen
569 569 one: 1 offen
570 570 other: "%{count} offen"
571 571 label_x_closed_issues_abbr:
572 572 zero: 0 geschlossen
573 573 one: 1 geschlossen
574 574 other: "%{count} geschlossen"
575 575 label_total: Gesamtzahl
576 576 label_permissions: Berechtigungen
577 577 label_current_status: Gegenwärtiger Status
578 578 label_new_statuses_allowed: Neue Berechtigungen
579 579 label_all: alle
580 580 label_none: kein
581 581 label_nobody: Niemand
582 582 label_next: Weiter
583 583 label_previous: Zurück
584 584 label_used_by: Benutzt von
585 585 label_details: Details
586 586 label_add_note: Kommentar hinzufügen
587 587 label_per_page: Pro Seite
588 588 label_calendar: Kalender
589 589 label_months_from: Monate ab
590 590 label_gantt: Gantt-Diagramm
591 591 label_internal: Intern
592 592 label_last_changes: "%{count} letzte Änderungen"
593 593 label_change_view_all: Alle Änderungen anzeigen
594 594 label_personalize_page: Diese Seite anpassen
595 595 label_comment: Kommentar
596 596 label_comment_plural: Kommentare
597 597 label_x_comments:
598 598 zero: keine Kommentare
599 599 one: 1 Kommentar
600 600 other: "%{count} Kommentare"
601 601 label_comment_add: Kommentar hinzufügen
602 602 label_comment_added: Kommentar hinzugefügt
603 603 label_comment_delete: Kommentar löschen
604 604 label_query: Benutzerdefinierte Abfrage
605 605 label_query_plural: Benutzerdefinierte Berichte
606 606 label_query_new: Neuer Bericht
607 607 label_filter_add: Filter hinzufügen
608 608 label_filter_plural: Filter
609 609 label_equals: ist
610 610 label_not_equals: ist nicht
611 611 label_in_less_than: in weniger als
612 612 label_in_more_than: in mehr als
613 613 label_greater_or_equal: ">="
614 614 label_less_or_equal: "<="
615 615 label_in: an
616 616 label_today: heute
617 617 label_all_time: gesamter Zeitraum
618 618 label_yesterday: gestern
619 619 label_this_week: aktuelle Woche
620 620 label_last_week: vorige Woche
621 621 label_last_n_days: "die letzten %{count} Tage"
622 622 label_this_month: aktueller Monat
623 623 label_last_month: voriger Monat
624 624 label_this_year: aktuelles Jahr
625 625 label_date_range: Zeitraum
626 626 label_less_than_ago: vor weniger als
627 627 label_more_than_ago: vor mehr als
628 628 label_ago: vor
629 629 label_contains: enthält
630 630 label_not_contains: enthält nicht
631 631 label_day_plural: Tage
632 632 label_repository: Projektarchiv
633 633 label_repository_plural: Projektarchive
634 634 label_browse: Codebrowser
635 635 label_modification: "%{count} Änderung"
636 636 label_modification_plural: "%{count} Änderungen"
637 637 label_branch: Zweig
638 638 label_tag: Markierung
639 639 label_revision: Revision
640 640 label_revision_plural: Revisionen
641 641 label_revision_id: Revision %{value}
642 642 label_associated_revisions: Zugehörige Revisionen
643 643 label_added: hinzugefügt
644 644 label_modified: geändert
645 645 label_copied: kopiert
646 646 label_renamed: umbenannt
647 647 label_deleted: gelöscht
648 648 label_latest_revision: Aktuellste Revision
649 649 label_latest_revision_plural: Aktuellste Revisionen
650 650 label_view_revisions: Revisionen anzeigen
651 651 label_view_all_revisions: Alle Revisionen anzeigen
652 652 label_max_size: Maximale Größe
653 653 label_sort_highest: An den Anfang
654 654 label_sort_higher: Eins höher
655 655 label_sort_lower: Eins tiefer
656 656 label_sort_lowest: Ans Ende
657 657 label_roadmap: Roadmap
658 658 label_roadmap_due_in: "Fällig in %{value}"
659 659 label_roadmap_overdue: "%{value} verspätet"
660 660 label_roadmap_no_issues: Keine Tickets für diese Version
661 661 label_search: Suche
662 662 label_result_plural: Resultate
663 663 label_all_words: Alle Wörter
664 664 label_wiki: Wiki
665 665 label_wiki_edit: Wiki-Bearbeitung
666 666 label_wiki_edit_plural: Wiki-Bearbeitungen
667 667 label_wiki_page: Wiki-Seite
668 668 label_wiki_page_plural: Wiki-Seiten
669 669 label_index_by_title: Seiten nach Titel sortiert
670 670 label_index_by_date: Seiten nach Datum sortiert
671 671 label_current_version: Gegenwärtige Version
672 672 label_preview: Vorschau
673 673 label_feed_plural: Feeds
674 674 label_changes_details: Details aller Änderungen
675 675 label_issue_tracking: Tickets
676 676 label_spent_time: Aufgewendete Zeit
677 677 label_overall_spent_time: Aufgewendete Zeit aller Projekte anzeigen
678 678 label_f_hour: "%{value} Stunde"
679 679 label_f_hour_plural: "%{value} Stunden"
680 680 label_time_tracking: Zeiterfassung
681 681 label_change_plural: Änderungen
682 682 label_statistics: Statistiken
683 683 label_commits_per_month: Übertragungen pro Monat
684 684 label_commits_per_author: Übertragungen pro Autor
685 685 label_view_diff: Unterschiede anzeigen
686 686 label_diff_inline: einspaltig
687 687 label_diff_side_by_side: nebeneinander
688 688 label_options: Optionen
689 689 label_copy_workflow_from: Workflow kopieren von
690 690 label_permissions_report: Berechtigungsübersicht
691 691 label_watched_issues: Beobachtete Tickets
692 692 label_related_issues: Zugehörige Tickets
693 693 label_applied_status: Zugewiesener Status
694 694 label_loading: Lade...
695 695 label_relation_new: Neue Beziehung
696 696 label_relation_delete: Beziehung löschen
697 697 label_relates_to: Beziehung mit
698 698 label_duplicates: Duplikat von
699 699 label_duplicated_by: Dupliziert durch
700 700 label_blocks: Blockiert
701 701 label_blocked_by: Blockiert durch
702 702 label_precedes: Vorgänger von
703 703 label_follows: folgt
704 704 label_end_to_start: Ende - Anfang
705 705 label_end_to_end: Ende - Ende
706 706 label_start_to_start: Anfang - Anfang
707 707 label_start_to_end: Anfang - Ende
708 708 label_stay_logged_in: Angemeldet bleiben
709 709 label_disabled: gesperrt
710 710 label_show_completed_versions: Abgeschlossene Versionen anzeigen
711 711 label_me: ich
712 712 label_board: Forum
713 713 label_board_new: Neues Forum
714 714 label_board_plural: Foren
715 715 label_board_locked: Gesperrt
716 716 label_board_sticky: Wichtig (immer oben)
717 717 label_topic_plural: Themen
718 718 label_message_plural: Forenbeiträge
719 719 label_message_last: Letzter Forenbeitrag
720 720 label_message_new: Neues Thema
721 721 label_message_posted: Forenbeitrag hinzugefügt
722 722 label_reply_plural: Antworten
723 723 label_send_information: Sende Kontoinformationen an Benutzer
724 724 label_year: Jahr
725 725 label_month: Monat
726 726 label_week: Woche
727 727 label_date_from: Von
728 728 label_date_to: Bis
729 729 label_language_based: Sprachabhängig
730 730 label_sort_by: "Sortiert nach %{value}"
731 731 label_send_test_email: Test-E-Mail senden
732 732 label_feeds_access_key: RSS-Zugriffsschlüssel
733 733 label_missing_feeds_access_key: Der RSS-Zugriffsschlüssel fehlt.
734 734 label_feeds_access_key_created_on: "Atom-Zugriffsschlüssel vor %{value} erstellt"
735 735 label_module_plural: Module
736 736 label_added_time_by: "Von %{author} vor %{age} hinzugefügt"
737 737 label_updated_time_by: "Von %{author} vor %{age} aktualisiert"
738 738 label_updated_time: "Vor %{value} aktualisiert"
739 739 label_jump_to_a_project: Zu einem Projekt springen...
740 740 label_file_plural: Dateien
741 741 label_changeset_plural: Changesets
742 742 label_default_columns: Standard-Spalten
743 743 label_no_change_option: (Keine Änderung)
744 744 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
745 745 label_theme: Stil
746 746 label_default: Standard
747 747 label_search_titles_only: Nur Titel durchsuchen
748 748 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
749 749 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
750 750 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
751 751 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
752 752 label_registration_manual_activation: Manuelle Kontoaktivierung
753 753 label_registration_automatic_activation: Automatische Kontoaktivierung
754 754 label_display_per_page: "Pro Seite: %{value}"
755 755 label_age: Geändert vor
756 756 label_change_properties: Eigenschaften ändern
757 757 label_general: Allgemein
758 758 label_more: Mehr
759 759 label_scm: Versionskontrollsystem
760 760 label_plugins: Plugins
761 761 label_ldap_authentication: LDAP-Authentifizierung
762 762 label_downloads_abbr: D/L
763 763 label_optional_description: Beschreibung (optional)
764 764 label_add_another_file: Eine weitere Datei hinzufügen
765 765 label_preferences: Präferenzen
766 766 label_chronological_order: in zeitlicher Reihenfolge
767 767 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
768 768 label_planning: Terminplanung
769 769 label_incoming_emails: Eingehende E-Mails
770 770 label_generate_key: Generieren
771 771 label_issue_watchers: Beobachter
772 772 label_example: Beispiel
773 773 label_display: Anzeige
774 774 label_sort: Sortierung
775 775 label_ascending: Aufsteigend
776 776 label_descending: Absteigend
777 777 label_date_from_to: von %{start} bis %{end}
778 778 label_wiki_content_added: Die Wiki-Seite wurde erfolgreich hinzugefügt.
779 779 label_wiki_content_updated: Die Wiki-Seite wurde erfolgreich aktualisiert.
780 780 label_group: Gruppe
781 781 label_group_plural: Gruppen
782 782 label_group_new: Neue Gruppe
783 783 label_time_entry_plural: Benötigte Zeit
784 784 label_version_sharing_none: Nicht gemeinsam verwenden
785 785 label_version_sharing_descendants: Mit Unterprojekten
786 786 label_version_sharing_hierarchy: Mit Projekthierarchie
787 787 label_version_sharing_tree: Mit Projektbaum
788 788 label_version_sharing_system: Mit allen Projekten
789 789 label_update_issue_done_ratios: Ticket-Fortschritt aktualisieren
790 790 label_copy_source: Quelle
791 791 label_copy_target: Ziel
792 792 label_copy_same_as_target: So wie das Ziel
793 793 label_display_used_statuses_only: Zeige nur Status an, die von diesem Tracker verwendet werden
794 794 label_api_access_key: API-Zugriffsschlüssel
795 795 label_missing_api_access_key: Der API-Zugriffsschlüssel fehlt.
796 796 label_api_access_key_created_on: Der API-Zugriffsschlüssel wurde vor %{value} erstellt
797 797 label_profile: Profil
798 798 label_subtask_plural: Unteraufgaben
799 799 label_project_copy_notifications: Sende Mailbenachrichtigungen beim Kopieren des Projekts.
800 800 label_principal_search: "Nach Benutzer oder Gruppe suchen:"
801 801 label_user_search: "Nach Benutzer suchen:"
802 802
803 803 button_login: Anmelden
804 804 button_submit: OK
805 805 button_save: Speichern
806 806 button_check_all: Alles auswählen
807 807 button_uncheck_all: Alles abwählen
808 808 button_delete: Löschen
809 809 button_create: Anlegen
810 810 button_create_and_continue: Anlegen und weiter
811 811 button_test: Testen
812 812 button_edit: Bearbeiten
813 813 button_edit_associated_wikipage: "Zugehörige Wikiseite bearbeiten: %{page_title}"
814 814 button_add: Hinzufügen
815 815 button_change: Wechseln
816 816 button_apply: Anwenden
817 817 button_clear: Zurücksetzen
818 818 button_lock: Sperren
819 819 button_unlock: Entsperren
820 820 button_download: Download
821 821 button_list: Liste
822 822 button_view: Anzeigen
823 823 button_move: Verschieben
824 824 button_move_and_follow: Verschieben und Ticket anzeigen
825 825 button_back: Zurück
826 826 button_cancel: Abbrechen
827 827 button_activate: Aktivieren
828 828 button_sort: Sortieren
829 829 button_log_time: Aufwand buchen
830 830 button_rollback: Auf diese Version zurücksetzen
831 831 button_watch: Beobachten
832 832 button_unwatch: Nicht beobachten
833 833 button_reply: Antworten
834 834 button_archive: Archivieren
835 835 button_unarchive: Entarchivieren
836 836 button_reset: Zurücksetzen
837 837 button_rename: Umbenennen
838 838 button_change_password: Kennwort ändern
839 839 button_copy: Kopieren
840 840 button_copy_and_follow: Kopieren und Ticket anzeigen
841 841 button_annotate: Annotieren
842 842 button_update: Bearbeiten
843 843 button_configure: Konfigurieren
844 844 button_quote: Zitieren
845 845 button_duplicate: Duplizieren
846 846 button_show: Anzeigen
847 847
848 848 status_active: aktiv
849 849 status_registered: angemeldet
850 850 status_locked: gesperrt
851 851
852 852 version_status_open: offen
853 853 version_status_locked: gesperrt
854 854 version_status_closed: abgeschlossen
855 855
856 856 field_active: Aktiv
857 857
858 858 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll.
859 859 text_regexp_info: z. B. ^[A-Z0-9]+$
860 860 text_min_max_length_info: 0 heißt keine Beschränkung
861 861 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
862 862 text_subprojects_destroy_warning: "Dessen Unterprojekte (%{value}) werden ebenfalls gelöscht."
863 863 text_workflow_edit: Workflow zum Bearbeiten auswählen
864 864 text_are_you_sure: Sind Sie sicher?
865 865 text_are_you_sure_with_children: "Lösche Aufgabe und alle Unteraufgaben?"
866 866 text_journal_changed: "%{label} wurde von %{old} zu %{new} geändert"
867 867 text_journal_set_to: "%{label} wurde auf %{value} gesetzt"
868 868 text_journal_deleted: "%{label} %{old} wurde gelöscht"
869 869 text_journal_added: "%{label} %{value} wurde hinzugefügt"
870 870 text_tip_issue_begin_day: Aufgabe, die an diesem Tag beginnt
871 871 text_tip_issue_end_day: Aufgabe, die an diesem Tag endet
872 872 text_tip_issue_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
873 873 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern, Binde- und Unterstriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
874 874 text_caracters_maximum: "Max. %{count} Zeichen."
875 875 text_caracters_minimum: "Muss mindestens %{count} Zeichen lang sein."
876 876 text_length_between: "Länge zwischen %{min} und %{max} Zeichen."
877 877 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
878 878 text_unallowed_characters: Nicht erlaubte Zeichen
879 879 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
880 880 text_line_separated: Mehrere Werte sind erlaubt (eine Zeile pro Wert).
881 881 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
882 882 text_issue_added: "Ticket %{id} wurde erstellt von %{author}."
883 883 text_issue_updated: "Ticket %{id} wurde aktualisiert von %{author}."
884 884 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
885 885 text_issue_category_destroy_question: "Einige Tickets (%{count}) sind dieser Kategorie zugeodnet. Was möchten Sie tun?"
886 886 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
887 887 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
888 888 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)."
889 889 text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie sie abändern."
890 890 text_load_default_configuration: Standard-Konfiguration laden
891 891 text_status_changed_by_changeset: "Status geändert durch Changeset %{value}."
892 892 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
893 893 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
894 894 text_default_administrator_account_changed: Administrator-Kennwort geändert
895 895 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
896 896 text_plugin_assets_writable: Verzeichnis für Plugin-Assets beschreibbar
897 897 text_rmagick_available: RMagick verfügbar (optional)
898 898 text_destroy_time_entries_question: Es wurden bereits %{hours} Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
899 899 text_destroy_time_entries: Gebuchte Aufwände löschen
900 900 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
901 901 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
902 902 text_user_wrote: "%{value} schrieb:"
903 903 text_enumeration_destroy_question: "%{count} Objekt(e) sind diesem Wert zugeordnet."
904 904 text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:'
905 905 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."
906 906 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."
907 907 text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.'
908 908 text_custom_field_possible_values_info: 'Eine Zeile pro Wert'
909 909 text_wiki_page_destroy_question: "Diese Seite hat %{descendants} Unterseite(n). Was möchten Sie tun?"
910 910 text_wiki_page_nullify_children: Verschiebe die Unterseiten auf die oberste Ebene
911 911 text_wiki_page_destroy_children: Lösche alle Unterseiten
912 912 text_wiki_page_reassign_children: Ordne die Unterseiten dieser Seite zu
913 913 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?"
914 914 text_zoom_in: Zoom in
915 915 text_zoom_out: Zoom out
916 916
917 917 default_role_manager: Manager
918 918 default_role_developer: Entwickler
919 919 default_role_reporter: Reporter
920 920 default_tracker_bug: Fehler
921 921 default_tracker_feature: Feature
922 922 default_tracker_support: Unterstützung
923 923 default_issue_status_new: Neu
924 924 default_issue_status_in_progress: In Bearbeitung
925 925 default_issue_status_resolved: Gelöst
926 926 default_issue_status_feedback: Feedback
927 927 default_issue_status_closed: Erledigt
928 928 default_issue_status_rejected: Abgewiesen
929 929 default_doc_category_user: Benutzerdokumentation
930 930 default_doc_category_tech: Technische Dokumentation
931 931 default_priority_low: Niedrig
932 932 default_priority_normal: Normal
933 933 default_priority_high: Hoch
934 934 default_priority_urgent: Dringend
935 935 default_priority_immediate: Sofort
936 936 default_activity_design: Design
937 937 default_activity_development: Entwicklung
938 938
939 939 enumeration_issue_priorities: Ticket-Prioritäten
940 940 enumeration_doc_categories: Dokumentenkategorien
941 941 enumeration_activities: Aktivitäten (Zeiterfassung)
942 942 enumeration_system_activity: System-Aktivität
943 943
944 944 field_text: Textfeld
945 945 label_user_mail_option_only_owner: Nur für Aufgaben die ich angelegt habe
946 946 setting_default_notification_option: Standard Benachrichtigungsoptionen
947 947 label_user_mail_option_only_my_events: Nur für Aufgaben die ich beobachte oder an welchen ich mitarbeite
948 948 label_user_mail_option_only_assigned: Nur für Aufgaben für die ich zuständig bin.
949 949 notice_not_authorized_archived_project: Das Projekt wurde archiviert und ist daher nicht nicht verfügbar.
950 950 label_user_mail_option_none: keine Ereignisse
951 951 field_member_of_group: Zuständigkeitsgruppe
952 952 field_assigned_to_role: Zuständigkeitsrolle
953 953 field_visible: Sichtbar
954 954 setting_emails_header: E-Mail Betreffzeile
955 955 setting_commit_logtime_activity_id: Aktivität für die Zeiterfassung
956 956 text_time_logged_by_changeset: Angewendet in Changeset %{value}.
957 957 setting_commit_logtime_enabled: Aktiviere Zeitlogging
958 958 notice_gantt_chart_truncated: Die Grafik ist unvollständig, da das Maximum der anzeigbaren Aufgaben überschritten wurde (%{max})
959 959 setting_gantt_items_limit: Maximale Anzahl von Aufgaben die im Gantt-Chart angezeigt werden.
960 960 field_warn_on_leaving_unsaved: vor dem Verlassen einer Seite mit ungesichertem Text im Editor warnen
961 961 text_warn_on_leaving_unsaved: Die aktuellen Änderungen gehen verloren, wenn Sie diese Seite verlassen.
962 962 label_my_queries: Meine eigenen Abfragen
963 963 text_journal_changed_no_detail: "%{label} aktualisiert"
964 964 label_news_comment_added: Kommentar zu einer News hinzugefügt
965 965 button_expand_all: Alle ausklappen
966 966 button_collapse_all: Alle einklappen
967 967 label_additional_workflow_transitions_for_assignee: Zusätzliche Berechtigungen wenn der Benutzer der Zugewiesene ist
968 968 label_additional_workflow_transitions_for_author: Zusätzliche Berechtigungen wenn der Benutzer der Autor ist
969 969 label_bulk_edit_selected_time_entries: Ausgewählte Zeitaufwände bearbeiten
970 970 text_time_entries_destroy_confirmation: Sind Sie sicher, dass Sie die ausgewählten Zeitaufwände löschen möchten?
971 971 label_role_anonymous: Anonymous
972 972 label_role_non_member: Nichtmitglied
973 973 label_issue_note_added: Notiz hinzugefügt
974 974 label_issue_status_updated: Status aktualisiert
975 975 label_issue_priority_updated: Priorität aktualisiert
976 976 label_issues_visibility_own: Tickets die folgender User erstellt hat oder die ihm zugewiesen sind
977 977 field_issues_visibility: Ticket Sichtbarkeit
978 978 label_issues_visibility_all: Alle Tickets
979 979 permission_set_own_issues_private: Eigene Tickets privat oder öffentlich markieren
980 980 field_is_private: Privat
981 981 permission_set_issues_private: Tickets privat oder öffentlich markieren
982 982 label_issues_visibility_public: Alle öffentlichen Tickets
983 983 text_issues_destroy_descendants_confirmation: Dies wird auch %{count} Unteraufgabe/n löschen.
984 984 field_commit_logs_encoding: Kodierung der Commit-Log-Meldungen
985 985 field_scm_path_encoding: Pfad Kodierung
986 986 text_scm_path_encoding_note: "Standard: UTF-8"
987 987 field_path_to_repository: Pfad zum repository
988 988 field_root_directory: Wurzelverzeichnis
989 989 field_cvs_module: Modul
990 990 field_cvsroot: CVSROOT
991 991 text_mercurial_repository_note: Lokales repository (e.g. /hgrepo, c:\hgrepo)
992 992 text_scm_command: Kommando
993 993 text_scm_command_version: Version
994 994 label_git_report_last_commit: Bericht des letzten Commits für Dateien und Verzeichnisse
995 995 text_scm_config: Die SCM-Kommandos können in der in config/configuration.yml konfiguriert werden. Redmine muss anschließend neu gestartet werden.
996 996 text_scm_command_not_available: Scm Kommando ist nicht verfügbar. Bitte prüfen Sie die Einstellungen im Administrationspanel.
997 997
998 998 notice_issue_successful_create: Ticket %{id} erstellt.
999 999 label_between: zwischen
1000 1000 setting_issue_group_assignment: Erlaubt die Ticket-Zuweisung an Gruppen
1001 1001 label_diff: diff
1002 1002 text_git_repository_note: Repository steht für sich alleine (bare) und liegt lokal (z.B. /gitrepo, c:\gitrepo)
1003 1003
1004 1004 description_filter: Filter
1005 1005 description_search: Suchfeld
1006 1006 description_choose_project: Projekte
1007 1007 description_project_scope: Suchbereich
1008 1008 description_notes: Kommentare
1009 1009 description_message_content: Nachrichteninhalt
1010 1010 description_query_sort_criteria_attribute: Sortierattribut
1011 1011 description_query_sort_criteria_direction: Sortierrichtung
1012 1012 description_user_mail_notification: Mailbenachrichtigungseinstellung
1013 1013 description_available_columns: Verfügbare Spalten
1014 1014 description_selected_columns: Ausgewählte Spalten
1015 1015 description_issue_category_reassign: Neue Kategorie wählen
1016 1016 description_wiki_subpages_reassign: Neue Elternseite wählen
1017 1017 description_date_range_list: Zeitraum aus einer Liste wählen
1018 1018 description_date_range_interval: Zeitraum durch Start- und Enddatum festlegen
1019 1019 description_date_from: Startdatum eintragen
1020 1020 description_date_to: Enddatum eintragen
1021 1021
1022 1022 label_parent_revision: Parent
1023 1023 label_child_revision: Child
1024 1024 error_scm_annotate_big_text_file: Der Eintrag kann nicht umgesetzt werden, da er die maximale Textlänge überschreitet.
1025 1025 setting_default_issue_start_date_to_creation_date: Aktuelles Datum als Beginn für neue Tickets verwenden
1026 1026 button_edit_section: Diesen Bereich bearbeiten
1027 1027 setting_repositories_encodings: Encoding von Anhängen und Repositories
1028 1028 description_all_columns: Alle Spalten
1029 1029 button_export: Exportieren
1030 1030 label_export_options: "%{export_format} Export-Eigenschaften"
1031 1031 error_attachment_too_big: Diese Datei kann nicht hochgeladen werden, da sie die maximale Dateigröße von (%{max_size}) überschreitet.
1032 1032 notice_failed_to_save_time_entries: "Gescheitert %{count} Zeiteinträge für %{total} von ausgewählten: %{ids} zu speichern."
1033 1033 label_x_issues:
1034 1034 zero: 0 Tickets
1035 1035 one: 1 Ticket
1036 1036 other: "%{count} Tickets"
1037 1037 label_repository_new: Neues Repository
1038 1038 field_repository_is_default: Haupt-Repository
1039 1039 label_copy_attachments: Anhänge Kopieren
1040 1040 label_item_position: "%{position}/%{count}"
1041 1041 label_completed_versions: Abgeschlossene Versionen
1042 1042 field_multiple: Mehrere Werte
1043 1043 setting_commit_cross_project_ref: Erlauben auf Tickets aller anderen Projekte zu referenzieren
1044 1044 text_issue_conflict_resolution_add_notes: Meine Änderungen übernehmen und alle anderen Änderungen verwerfen
1045 1045 text_issue_conflict_resolution_overwrite: Meine Änderungen trotzdem übernehmen (vorherige Notizen bleiben erhalten aber manche können überschrieben werden)
1046 1046 notice_issue_update_conflict: Das Ticket wurde von einem anderen Nutzer überarbeitet während Ihrer Bearbeitung.
1047 1047 text_issue_conflict_resolution_cancel: Meine Änderungen verwerfen und %{link} neu anzeigen
1048 1048 permission_manage_related_issues: Zugehörige Tickets verwalten
1049 1049 field_ldap_filter: LDAP Filter
1050 1050 label_search_for_watchers: Nach hinzufügbaren Beobachtern suchen
1051 1051 notice_account_deleted: Ihr Benutzerkonto wurde unwiderruflich gelöscht.
1052 1052 setting_unsubscribe: Erlaubt Benutzern das eigene Benutzerkonto zu löschen
1053 1053 button_delete_my_account: Mein Benutzerkonto löschen
1054 1054 text_account_destroy_confirmation: Möchten Sie wirklich fortfahren?\nIhr Benutzerkonto wird für immer gelöscht und kann nicht wiederhergestellt werden.
1055 1055 error_session_expired: Your session has expired. Please login again.
1056 1056 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1057 1057 setting_session_lifetime: Session maximum lifetime
1058 1058 setting_session_timeout: Session inactivity timeout
1059 1059 label_session_expiration: Session expiration
1060 1060 permission_close_project: Close / reopen the project
1061 1061 label_show_closed_projects: View closed projects
1062 1062 button_close: Close
1063 1063 button_reopen: Reopen
1064 1064 project_status_active: active
1065 1065 project_status_closed: closed
1066 1066 project_status_archived: archived
1067 1067 text_project_closed: This project is closed and read-only.
1068 1068 notice_user_successful_create: User %{id} created.
1069 1069 field_core_fields: Standard fields
1070 1070 field_timeout: Timeout (in seconds)
1071 1071 setting_thumbnails_enabled: Display attachment thumbnails
1072 1072 setting_thumbnails_size: Thumbnails size (in pixels)
1073 label_status_transitions: Status transitions
1074 label_fields_permissions: Fields permissions
1075 label_readonly: Read-only
1076 label_required: Required
@@ -1,1054 +1,1058
1 1 # Greek translations for Ruby on Rails
2 2 # by Vaggelis Typaldos (vtypal@gmail.com), Spyros Raptis (spirosrap@gmail.com)
3 3
4 4 el:
5 5 direction: ltr
6 6 date:
7 7 formats:
8 8 # Use the strftime parameters for formats.
9 9 # When no format has been given, it uses default.
10 10 # You can provide other formats here if you like!
11 11 default: "%m/%d/%Y"
12 12 short: "%b %d"
13 13 long: "%B %d, %Y"
14 14
15 15 day_names: [Κυριακή, Δευτέρα, Τρίτη, Τετάρτη, Πέμπτη, Παρασκευή, Σάββατο]
16 16 abbr_day_names: [Κυρ, Δευ, Τρι, Τετ, Πεμ, Παρ, Σαβ]
17 17
18 18 # Don't forget the nil at the beginning; there's no such thing as a 0th month
19 19 month_names: [~, Ιανουάριος, Φεβρουάριος, Μάρτιος, Απρίλιος, Μάϊος, Ιούνιος, Ιούλιος, Αύγουστος, Σεπτέμβριος, Οκτώβριος, Νοέμβριος, Δεκέμβριος]
20 20 abbr_month_names: [~, Ιαν, Φεβ, Μαρ, Απρ, Μαϊ, Ιον, Ιολ, Αυγ, Σεπ, Οκτ, Νοε, Δεκ]
21 21 # Used in date_select and datime_select.
22 22 order:
23 23 - :year
24 24 - :month
25 25 - :day
26 26
27 27 time:
28 28 formats:
29 29 default: "%m/%d/%Y %I:%M %p"
30 30 time: "%I:%M %p"
31 31 short: "%d %b %H:%M"
32 32 long: "%B %d, %Y %H:%M"
33 33 am: "πμ"
34 34 pm: "μμ"
35 35
36 36 datetime:
37 37 distance_in_words:
38 38 half_a_minute: "μισό λεπτό"
39 39 less_than_x_seconds:
40 40 one: "λιγότερο από 1 δευτερόλεπτο"
41 41 other: "λιγότερο από %{count} δευτερόλεπτα"
42 42 x_seconds:
43 43 one: "1 δευτερόλεπτο"
44 44 other: "%{count} δευτερόλεπτα"
45 45 less_than_x_minutes:
46 46 one: "λιγότερο από ένα λεπτό"
47 47 other: "λιγότερο από %{count} λεπτά"
48 48 x_minutes:
49 49 one: "1 λεπτό"
50 50 other: "%{count} λεπτά"
51 51 about_x_hours:
52 52 one: "περίπου 1 ώρα"
53 53 other: "περίπου %{count} ώρες"
54 54 x_hours:
55 55 one: "1 hour"
56 56 other: "%{count} hours"
57 57 x_days:
58 58 one: "1 ημέρα"
59 59 other: "%{count} ημέρες"
60 60 about_x_months:
61 61 one: "περίπου 1 μήνα"
62 62 other: "περίπου %{count} μήνες"
63 63 x_months:
64 64 one: "1 μήνα"
65 65 other: "%{count} μήνες"
66 66 about_x_years:
67 67 one: "περίπου 1 χρόνο"
68 68 other: "περίπου %{count} χρόνια"
69 69 over_x_years:
70 70 one: "πάνω από 1 χρόνο"
71 71 other: "πάνω από %{count} χρόνια"
72 72 almost_x_years:
73 73 one: "almost 1 year"
74 74 other: "almost %{count} years"
75 75
76 76 number:
77 77 format:
78 78 separator: "."
79 79 delimiter: ""
80 80 precision: 3
81 81 human:
82 82 format:
83 83 precision: 3
84 84 delimiter: ""
85 85 storage_units:
86 86 format: "%n %u"
87 87 units:
88 88 kb: KB
89 89 tb: TB
90 90 gb: GB
91 91 byte:
92 92 one: Byte
93 93 other: Bytes
94 94 mb: MB
95 95
96 96 # Used in array.to_sentence.
97 97 support:
98 98 array:
99 99 sentence_connector: "and"
100 100 skip_last_comma: false
101 101
102 102 activerecord:
103 103 errors:
104 104 template:
105 105 header:
106 106 one: "1 error prohibited this %{model} from being saved"
107 107 other: "%{count} errors prohibited this %{model} from being saved"
108 108 messages:
109 109 inclusion: "δεν περιέχεται στη λίστα"
110 110 exclusion: "έχει κατοχυρωθεί"
111 111 invalid: "είναι άκυρο"
112 112 confirmation: "δεν αντιστοιχεί με την επιβεβαίωση"
113 113 accepted: "πρέπει να γίνει αποδοχή"
114 114 empty: "δε μπορεί να είναι άδειο"
115 115 blank: "δε μπορεί να είναι κενό"
116 116 too_long: "έχει πολλούς (μέγ.επιτρ. %{count} χαρακτήρες)"
117 117 too_short: "έχει λίγους (ελάχ.επιτρ. %{count} χαρακτήρες)"
118 118 wrong_length: "δεν είναι σωστός ο αριθμός χαρακτήρων (πρέπει να έχει %{count} χαρακτήρες)"
119 119 taken: "έχει ήδη κατοχυρωθεί"
120 120 not_a_number: "δεν είναι αριθμός"
121 121 not_a_date: "δεν είναι σωστή ημερομηνία"
122 122 greater_than: "πρέπει να είναι μεγαλύτερο από %{count}"
123 123 greater_than_or_equal_to: "πρέπει να είναι μεγαλύτερο από ή ίσο με %{count}"
124 124 equal_to: "πρέπει να είναι ίσον με %{count}"
125 125 less_than: "πρέπει να είναι μικρότερη από %{count}"
126 126 less_than_or_equal_to: "πρέπει να είναι μικρότερο από ή ίσο με %{count}"
127 127 odd: "πρέπει να είναι μονός"
128 128 even: "πρέπει να είναι ζυγός"
129 129 greater_than_start_date: "πρέπει να είναι αργότερα από την ημερομηνία έναρξης"
130 130 not_same_project: "δεν ανήκει στο ίδιο έργο"
131 131 circular_dependency: "Αυτή η σχέση θα δημιουργήσει κυκλικές εξαρτήσεις"
132 132 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
133 133
134 134 actionview_instancetag_blank_option: Παρακαλώ επιλέξτε
135 135
136 136 general_text_No: 'Όχι'
137 137 general_text_Yes: 'Ναι'
138 138 general_text_no: 'όχι'
139 139 general_text_yes: 'ναι'
140 140 general_lang_name: 'Ελληνικά'
141 141 general_csv_separator: ','
142 142 general_csv_decimal_separator: '.'
143 143 general_csv_encoding: UTF-8
144 144 general_pdf_encoding: UTF-8
145 145 general_first_day_of_week: '7'
146 146
147 147 notice_account_updated: Ο λογαριασμός ενημερώθηκε επιτυχώς.
148 148 notice_account_invalid_creditentials: Άκυρο όνομα χρήστη ή κωδικού πρόσβασης
149 149 notice_account_password_updated: Ο κωδικός πρόσβασης ενημερώθηκε επιτυχώς.
150 150 notice_account_wrong_password: Λάθος κωδικός πρόσβασης
151 151 notice_account_register_done: Ο λογαριασμός δημιουργήθηκε επιτυχώς. Για να ενεργοποιήσετε το λογαριασμό σας, πατήστε το σύνδεσμο που σας έχει αποσταλεί με email.
152 152 notice_account_unknown_email: Άγνωστος χρήστης.
153 153 notice_can_t_change_password: Αυτός ο λογαριασμός χρησιμοποιεί εξωτερική πηγή πιστοποίησης. Δεν είναι δυνατόν να αλλάξετε τον κωδικό πρόσβασης.
154 154 notice_account_lost_email_sent: Σας έχει αποσταλεί email με οδηγίες για την επιλογή νέου κωδικού πρόσβασης.
155 155 notice_account_activated: Ο λογαριασμός σας έχει ενεργοποιηθεί. Τώρα μπορείτε να συνδεθείτε.
156 156 notice_successful_create: Επιτυχής δημιουργία.
157 157 notice_successful_update: Επιτυχής ενημέρωση.
158 158 notice_successful_delete: Επιτυχής διαγραφή.
159 159 notice_successful_connection: Επιτυχής σύνδεση.
160 160 notice_file_not_found: Η σελίδα που ζητήσατε δεν υπάρχει ή έχει αφαιρεθεί.
161 161 notice_locking_conflict: Τα δεδομένα έχουν ενημερωθεί από άλλο χρήστη.
162 162 notice_not_authorized: Δεν έχετε δικαίωμα πρόσβασης σε αυτή τη σελίδα.
163 163 notice_email_sent: "Ένα μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη στο %{value}"
164 164 notice_email_error: "Σφάλμα κατά την αποστολή του μηνύματος στο (%{value})"
165 165 notice_feeds_access_key_reseted: Έγινε επαναφορά στο κλειδί πρόσβασης RSS.
166 166 notice_failed_to_save_issues: "Αποτυχία αποθήκευσης %{count} θεμα(των) από τα %{total} επιλεγμένα: %{ids}."
167 167 notice_no_issue_selected: "Κανένα θέμα δεν είναι επιλεγμένο! Παρακαλούμε, ελέγξτε τα θέματα που θέλετε να επεξεργαστείτε."
168 168 notice_account_pending: λογαριασμός σας έχει δημιουργηθεί και είναι σε στάδιο έγκρισης από τον διαχειριστή."
169 169 notice_default_data_loaded: Οι προεπιλεγμένες ρυθμίσεις φορτώθηκαν επιτυχώς.
170 170 notice_unable_delete_version: Αδύνατον να διαγραφεί η έκδοση.
171 171
172 172 error_can_t_load_default_data: "Οι προεπιλεγμένες ρυθμίσεις δεν μπόρεσαν να φορτωθούν:: %{value}"
173 173 error_scm_not_found: εγγραφή ή η αναθεώρηση δεν βρέθηκε στο αποθετήριο."
174 174 error_scm_command_failed: "Παρουσιάστηκε σφάλμα κατά την προσπάθεια πρόσβασης στο αποθετήριο: %{value}"
175 175 error_scm_annotate: καταχώριση δεν υπάρχει ή δεν μπορεί να σχολιαστεί."
176 176 error_issue_not_found_in_project: 'Το θέμα δεν βρέθηκε ή δεν ανήκει σε αυτό το έργο'
177 177 error_no_tracker_in_project: 'Δεν υπάρχει ανιχνευτής για αυτό το έργο. Παρακαλώ ελέγξτε τις ρυθμίσεις του έργου.'
178 178 error_no_default_issue_status: 'Δεν έχει οριστεί η προεπιλογή κατάστασης θεμάτων. Παρακαλώ ελέγξτε τις ρυθμίσεις σας (Μεταβείτε στην "Διαχείριση -> Κατάσταση θεμάτων").'
179 179
180 180 warning_attachments_not_saved: "%{count} αρχείο(α) δε μπορούν να αποθηκευτούν."
181 181
182 182 mail_subject_lost_password: κωδικός σας %{value}"
183 183 mail_body_lost_password: 'Για να αλλάξετε τον κωδικό πρόσβασης, πατήστε τον ακόλουθο σύνδεσμο:'
184 184 mail_subject_register: "Ενεργοποίηση του λογαριασμού χρήστη %{value} "
185 185 mail_body_register: 'Για να ενεργοποιήσετε το λογαριασμό σας, επιλέξτε τον ακόλουθο σύνδεσμο:'
186 186 mail_body_account_information_external: "Μπορείτε να χρησιμοποιήσετε τον λογαριασμό %{value} για να συνδεθείτε."
187 187 mail_body_account_information: Πληροφορίες του λογαριασμού σας
188 188 mail_subject_account_activation_request: "αίτημα ενεργοποίησης λογαριασμού %{value}"
189 189 mail_body_account_activation_request: "'Ένας νέος χρήστης (%{value}) έχει εγγραφεί. Ο λογαριασμός είναι σε στάδιο αναμονής της έγκρισης σας:"
190 190 mail_subject_reminder: "%{count} θέμα(τα) με προθεσμία στις επόμενες %{days} ημέρες"
191 191 mail_body_reminder: "%{count}θέμα(τα) που έχουν ανατεθεί σε σας, με προθεσμία στις επόμενες %{days} ημέρες:"
192 192 mail_subject_wiki_content_added: "'προστέθηκε η σελίδα wiki %{id}' "
193 193 mail_body_wiki_content_added: σελίδα wiki '%{id}' προστέθηκε από τον %{author}."
194 194 mail_subject_wiki_content_updated: "'ενημερώθηκε η σελίδα wiki %{id}' "
195 195 mail_body_wiki_content_updated: σελίδα wiki '%{id}' ενημερώθηκε από τον %{author}."
196 196
197 197 gui_validation_error: 1 σφάλμα
198 198 gui_validation_error_plural: "%{count} σφάλματα"
199 199
200 200 field_name: Όνομα
201 201 field_description: Περιγραφή
202 202 field_summary: Συνοπτικά
203 203 field_is_required: Απαιτείται
204 204 field_firstname: Όνομα
205 205 field_lastname: Επώνυμο
206 206 field_mail: Email
207 207 field_filename: Αρχείο
208 208 field_filesize: Μέγεθος
209 209 field_downloads: Μεταφορτώσεις
210 210 field_author: Συγγραφέας
211 211 field_created_on: Δημιουργήθηκε
212 212 field_updated_on: Ενημερώθηκε
213 213 field_field_format: Μορφοποίηση
214 214 field_is_for_all: Για όλα τα έργα
215 215 field_possible_values: Πιθανές τιμές
216 216 field_regexp: Κανονική παράσταση
217 217 field_min_length: Ελάχιστο μήκος
218 218 field_max_length: Μέγιστο μήκος
219 219 field_value: Τιμή
220 220 field_category: Κατηγορία
221 221 field_title: Τίτλος
222 222 field_project: Έργο
223 223 field_issue: Θέμα
224 224 field_status: Κατάσταση
225 225 field_notes: Σημειώσεις
226 226 field_is_closed: Κλειστά θέματα
227 227 field_is_default: Προεπιλεγμένη τιμή
228 228 field_tracker: Ανιχνευτής
229 229 field_subject: Θέμα
230 230 field_due_date: Προθεσμία
231 231 field_assigned_to: Ανάθεση σε
232 232 field_priority: Προτεραιότητα
233 233 field_fixed_version: Στόχος έκδοσης
234 234 field_user: Χρήστης
235 235 field_role: Ρόλος
236 236 field_homepage: Αρχική σελίδα
237 237 field_is_public: Δημόσιο
238 238 field_parent: Επιμέρους έργο του
239 239 field_is_in_roadmap: Προβολή θεμάτων στο χάρτη πορείας
240 240 field_login: Όνομα χρήστη
241 241 field_mail_notification: Ειδοποιήσεις email
242 242 field_admin: Διαχειριστής
243 243 field_last_login_on: Τελευταία σύνδεση
244 244 field_language: Γλώσσα
245 245 field_effective_date: Ημερομηνία
246 246 field_password: Κωδικός πρόσβασης
247 247 field_new_password: Νέος κωδικός πρόσβασης
248 248 field_password_confirmation: Επιβεβαίωση
249 249 field_version: Έκδοση
250 250 field_type: Τύπος
251 251 field_host: Κόμβος
252 252 field_port: Θύρα
253 253 field_account: Λογαριασμός
254 254 field_base_dn: Βάση DN
255 255 field_attr_login: Ιδιότητα εισόδου
256 256 field_attr_firstname: Ιδιότητα ονόματος
257 257 field_attr_lastname: Ιδιότητα επωνύμου
258 258 field_attr_mail: Ιδιότητα email
259 259 field_onthefly: Άμεση δημιουργία χρήστη
260 260 field_start_date: Εκκίνηση
261 261 field_done_ratio: "% επιτεύχθη"
262 262 field_auth_source: Τρόπος πιστοποίησης
263 263 field_hide_mail: Απόκρυψη διεύθυνσης email
264 264 field_comments: Σχόλιο
265 265 field_url: URL
266 266 field_start_page: Πρώτη σελίδα
267 267 field_subproject: Επιμέρους έργο
268 268 field_hours: Ώρες
269 269 field_activity: Δραστηριότητα
270 270 field_spent_on: Ημερομηνία
271 271 field_identifier: Στοιχείο αναγνώρισης
272 272 field_is_filter: Χρήση ως φίλτρο
273 273 field_issue_to: Σχετικά θέματα
274 274 field_delay: Καθυστέρηση
275 275 field_assignable: Θέματα που μπορούν να ανατεθούν σε αυτό το ρόλο
276 276 field_redirect_existing_links: Ανακατεύθυνση των τρεχόντων συνδέσμων
277 277 field_estimated_hours: Εκτιμώμενος χρόνος
278 278 field_column_names: Στήλες
279 279 field_time_zone: Ωριαία ζώνη
280 280 field_searchable: Ερευνήσιμο
281 281 field_default_value: Προκαθορισμένη τιμή
282 282 field_comments_sorting: Προβολή σχολίων
283 283 field_parent_title: Γονική σελίδα
284 284 field_editable: Επεξεργάσιμο
285 285 field_watcher: Παρατηρητής
286 286 field_identity_url: OpenID URL
287 287 field_content: Περιεχόμενο
288 288 field_group_by: Ομαδικά αποτελέσματα από
289 289
290 290 setting_app_title: Τίτλος εφαρμογής
291 291 setting_app_subtitle: Υπότιτλος εφαρμογής
292 292 setting_welcome_text: Κείμενο υποδοχής
293 293 setting_default_language: Προεπιλεγμένη γλώσσα
294 294 setting_login_required: Απαιτείται πιστοποίηση
295 295 setting_self_registration: Αυτο-εγγραφή
296 296 setting_attachment_max_size: Μέγ. μέγεθος συνημμένου
297 297 setting_issues_export_limit: Θέματα περιορισμού εξαγωγής
298 298 setting_mail_from: Μετάδοση διεύθυνσης email
299 299 setting_bcc_recipients: Αποδέκτες κρυφής κοινοποίησης (bcc)
300 300 setting_plain_text_mail: Email απλού κειμένου (όχι HTML)
301 301 setting_host_name: Όνομα κόμβου και διαδρομή
302 302 setting_text_formatting: Μορφοποίηση κειμένου
303 303 setting_wiki_compression: Συμπίεση ιστορικού wiki
304 304 setting_feeds_limit: Feed περιορισμού περιεχομένου
305 305 setting_default_projects_public: Τα νέα έργα έχουν προεπιλεγεί ως δημόσια
306 306 setting_autofetch_changesets: Αυτόματη λήψη commits
307 307 setting_sys_api_enabled: Ενεργοποίηση WS για διαχείριση αποθετηρίου
308 308 setting_commit_ref_keywords: Αναφορά σε λέξεις-κλειδιά
309 309 setting_commit_fix_keywords: Καθορισμός σε λέξεις-κλειδιά
310 310 setting_autologin: Αυτόματη σύνδεση
311 311 setting_date_format: Μορφή ημερομηνίας
312 312 setting_time_format: Μορφή ώρας
313 313 setting_cross_project_issue_relations: Επιτρέψτε συσχετισμό θεμάτων σε διασταύρωση-έργων
314 314 setting_issue_list_default_columns: Προκαθορισμένες εμφανιζόμενες στήλες στη λίστα θεμάτων
315 315 setting_emails_footer: Υποσέλιδο στα email
316 316 setting_protocol: Πρωτόκολο
317 317 setting_per_page_options: Αντικείμενα ανά σελίδα επιλογών
318 318 setting_user_format: Μορφή εμφάνισης χρηστών
319 319 setting_activity_days_default: Ημέρες που εμφανίζεται στη δραστηριότητα έργου
320 320 setting_display_subprojects_issues: Εμφάνιση από προεπιλογή θεμάτων επιμέρους έργων στα κύρια έργα
321 321 setting_enabled_scm: Ενεργοποίηση SCM
322 322 setting_mail_handler_api_enabled: Ενεργοποίηση WS για εισερχόμενα email
323 323 setting_mail_handler_api_key: κλειδί API
324 324 setting_sequential_project_identifiers: Δημιουργία διαδοχικών αναγνωριστικών έργου
325 325 setting_gravatar_enabled: Χρήση Gravatar εικονιδίων χρηστών
326 326 setting_diff_max_lines_displayed: Μεγ.αριθμός εμφάνισης γραμμών diff
327 327 setting_file_max_size_displayed: Μεγ.μέγεθος των αρχείων απλού κειμένου που εμφανίζονται σε σειρά
328 328 setting_repository_log_display_limit: Μέγιστος αριθμός αναθεωρήσεων που εμφανίζονται στο ιστορικό αρχείου
329 329 setting_openid: Επιτρέψτε συνδέσεις OpenID και εγγραφή
330 330 setting_password_min_length: Ελάχιστο μήκος κωδικού πρόσβασης
331 331 setting_new_project_user_role_id: Απόδοση ρόλου σε χρήστη μη-διαχειριστή όταν δημιουργεί ένα έργο
332 332
333 333 permission_add_project: Δημιουργία έργου
334 334 permission_edit_project: Επεξεργασία έργου
335 335 permission_select_project_modules: Επιλογή μονάδων έργου
336 336 permission_manage_members: Διαχείριση μελών
337 337 permission_manage_versions: Διαχείριση εκδόσεων
338 338 permission_manage_categories: Διαχείριση κατηγοριών θεμάτων
339 339 permission_add_issues: Προσθήκη θεμάτων
340 340 permission_edit_issues: Επεξεργασία θεμάτων
341 341 permission_manage_issue_relations: Διαχείριση συσχετισμών θεμάτων
342 342 permission_add_issue_notes: Προσθήκη σημειώσεων
343 343 permission_edit_issue_notes: Επεξεργασία σημειώσεων
344 344 permission_edit_own_issue_notes: Επεξεργασία δικών μου σημειώσεων
345 345 permission_move_issues: Μεταφορά θεμάτων
346 346 permission_delete_issues: Διαγραφή θεμάτων
347 347 permission_manage_public_queries: Διαχείριση δημόσιων αναζητήσεων
348 348 permission_save_queries: Αποθήκευση αναζητήσεων
349 349 permission_view_gantt: Προβολή διαγράμματος gantt
350 350 permission_view_calendar: Προβολή ημερολογίου
351 351 permission_view_issue_watchers: Προβολή λίστας παρατηρητών
352 352 permission_add_issue_watchers: Προσθήκη παρατηρητών
353 353 permission_log_time: Ιστορικό χρόνου που δαπανήθηκε
354 354 permission_view_time_entries: Προβολή χρόνου που δαπανήθηκε
355 355 permission_edit_time_entries: Επεξεργασία ιστορικού χρόνου
356 356 permission_edit_own_time_entries: Επεξεργασία δικού μου ιστορικού χρόνου
357 357 permission_manage_news: Διαχείριση νέων
358 358 permission_comment_news: Σχολιασμός νέων
359 359 permission_manage_documents: Διαχείριση εγγράφων
360 360 permission_view_documents: Προβολή εγγράφων
361 361 permission_manage_files: Διαχείριση αρχείων
362 362 permission_view_files: Προβολή αρχείων
363 363 permission_manage_wiki: Διαχείριση wiki
364 364 permission_rename_wiki_pages: Μετονομασία σελίδων wiki
365 365 permission_delete_wiki_pages: Διαγραφή σελίδων wiki
366 366 permission_view_wiki_pages: Προβολή wiki
367 367 permission_view_wiki_edits: Προβολή ιστορικού wiki
368 368 permission_edit_wiki_pages: Επεξεργασία σελίδων wiki
369 369 permission_delete_wiki_pages_attachments: Διαγραφή συνημμένων
370 370 permission_protect_wiki_pages: Προστασία σελίδων wiki
371 371 permission_manage_repository: Διαχείριση αποθετηρίου
372 372 permission_browse_repository: Διαχείριση εγγράφων
373 373 permission_view_changesets: Προβολή changesets
374 374 permission_commit_access: Πρόσβαση commit
375 375 permission_manage_boards: Διαχείριση πινάκων συζητήσεων
376 376 permission_view_messages: Προβολή μηνυμάτων
377 377 permission_add_messages: Αποστολή μηνυμάτων
378 378 permission_edit_messages: Επεξεργασία μηνυμάτων
379 379 permission_edit_own_messages: Επεξεργασία δικών μου μηνυμάτων
380 380 permission_delete_messages: Διαγραφή μηνυμάτων
381 381 permission_delete_own_messages: Διαγραφή δικών μου μηνυμάτων
382 382
383 383 project_module_issue_tracking: Ανίχνευση θεμάτων
384 384 project_module_time_tracking: Ανίχνευση χρόνου
385 385 project_module_news: Νέα
386 386 project_module_documents: Έγγραφα
387 387 project_module_files: Αρχεία
388 388 project_module_wiki: Wiki
389 389 project_module_repository: Αποθετήριο
390 390 project_module_boards: Πίνακες συζητήσεων
391 391
392 392 label_user: Χρήστης
393 393 label_user_plural: Χρήστες
394 394 label_user_new: Νέος Χρήστης
395 395 label_project: Έργο
396 396 label_project_new: Νέο έργο
397 397 label_project_plural: Έργα
398 398 label_x_projects:
399 399 zero: κανένα έργο
400 400 one: 1 έργο
401 401 other: "%{count} έργα"
402 402 label_project_all: Όλα τα έργα
403 403 label_project_latest: Τελευταία έργα
404 404 label_issue: Θέμα
405 405 label_issue_new: Νέο θέμα
406 406 label_issue_plural: Θέματα
407 407 label_issue_view_all: Προβολή όλων των θεμάτων
408 408 label_issues_by: "Θέματα του %{value}"
409 409 label_issue_added: Το θέμα προστέθηκε
410 410 label_issue_updated: Το θέμα ενημερώθηκε
411 411 label_document: Έγγραφο
412 412 label_document_new: Νέο έγγραφο
413 413 label_document_plural: Έγγραφα
414 414 label_document_added: Έγγραφο προστέθηκε
415 415 label_role: Ρόλος
416 416 label_role_plural: Ρόλοι
417 417 label_role_new: Νέος ρόλος
418 418 label_role_and_permissions: Ρόλοι και άδειες
419 419 label_member: Μέλος
420 420 label_member_new: Νέο μέλος
421 421 label_member_plural: Μέλη
422 422 label_tracker: Ανιχνευτής
423 423 label_tracker_plural: Ανιχνευτές
424 424 label_tracker_new: Νέος Ανιχνευτής
425 425 label_workflow: Ροή εργασίας
426 426 label_issue_status: Κατάσταση θέματος
427 427 label_issue_status_plural: Κατάσταση θέματος
428 428 label_issue_status_new: Νέα κατάσταση
429 429 label_issue_category: Κατηγορία θέματος
430 430 label_issue_category_plural: Κατηγορίες θεμάτων
431 431 label_issue_category_new: Νέα κατηγορία
432 432 label_custom_field: Προσαρμοσμένο πεδίο
433 433 label_custom_field_plural: Προσαρμοσμένα πεδία
434 434 label_custom_field_new: Νέο προσαρμοσμένο πεδίο
435 435 label_enumerations: Απαριθμήσεις
436 436 label_enumeration_new: Νέα τιμή
437 437 label_information: Πληροφορία
438 438 label_information_plural: Πληροφορίες
439 439 label_please_login: Παρακαλώ συνδεθείτε
440 440 label_register: Εγγραφή
441 441 label_login_with_open_id_option: ή συνδεθείτε με OpenID
442 442 label_password_lost: Ανάκτηση κωδικού πρόσβασης
443 443 label_home: Αρχική σελίδα
444 444 label_my_page: Η σελίδα μου
445 445 label_my_account: Ο λογαριασμός μου
446 446 label_my_projects: Τα έργα μου
447 447 label_administration: Διαχείριση
448 448 label_login: Σύνδεση
449 449 label_logout: Αποσύνδεση
450 450 label_help: Βοήθεια
451 451 label_reported_issues: Εισηγμένα θέματα
452 452 label_assigned_to_me_issues: Θέματα που έχουν ανατεθεί σε μένα
453 453 label_last_login: Τελευταία σύνδεση
454 454 label_registered_on: Εγγράφηκε την
455 455 label_activity: Δραστηριότητα
456 456 label_overall_activity: Συνολική δραστηριότητα
457 457 label_user_activity: "δραστηριότητα του %{value}"
458 458 label_new: Νέο
459 459 label_logged_as: Σύνδεδεμένος ως
460 460 label_environment: Περιβάλλον
461 461 label_authentication: Πιστοποίηση
462 462 label_auth_source: Τρόπος πιστοποίησης
463 463 label_auth_source_new: Νέος τρόπος πιστοποίησης
464 464 label_auth_source_plural: Τρόποι πιστοποίησης
465 465 label_subproject_plural: Επιμέρους έργα
466 466 label_and_its_subprojects: "%{value} και τα επιμέρους έργα του"
467 467 label_min_max_length: Ελάχ. - Μέγ. μήκος
468 468 label_list: Λίστα
469 469 label_date: Ημερομηνία
470 470 label_integer: Ακέραιος
471 471 label_float: Αριθμός κινητής υποδιαστολής
472 472 label_boolean: Λογικός
473 473 label_string: Κείμενο
474 474 label_text: Μακροσκελές κείμενο
475 475 label_attribute: Ιδιότητα
476 476 label_attribute_plural: Ιδιότητες
477 477 label_download: "%{count} Μεταφόρτωση"
478 478 label_download_plural: "%{count} Μεταφορτώσεις"
479 479 label_no_data: Δεν υπάρχουν δεδομένα
480 480 label_change_status: Αλλαγή κατάστασης
481 481 label_history: Ιστορικό
482 482 label_attachment: Αρχείο
483 483 label_attachment_new: Νέο αρχείο
484 484 label_attachment_delete: Διαγραφή αρχείου
485 485 label_attachment_plural: Αρχεία
486 486 label_file_added: Το αρχείο προστέθηκε
487 487 label_report: Αναφορά
488 488 label_report_plural: Αναφορές
489 489 label_news: Νέα
490 490 label_news_new: Προσθήκη νέων
491 491 label_news_plural: Νέα
492 492 label_news_latest: Τελευταία νέα
493 493 label_news_view_all: Προβολή όλων των νέων
494 494 label_news_added: Τα νέα προστέθηκαν
495 495 label_settings: Ρυθμίσεις
496 496 label_overview: Επισκόπηση
497 497 label_version: Έκδοση
498 498 label_version_new: Νέα έκδοση
499 499 label_version_plural: Εκδόσεις
500 500 label_confirmation: Επιβεβαίωση
501 501 label_export_to: 'Επίσης διαθέσιμο σε:'
502 502 label_read: Διάβασε...
503 503 label_public_projects: Δημόσια έργα
504 504 label_open_issues: Ανοικτό
505 505 label_open_issues_plural: Ανοικτά
506 506 label_closed_issues: Κλειστό
507 507 label_closed_issues_plural: Κλειστά
508 508 label_x_open_issues_abbr_on_total:
509 509 zero: 0 ανοικτά / %{total}
510 510 one: 1 ανοικτό / %{total}
511 511 other: "%{count} ανοικτά / %{total}"
512 512 label_x_open_issues_abbr:
513 513 zero: 0 ανοικτά
514 514 one: 1 ανοικτό
515 515 other: "%{count} ανοικτά"
516 516 label_x_closed_issues_abbr:
517 517 zero: 0 κλειστά
518 518 one: 1 κλειστό
519 519 other: "%{count} κλειστά"
520 520 label_total: Σύνολο
521 521 label_permissions: Άδειες
522 522 label_current_status: Τρέχουσα κατάσταση
523 523 label_new_statuses_allowed: Νέες καταστάσεις επιτρέπονται
524 524 label_all: όλα
525 525 label_none: κανένα
526 526 label_nobody: κανείς
527 527 label_next: Επόμενο
528 528 label_previous: Προηγούμενο
529 529 label_used_by: Χρησιμοποιήθηκε από
530 530 label_details: Λεπτομέρειες
531 531 label_add_note: Προσθήκη σημείωσης
532 532 label_per_page: Ανά σελίδα
533 533 label_calendar: Ημερολόγιο
534 534 label_months_from: μηνών από
535 535 label_gantt: Gantt
536 536 label_internal: Εσωτερικό
537 537 label_last_changes: "Τελευταίες %{count} αλλαγές"
538 538 label_change_view_all: Προβολή όλων των αλλαγών
539 539 label_personalize_page: Προσαρμογή σελίδας
540 540 label_comment: Σχόλιο
541 541 label_comment_plural: Σχόλια
542 542 label_x_comments:
543 543 zero: δεν υπάρχουν σχόλια
544 544 one: 1 σχόλιο
545 545 other: "%{count} σχόλια"
546 546 label_comment_add: Προσθήκη σχολίου
547 547 label_comment_added: Τα σχόλια προστέθηκαν
548 548 label_comment_delete: Διαγραφή σχολίων
549 549 label_query: Προσαρμοσμένη αναζήτηση
550 550 label_query_plural: Προσαρμοσμένες αναζητήσεις
551 551 label_query_new: Νέα αναζήτηση
552 552 label_filter_add: Προσθήκη φίλτρου
553 553 label_filter_plural: Φίλτρα
554 554 label_equals: είναι
555 555 label_not_equals: δεν είναι
556 556 label_in_less_than: μικρότερο από
557 557 label_in_more_than: περισσότερο από
558 558 label_greater_or_equal: '>='
559 559 label_less_or_equal: '<='
560 560 label_in: σε
561 561 label_today: σήμερα
562 562 label_all_time: συνέχεια
563 563 label_yesterday: χθες
564 564 label_this_week: αυτή την εβδομάδα
565 565 label_last_week: την προηγούμενη εβδομάδα
566 566 label_last_n_days: "τελευταίες %{count} μέρες"
567 567 label_this_month: αυτό το μήνα
568 568 label_last_month: τον προηγούμενο μήνα
569 569 label_this_year: αυτό το χρόνο
570 570 label_date_range: Χρονικό διάστημα
571 571 label_less_than_ago: σε λιγότερο από ημέρες πριν
572 572 label_more_than_ago: σε περισσότερο από ημέρες πριν
573 573 label_ago: ημέρες πριν
574 574 label_contains: περιέχει
575 575 label_not_contains: δεν περιέχει
576 576 label_day_plural: μέρες
577 577 label_repository: Αποθετήριο
578 578 label_repository_plural: Αποθετήρια
579 579 label_browse: Πλοήγηση
580 580 label_modification: "%{count} τροποποίηση"
581 581 label_modification_plural: "%{count} τροποποιήσεις"
582 582 label_branch: Branch
583 583 label_tag: Tag
584 584 label_revision: Αναθεώρηση
585 585 label_revision_plural: Αναθεωρήσεις
586 586 label_associated_revisions: Συνεταιρικές αναθεωρήσεις
587 587 label_added: προστέθηκε
588 588 label_modified: τροποποιήθηκε
589 589 label_copied: αντιγράφηκε
590 590 label_renamed: μετονομάστηκε
591 591 label_deleted: διαγράφηκε
592 592 label_latest_revision: Τελευταία αναθεώριση
593 593 label_latest_revision_plural: Τελευταίες αναθεωρήσεις
594 594 label_view_revisions: Προβολή αναθεωρήσεων
595 595 label_view_all_revisions: Προβολή όλων των αναθεωρήσεων
596 596 label_max_size: Μέγιστο μέγεθος
597 597 label_sort_highest: Μετακίνηση στην κορυφή
598 598 label_sort_higher: Μετακίνηση προς τα πάνω
599 599 label_sort_lower: Μετακίνηση προς τα κάτω
600 600 label_sort_lowest: Μετακίνηση στο κατώτατο μέρος
601 601 label_roadmap: Χάρτης πορείας
602 602 label_roadmap_due_in: "Προθεσμία σε %{value}"
603 603 label_roadmap_overdue: "%{value} καθυστερημένο"
604 604 label_roadmap_no_issues: Δεν υπάρχουν θέματα για αυτή την έκδοση
605 605 label_search: Αναζήτηση
606 606 label_result_plural: Αποτελέσματα
607 607 label_all_words: Όλες οι λέξεις
608 608 label_wiki: Wiki
609 609 label_wiki_edit: Επεξεργασία wiki
610 610 label_wiki_edit_plural: Επεξεργασία wiki
611 611 label_wiki_page: Σελίδα Wiki
612 612 label_wiki_page_plural: Σελίδες Wiki
613 613 label_index_by_title: Δείκτης ανά τίτλο
614 614 label_index_by_date: Δείκτης ανά ημερομηνία
615 615 label_current_version: Τρέχουσα έκδοση
616 616 label_preview: Προεπισκόπηση
617 617 label_feed_plural: Feeds
618 618 label_changes_details: Λεπτομέρειες όλων των αλλαγών
619 619 label_issue_tracking: Ανίχνευση θεμάτων
620 620 label_spent_time: Δαπανημένος χρόνος
621 621 label_f_hour: "%{value} ώρα"
622 622 label_f_hour_plural: "%{value} ώρες"
623 623 label_time_tracking: Ανίχνευση χρόνου
624 624 label_change_plural: Αλλαγές
625 625 label_statistics: Στατιστικά
626 626 label_commits_per_month: Commits ανά μήνα
627 627 label_commits_per_author: Commits ανά συγγραφέα
628 628 label_view_diff: Προβολή διαφορών
629 629 label_diff_inline: σε σειρά
630 630 label_diff_side_by_side: αντικρυστά
631 631 label_options: Επιλογές
632 632 label_copy_workflow_from: Αντιγραφή ροής εργασίας από
633 633 label_permissions_report: Συνοπτικός πίνακας αδειών
634 634 label_watched_issues: Θέματα υπό παρακολούθηση
635 635 label_related_issues: Σχετικά θέματα
636 636 label_applied_status: Εφαρμογή κατάστασης
637 637 label_loading: Φορτώνεται...
638 638 label_relation_new: Νέα συσχέτιση
639 639 label_relation_delete: Διαγραφή συσχέτισης
640 640 label_relates_to: σχετικό με
641 641 label_duplicates: αντίγραφα
642 642 label_duplicated_by: αντιγράφηκε από
643 643 label_blocks: φραγές
644 644 label_blocked_by: φραγή από τον
645 645 label_precedes: προηγείται
646 646 label_follows: ακολουθεί
647 647 label_end_to_start: από το τέλος στην αρχή
648 648 label_end_to_end: από το τέλος στο τέλος
649 649 label_start_to_start: από την αρχή στην αρχή
650 650 label_start_to_end: από την αρχή στο τέλος
651 651 label_stay_logged_in: Παραμονή σύνδεσης
652 652 label_disabled: απενεργοποιημένη
653 653 label_show_completed_versions: Προβολή ολοκληρωμένων εκδόσεων
654 654 label_me: εγώ
655 655 label_board: Φόρουμ
656 656 label_board_new: Νέο φόρουμ
657 657 label_board_plural: Φόρουμ
658 658 label_topic_plural: Θέματα
659 659 label_message_plural: Μηνύματα
660 660 label_message_last: Τελευταίο μήνυμα
661 661 label_message_new: Νέο μήνυμα
662 662 label_message_posted: Το μήνυμα προστέθηκε
663 663 label_reply_plural: Απαντήσεις
664 664 label_send_information: Αποστολή πληροφοριών λογαριασμού στο χρήστη
665 665 label_year: Έτος
666 666 label_month: Μήνας
667 667 label_week: Εβδομάδα
668 668 label_date_from: Από
669 669 label_date_to: Έως
670 670 label_language_based: Με βάση τη γλώσσα του χρήστη
671 671 label_sort_by: "Ταξινόμηση ανά %{value}"
672 672 label_send_test_email: Αποστολή δοκιμαστικού email
673 673 label_feeds_access_key_created_on: "το κλειδί πρόσβασης RSS δημιουργήθηκε πριν από %{value}"
674 674 label_module_plural: Μονάδες
675 675 label_added_time_by: "Προστέθηκε από τον %{author} πριν από %{age}"
676 676 label_updated_time_by: "Ενημερώθηκε από τον %{author} πριν από %{age}"
677 677 label_updated_time: "Ενημερώθηκε πριν από %{value}"
678 678 label_jump_to_a_project: Μεταβείτε σε ένα έργο...
679 679 label_file_plural: Αρχεία
680 680 label_changeset_plural: Changesets
681 681 label_default_columns: Προεπιλεγμένες στήλες
682 682 label_no_change_option: (Δεν υπάρχουν αλλαγές)
683 683 label_bulk_edit_selected_issues: Μαζική επεξεργασία επιλεγμένων θεμάτων
684 684 label_theme: Θέμα
685 685 label_default: Προεπιλογή
686 686 label_search_titles_only: Αναζήτηση τίτλων μόνο
687 687 label_user_mail_option_all: "Για όλες τις εξελίξεις σε όλα τα έργα μου"
688 688 label_user_mail_option_selected: "Για όλες τις εξελίξεις μόνο στα επιλεγμένα έργα..."
689 689 label_user_mail_no_self_notified: "Δεν θέλω να ειδοποιούμαι για τις δικές μου αλλαγές"
690 690 label_registration_activation_by_email: ενεργοποίηση λογαριασμού με email
691 691 label_registration_manual_activation: χειροκίνητη ενεργοποίηση λογαριασμού
692 692 label_registration_automatic_activation: αυτόματη ενεργοποίηση λογαριασμού
693 693 label_display_per_page: "Ανά σελίδα: %{value}"
694 694 label_age: Ηλικία
695 695 label_change_properties: Αλλαγή ιδιοτήτων
696 696 label_general: Γενικά
697 697 label_more: Περισσότερα
698 698 label_scm: SCM
699 699 label_plugins: Plugins
700 700 label_ldap_authentication: Πιστοποίηση LDAP
701 701 label_downloads_abbr: Μ/Φ
702 702 label_optional_description: Προαιρετική περιγραφή
703 703 label_add_another_file: Προσθήκη άλλου αρχείου
704 704 label_preferences: Προτιμήσεις
705 705 label_chronological_order: Κατά χρονολογική σειρά
706 706 label_reverse_chronological_order: Κατά αντίστροφη χρονολογική σειρά
707 707 label_planning: Σχεδιασμός
708 708 label_incoming_emails: Εισερχόμενα email
709 709 label_generate_key: Δημιουργία κλειδιού
710 710 label_issue_watchers: Παρατηρητές
711 711 label_example: Παράδειγμα
712 712 label_display: Προβολή
713 713 label_sort: Ταξινόμηση
714 714 label_ascending: Αύξουσα
715 715 label_descending: Φθίνουσα
716 716 label_date_from_to: Από %{start} έως %{end}
717 717 label_wiki_content_added: Η σελίδα Wiki προστέθηκε
718 718 label_wiki_content_updated: Η σελίδα Wiki ενημερώθηκε
719 719
720 720 button_login: Σύνδεση
721 721 button_submit: Αποστολή
722 722 button_save: Αποθήκευση
723 723 button_check_all: Επιλογή όλων
724 724 button_uncheck_all: Αποεπιλογή όλων
725 725 button_delete: Διαγραφή
726 726 button_create: Δημιουργία
727 727 button_create_and_continue: Δημιουργία και συνέχεια
728 728 button_test: Τεστ
729 729 button_edit: Επεξεργασία
730 730 button_add: Προσθήκη
731 731 button_change: Αλλαγή
732 732 button_apply: Εφαρμογή
733 733 button_clear: Καθαρισμός
734 734 button_lock: Κλείδωμα
735 735 button_unlock: Ξεκλείδωμα
736 736 button_download: Μεταφόρτωση
737 737 button_list: Λίστα
738 738 button_view: Προβολή
739 739 button_move: Μετακίνηση
740 740 button_back: Πίσω
741 741 button_cancel: Ακύρωση
742 742 button_activate: Ενεργοποίηση
743 743 button_sort: Ταξινόμηση
744 744 button_log_time: Ιστορικό χρόνου
745 745 button_rollback: Επαναφορά σε αυτή την έκδοση
746 746 button_watch: Παρακολούθηση
747 747 button_unwatch: Αναίρεση παρακολούθησης
748 748 button_reply: Απάντηση
749 749 button_archive: Αρχειοθέτηση
750 750 button_unarchive: Αναίρεση αρχειοθέτησης
751 751 button_reset: Επαναφορά
752 752 button_rename: Μετονομασία
753 753 button_change_password: Αλλαγή κωδικού πρόσβασης
754 754 button_copy: Αντιγραφή
755 755 button_annotate: Σχολιασμός
756 756 button_update: Ενημέρωση
757 757 button_configure: Ρύθμιση
758 758 button_quote: Παράθεση
759 759
760 760 status_active: ενεργό(ς)/ή
761 761 status_registered: εγεγγραμμένο(ς)/η
762 762 status_locked: κλειδωμένο(ς)/η
763 763
764 764 text_select_mail_notifications: Επιλογή ενεργειών για τις οποίες θα πρέπει να αποσταλεί ειδοποίηση με email.
765 765 text_regexp_info: eg. ^[A-Z0-9]+$
766 766 text_min_max_length_info: 0 σημαίνει ότι δεν υπάρχουν περιορισμοί
767 767 text_project_destroy_confirmation: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το έργο και τα σχετικά δεδομένα του;
768 768 text_subprojects_destroy_warning: "Επίσης το(α) επιμέρους έργο(α): %{value} θα διαγραφούν."
769 769 text_workflow_edit: Επιλέξτε ένα ρόλο και έναν ανιχνευτή για να επεξεργαστείτε τη ροή εργασίας
770 770 text_are_you_sure: Είστε σίγουρος ;
771 771 text_tip_issue_begin_day: καθήκοντα που ξεκινάνε σήμερα
772 772 text_tip_issue_end_day: καθήκοντα που τελειώνουν σήμερα
773 773 text_tip_issue_begin_end_day: καθήκοντα που ξεκινάνε και τελειώνουν σήμερα
774 774 text_caracters_maximum: "μέγιστος αριθμός %{count} χαρακτήρες."
775 775 text_caracters_minimum: "Πρέπει να περιέχει τουλάχιστον %{count} χαρακτήρες."
776 776 text_length_between: "Μήκος μεταξύ %{min} και %{max} χαρακτήρες."
777 777 text_tracker_no_workflow: Δεν έχει οριστεί ροή εργασίας για αυτό τον ανιχνευτή
778 778 text_unallowed_characters: Μη επιτρεπόμενοι χαρακτήρες
779 779 text_comma_separated: Επιτρέπονται πολλαπλές τιμές (χωρισμένες με κόμμα).
780 780 text_issues_ref_in_commit_messages: Αναφορά και καθορισμός θεμάτων σε μηνύματα commit
781 781 text_issue_added: "Το θέμα %{id} παρουσιάστηκε από τον %{author}."
782 782 text_issue_updated: "Το θέμα %{id} ενημερώθηκε από τον %{author}."
783 783 text_wiki_destroy_confirmation: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το wiki και όλο το περιεχόμενο του ;
784 784 text_issue_category_destroy_question: "Κάποια θέματα (%{count}) έχουν εκχωρηθεί σε αυτή την κατηγορία. Τι θέλετε να κάνετε ;"
785 785 text_issue_category_destroy_assignments: Αφαίρεση εκχωρήσεων κατηγορίας
786 786 text_issue_category_reassign_to: Επανεκχώρηση θεμάτων σε αυτή την κατηγορία
787 787 text_user_mail_option: "Για μη επιλεγμένα έργα, θα λάβετε ειδοποιήσεις μόνο για πράγματα που παρακολουθείτε ή στα οποία συμμετέχω ενεργά (π.χ. θέματα των οποίων είστε συγγραφέας ή σας έχουν ανατεθεί)."
788 788 text_no_configuration_data: "Οι ρόλοι, οι ανιχνευτές, η κατάσταση των θεμάτων και η ροή εργασίας δεν έχουν ρυθμιστεί ακόμα.\nΣυνιστάται ιδιαίτερα να φορτώσετε τις προεπιλεγμένες ρυθμίσεις. Θα είστε σε θέση να τις τροποποιήσετε μετά τη φόρτωση τους."
789 789 text_load_default_configuration: Φόρτωση προεπιλεγμένων ρυθμίσεων
790 790 text_status_changed_by_changeset: "Εφαρμόστηκε στο changeset %{value}."
791 791 text_issues_destroy_confirmation: 'Είστε σίγουρος ότι θέλετε να διαγράψετε το επιλεγμένο θέμα(τα);'
792 792 text_select_project_modules: 'Επιλέξτε ποιες μονάδες θα ενεργοποιήσετε για αυτό το έργο:'
793 793 text_default_administrator_account_changed: Ο προκαθορισμένος λογαριασμός του διαχειριστή άλλαξε
794 794 text_file_repository_writable: Εγγράψιμος κατάλογος συνημμένων
795 795 text_plugin_assets_writable: Εγγράψιμος κατάλογος plugin assets
796 796 text_rmagick_available: Διαθέσιμο RMagick (προαιρετικό)
797 797 text_destroy_time_entries_question: "%{hours} δαπανήθηκαν σχετικά με τα θέματα που πρόκειται να διαγράψετε. Τι θέλετε να κάνετε ;"
798 798 text_destroy_time_entries: Διαγραφή αναφερόμενων ωρών
799 799 text_assign_time_entries_to_project: Ανάθεση αναφερόμενων ωρών στο έργο
800 800 text_reassign_time_entries: 'Ανάθεση εκ νέου των αναφερόμενων ωρών στο θέμα:'
801 801 text_user_wrote: "%{value} έγραψε:"
802 802 text_enumeration_destroy_question: "%{count} αντικείμενα έχουν τεθεί σε αυτή την τιμή."
803 803 text_enumeration_category_reassign_to: 'Επανεκχώρηση τους στην παρούσα αξία:'
804 804 text_email_delivery_not_configured: "Δεν έχουν γίνει ρυθμίσεις παράδοσης email, και οι ειδοποιήσεις είναι απενεργοποιημένες.\nΔηλώστε τον εξυπηρετητή SMTP στο config/configuration.yml και κάντε επανακκίνηση την εφαρμογή για να τις ρυθμίσεις."
805 805 text_repository_usernames_mapping: "Επιλέξτε ή ενημερώστε τον χρήστη Redmine που αντιστοιχεί σε κάθε όνομα χρήστη στο ιστορικό του αποθετηρίου.\nΧρήστες με το ίδιο όνομα χρήστη ή email στο Redmine και στο αποθετηρίο αντιστοιχίζονται αυτόματα."
806 806 text_diff_truncated: '... Αυτό το diff εχεί κοπεί επειδή υπερβαίνει το μέγιστο μέγεθος που μπορεί να προβληθεί.'
807 807 text_custom_field_possible_values_info: 'Μία γραμμή για κάθε τιμή'
808 808 text_wiki_page_destroy_question: "Αυτή η σελίδα έχει %{descendants} σελίδες τέκνων και απογόνων. Τι θέλετε να κάνετε ;"
809 809 text_wiki_page_nullify_children: "Διατηρήστε τις σελίδες τέκνων ως σελίδες root"
810 810 text_wiki_page_destroy_children: "Διαγράψτε όλες τις σελίδες τέκνων και των απογόνων τους"
811 811 text_wiki_page_reassign_children: "Επανεκχώριση των σελίδων τέκνων στη γονική σελίδα"
812 812
813 813 default_role_manager: Manager
814 814 default_role_developer: Developer
815 815 default_role_reporter: Reporter
816 816 default_tracker_bug: Σφάλματα
817 817 default_tracker_feature: Λειτουργίες
818 818 default_tracker_support: Υποστήριξη
819 819 default_issue_status_new: Νέα
820 820 default_issue_status_in_progress: In Progress
821 821 default_issue_status_resolved: Επιλυμένο
822 822 default_issue_status_feedback: Σχόλια
823 823 default_issue_status_closed: Κλειστό
824 824 default_issue_status_rejected: Απορριπτέο
825 825 default_doc_category_user: Τεκμηρίωση χρήστη
826 826 default_doc_category_tech: Τεχνική τεκμηρίωση
827 827 default_priority_low: Χαμηλή
828 828 default_priority_normal: Κανονική
829 829 default_priority_high: Υψηλή
830 830 default_priority_urgent: Επείγον
831 831 default_priority_immediate: Άμεση
832 832 default_activity_design: Σχεδιασμός
833 833 default_activity_development: Ανάπτυξη
834 834
835 835 enumeration_issue_priorities: Προτεραιότητα θέματος
836 836 enumeration_doc_categories: Κατηγορία εγγράφων
837 837 enumeration_activities: Δραστηριότητες (κατακερματισμός χρόνου)
838 838 text_journal_changed: "%{label} άλλαξε από %{old} σε %{new}"
839 839 text_journal_set_to: "%{label} ορίζεται σε %{value}"
840 840 text_journal_deleted: "%{label} διαγράφηκε (%{old})"
841 841 label_group_plural: Ομάδες
842 842 label_group: Ομάδα
843 843 label_group_new: Νέα ομάδα
844 844 label_time_entry_plural: Χρόνος που δαπανήθηκε
845 845 text_journal_added: "%{label} %{value} added"
846 846 field_active: Active
847 847 enumeration_system_activity: System Activity
848 848 permission_delete_issue_watchers: Delete watchers
849 849 version_status_closed: closed
850 850 version_status_locked: locked
851 851 version_status_open: open
852 852 error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened
853 853 label_user_anonymous: Anonymous
854 854 button_move_and_follow: Move and follow
855 855 setting_default_projects_modules: Default enabled modules for new projects
856 856 setting_gravatar_default: Default Gravatar image
857 857 field_sharing: Sharing
858 858 label_version_sharing_hierarchy: With project hierarchy
859 859 label_version_sharing_system: With all projects
860 860 label_version_sharing_descendants: With subprojects
861 861 label_version_sharing_tree: With project tree
862 862 label_version_sharing_none: Not shared
863 863 error_can_not_archive_project: This project can not be archived
864 864 button_duplicate: Duplicate
865 865 button_copy_and_follow: Copy and follow
866 866 label_copy_source: Source
867 867 setting_issue_done_ratio: Calculate the issue done ratio with
868 868 setting_issue_done_ratio_issue_status: Use the issue status
869 869 error_issue_done_ratios_not_updated: Issue done ratios not updated.
870 870 error_workflow_copy_target: Please select target tracker(s) and role(s)
871 871 setting_issue_done_ratio_issue_field: Use the issue field
872 872 label_copy_same_as_target: Same as target
873 873 label_copy_target: Target
874 874 notice_issue_done_ratios_updated: Issue done ratios updated.
875 875 error_workflow_copy_source: Please select a source tracker or role
876 876 label_update_issue_done_ratios: Update issue done ratios
877 877 setting_start_of_week: Start calendars on
878 878 permission_view_issues: View Issues
879 879 label_display_used_statuses_only: Only display statuses that are used by this tracker
880 880 label_revision_id: Revision %{value}
881 881 label_api_access_key: API access key
882 882 label_api_access_key_created_on: API access key created %{value} ago
883 883 label_feeds_access_key: RSS access key
884 884 notice_api_access_key_reseted: Your API access key was reset.
885 885 setting_rest_api_enabled: Enable REST web service
886 886 label_missing_api_access_key: Missing an API access key
887 887 label_missing_feeds_access_key: Missing a RSS access key
888 888 button_show: Show
889 889 text_line_separated: Multiple values allowed (one line for each value).
890 890 setting_mail_handler_body_delimiters: Truncate emails after one of these lines
891 891 permission_add_subprojects: Create subprojects
892 892 label_subproject_new: New subproject
893 893 text_own_membership_delete_confirmation: |-
894 894 You are about to remove some or all of your permissions and may no longer be able to edit this project after that.
895 895 Are you sure you want to continue?
896 896 label_close_versions: Close completed versions
897 897 label_board_sticky: Sticky
898 898 label_board_locked: Locked
899 899 permission_export_wiki_pages: Export wiki pages
900 900 setting_cache_formatted_text: Cache formatted text
901 901 permission_manage_project_activities: Manage project activities
902 902 error_unable_delete_issue_status: Unable to delete issue status
903 903 label_profile: Profile
904 904 permission_manage_subtasks: Manage subtasks
905 905 field_parent_issue: Parent task
906 906 label_subtask_plural: Subtasks
907 907 label_project_copy_notifications: Send email notifications during the project copy
908 908 error_can_not_delete_custom_field: Unable to delete custom field
909 909 error_unable_to_connect: Unable to connect (%{value})
910 910 error_can_not_remove_role: This role is in use and can not be deleted.
911 911 error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
912 912 field_principal: Principal
913 913 label_my_page_block: My page block
914 914 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
915 915 text_zoom_out: Zoom out
916 916 text_zoom_in: Zoom in
917 917 notice_unable_delete_time_entry: Unable to delete time log entry.
918 918 label_overall_spent_time: Overall spent time
919 919 field_time_entries: Log time
920 920 project_module_gantt: Gantt
921 921 project_module_calendar: Calendar
922 922 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
923 923 text_are_you_sure_with_children: Delete issue and all child issues?
924 924 field_text: Text field
925 925 label_user_mail_option_only_owner: Only for things I am the owner of
926 926 setting_default_notification_option: Default notification option
927 927 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
928 928 label_user_mail_option_only_assigned: Only for things I am assigned to
929 929 label_user_mail_option_none: No events
930 930 field_member_of_group: Assignee's group
931 931 field_assigned_to_role: Assignee's role
932 932 notice_not_authorized_archived_project: The project you're trying to access has been archived.
933 933 label_principal_search: "Search for user or group:"
934 934 label_user_search: "Search for user:"
935 935 field_visible: Visible
936 936 setting_emails_header: Emails header
937 937 setting_commit_logtime_activity_id: Activity for logged time
938 938 text_time_logged_by_changeset: Applied in changeset %{value}.
939 939 setting_commit_logtime_enabled: Enable time logging
940 940 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
941 941 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
942 942 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
943 943 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
944 944 label_my_queries: My custom queries
945 945 text_journal_changed_no_detail: "%{label} updated"
946 946 label_news_comment_added: Comment added to a news
947 947 button_expand_all: Expand all
948 948 button_collapse_all: Collapse all
949 949 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
950 950 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
951 951 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
952 952 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
953 953 label_role_anonymous: Anonymous
954 954 label_role_non_member: Non member
955 955 label_issue_note_added: Note added
956 956 label_issue_status_updated: Status updated
957 957 label_issue_priority_updated: Priority updated
958 958 label_issues_visibility_own: Issues created by or assigned to the user
959 959 field_issues_visibility: Issues visibility
960 960 label_issues_visibility_all: All issues
961 961 permission_set_own_issues_private: Set own issues public or private
962 962 field_is_private: Private
963 963 permission_set_issues_private: Set issues public or private
964 964 label_issues_visibility_public: All non private issues
965 965 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
966 966 field_commit_logs_encoding: Κωδικοποίηση μηνυμάτων commit
967 967 field_scm_path_encoding: Path encoding
968 968 text_scm_path_encoding_note: "Default: UTF-8"
969 969 field_path_to_repository: Path to repository
970 970 field_root_directory: Root directory
971 971 field_cvs_module: Module
972 972 field_cvsroot: CVSROOT
973 973 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
974 974 text_scm_command: Command
975 975 text_scm_command_version: Version
976 976 label_git_report_last_commit: Report last commit for files and directories
977 977 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
978 978 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
979 979 notice_issue_successful_create: Issue %{id} created.
980 980 label_between: between
981 981 setting_issue_group_assignment: Allow issue assignment to groups
982 982 label_diff: diff
983 983 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
984 984 description_query_sort_criteria_direction: Sort direction
985 985 description_project_scope: Search scope
986 986 description_filter: Filter
987 987 description_user_mail_notification: Mail notification settings
988 988 description_date_from: Enter start date
989 989 description_message_content: Message content
990 990 description_available_columns: Available Columns
991 991 description_date_range_interval: Choose range by selecting start and end date
992 992 description_issue_category_reassign: Choose issue category
993 993 description_search: Searchfield
994 994 description_notes: Notes
995 995 description_date_range_list: Choose range from list
996 996 description_choose_project: Projects
997 997 description_date_to: Enter end date
998 998 description_query_sort_criteria_attribute: Sort attribute
999 999 description_wiki_subpages_reassign: Choose new parent page
1000 1000 description_selected_columns: Selected Columns
1001 1001 label_parent_revision: Parent
1002 1002 label_child_revision: Child
1003 1003 error_scm_annotate_big_text_file: The entry cannot be annotated, as it exceeds the maximum text file size.
1004 1004 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
1005 1005 button_edit_section: Edit this section
1006 1006 setting_repositories_encodings: Attachments and repositories encodings
1007 1007 description_all_columns: All Columns
1008 1008 button_export: Export
1009 1009 label_export_options: "%{export_format} export options"
1010 1010 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1011 1011 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1012 1012 label_x_issues:
1013 1013 zero: 0 Θέμα
1014 1014 one: 1 Θέμα
1015 1015 other: "%{count} Θέματα"
1016 1016 label_repository_new: New repository
1017 1017 field_repository_is_default: Main repository
1018 1018 label_copy_attachments: Copy attachments
1019 1019 label_item_position: "%{position}/%{count}"
1020 1020 label_completed_versions: Completed versions
1021 1021 text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
1022 1022 field_multiple: Multiple values
1023 1023 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1024 1024 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1025 1025 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1026 1026 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1027 1027 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1028 1028 permission_manage_related_issues: Manage related issues
1029 1029 field_ldap_filter: LDAP filter
1030 1030 label_search_for_watchers: Search for watchers to add
1031 1031 notice_account_deleted: Your account has been permanently deleted.
1032 1032 setting_unsubscribe: Allow users to delete their own account
1033 1033 button_delete_my_account: Delete my account
1034 1034 text_account_destroy_confirmation: |-
1035 1035 Are you sure you want to proceed?
1036 1036 Your account will be permanently deleted, with no way to reactivate it.
1037 1037 error_session_expired: Your session has expired. Please login again.
1038 1038 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1039 1039 setting_session_lifetime: Session maximum lifetime
1040 1040 setting_session_timeout: Session inactivity timeout
1041 1041 label_session_expiration: Session expiration
1042 1042 permission_close_project: Close / reopen the project
1043 1043 label_show_closed_projects: View closed projects
1044 1044 button_close: Close
1045 1045 button_reopen: Reopen
1046 1046 project_status_active: active
1047 1047 project_status_closed: closed
1048 1048 project_status_archived: archived
1049 1049 text_project_closed: This project is closed and read-only.
1050 1050 notice_user_successful_create: User %{id} created.
1051 1051 field_core_fields: Standard fields
1052 1052 field_timeout: Timeout (in seconds)
1053 1053 setting_thumbnails_enabled: Display attachment thumbnails
1054 1054 setting_thumbnails_size: Thumbnails size (in pixels)
1055 label_status_transitions: Status transitions
1056 label_fields_permissions: Fields permissions
1057 label_readonly: Read-only
1058 label_required: Required
@@ -1,1056 +1,1060
1 1 en-GB:
2 2 direction: ltr
3 3 date:
4 4 formats:
5 5 # Use the strftime parameters for formats.
6 6 # When no format has been given, it uses default.
7 7 # You can provide other formats here if you like!
8 8 default: "%d/%m/%Y"
9 9 short: "%d %b"
10 10 long: "%d %B, %Y"
11 11
12 12 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
13 13 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
14 14
15 15 # Don't forget the nil at the beginning; there's no such thing as a 0th month
16 16 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
17 17 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
18 18 # Used in date_select and datime_select.
19 19 order:
20 20 - :year
21 21 - :month
22 22 - :day
23 23
24 24 time:
25 25 formats:
26 26 default: "%d/%m/%Y %I:%M %p"
27 27 time: "%I:%M %p"
28 28 short: "%d %b %H:%M"
29 29 long: "%d %B, %Y %H:%M"
30 30 am: "am"
31 31 pm: "pm"
32 32
33 33 datetime:
34 34 distance_in_words:
35 35 half_a_minute: "half a minute"
36 36 less_than_x_seconds:
37 37 one: "less than 1 second"
38 38 other: "less than %{count} seconds"
39 39 x_seconds:
40 40 one: "1 second"
41 41 other: "%{count} seconds"
42 42 less_than_x_minutes:
43 43 one: "less than a minute"
44 44 other: "less than %{count} minutes"
45 45 x_minutes:
46 46 one: "1 minute"
47 47 other: "%{count} minutes"
48 48 about_x_hours:
49 49 one: "about 1 hour"
50 50 other: "about %{count} hours"
51 51 x_hours:
52 52 one: "1 hour"
53 53 other: "%{count} hours"
54 54 x_days:
55 55 one: "1 day"
56 56 other: "%{count} days"
57 57 about_x_months:
58 58 one: "about 1 month"
59 59 other: "about %{count} months"
60 60 x_months:
61 61 one: "1 month"
62 62 other: "%{count} months"
63 63 about_x_years:
64 64 one: "about 1 year"
65 65 other: "about %{count} years"
66 66 over_x_years:
67 67 one: "over 1 year"
68 68 other: "over %{count} years"
69 69 almost_x_years:
70 70 one: "almost 1 year"
71 71 other: "almost %{count} years"
72 72
73 73 number:
74 74 format:
75 75 separator: "."
76 76 delimiter: " "
77 77 precision: 3
78 78
79 79 currency:
80 80 format:
81 81 format: "%u%n"
82 82 unit: "£"
83 83
84 84 human:
85 85 format:
86 86 delimiter: ""
87 87 precision: 3
88 88 storage_units:
89 89 format: "%n %u"
90 90 units:
91 91 byte:
92 92 one: "Byte"
93 93 other: "Bytes"
94 94 kb: "KB"
95 95 mb: "MB"
96 96 gb: "GB"
97 97 tb: "TB"
98 98
99 99 # Used in array.to_sentence.
100 100 support:
101 101 array:
102 102 sentence_connector: "and"
103 103 skip_last_comma: false
104 104
105 105 activerecord:
106 106 errors:
107 107 template:
108 108 header:
109 109 one: "1 error prohibited this %{model} from being saved"
110 110 other: "%{count} errors prohibited this %{model} from being saved"
111 111 messages:
112 112 inclusion: "is not included in the list"
113 113 exclusion: "is reserved"
114 114 invalid: "is invalid"
115 115 confirmation: "doesn't match confirmation"
116 116 accepted: "must be accepted"
117 117 empty: "can't be empty"
118 118 blank: "can't be blank"
119 119 too_long: "is too long (maximum is %{count} characters)"
120 120 too_short: "is too short (minimum is %{count} characters)"
121 121 wrong_length: "is the wrong length (should be %{count} characters)"
122 122 taken: "has already been taken"
123 123 not_a_number: "is not a number"
124 124 not_a_date: "is not a valid date"
125 125 greater_than: "must be greater than %{count}"
126 126 greater_than_or_equal_to: "must be greater than or equal to %{count}"
127 127 equal_to: "must be equal to %{count}"
128 128 less_than: "must be less than %{count}"
129 129 less_than_or_equal_to: "must be less than or equal to %{count}"
130 130 odd: "must be odd"
131 131 even: "must be even"
132 132 greater_than_start_date: "must be greater than start date"
133 133 not_same_project: "doesn't belong to the same project"
134 134 circular_dependency: "This relation would create a circular dependency"
135 135 cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks"
136 136
137 137 actionview_instancetag_blank_option: Please select
138 138
139 139 general_text_No: 'No'
140 140 general_text_Yes: 'Yes'
141 141 general_text_no: 'no'
142 142 general_text_yes: 'yes'
143 143 general_lang_name: 'English (British)'
144 144 general_csv_separator: ','
145 145 general_csv_decimal_separator: '.'
146 146 general_csv_encoding: ISO-8859-1
147 147 general_pdf_encoding: UTF-8
148 148 general_first_day_of_week: '1'
149 149
150 150 notice_account_updated: Account was successfully updated.
151 151 notice_account_invalid_creditentials: Invalid user or password
152 152 notice_account_password_updated: Password was successfully updated.
153 153 notice_account_wrong_password: Wrong password
154 154 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
155 155 notice_account_unknown_email: Unknown user.
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 authorised 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 RSS 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_members: "Failed to save member(s): %{errors}."
173 173 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
174 174 notice_account_pending: "Your account was created and is now pending administrator approval."
175 175 notice_default_data_loaded: Default configuration successfully loaded.
176 176 notice_unable_delete_version: Unable to delete version.
177 177 notice_unable_delete_time_entry: Unable to delete time log entry.
178 178 notice_issue_done_ratios_updated: Issue done ratios updated.
179 179 notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})"
180 180
181 181 error_can_t_load_default_data: "Default configuration could not be loaded: %{value}"
182 182 error_scm_not_found: "The entry or revision was not found in the repository."
183 183 error_scm_command_failed: "An error occurred when trying to access the repository: %{value}"
184 184 error_scm_annotate: "The entry does not exist or cannot be annotated."
185 185 error_scm_annotate_big_text_file: "The entry cannot be annotated, as it exceeds the maximum text file size."
186 186 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
187 187 error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.'
188 188 error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").'
189 189 error_can_not_delete_custom_field: Unable to delete custom field
190 190 error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted."
191 191 error_can_not_remove_role: "This role is in use and cannot be deleted."
192 192 error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened'
193 193 error_can_not_archive_project: This project cannot be archived
194 194 error_issue_done_ratios_not_updated: "Issue done ratios not updated."
195 195 error_workflow_copy_source: 'Please select a source tracker or role'
196 196 error_workflow_copy_target: 'Please select target tracker(s) and role(s)'
197 197 error_unable_delete_issue_status: 'Unable to delete issue status'
198 198 error_unable_to_connect: "Unable to connect (%{value})"
199 199 warning_attachments_not_saved: "%{count} file(s) could not be saved."
200 200
201 201 mail_subject_lost_password: "Your %{value} password"
202 202 mail_body_lost_password: 'To change your password, click on the following link:'
203 203 mail_subject_register: "Your %{value} account activation"
204 204 mail_body_register: 'To activate your account, click on the following link:'
205 205 mail_body_account_information_external: "You can use your %{value} account to log in."
206 206 mail_body_account_information: Your account information
207 207 mail_subject_account_activation_request: "%{value} account activation request"
208 208 mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:"
209 209 mail_subject_reminder: "%{count} issue(s) due in the next %{days} days"
210 210 mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:"
211 211 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
212 212 mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}."
213 213 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
214 214 mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}."
215 215
216 216 gui_validation_error: 1 error
217 217 gui_validation_error_plural: "%{count} errors"
218 218
219 219 field_name: Name
220 220 field_description: Description
221 221 field_summary: Summary
222 222 field_is_required: Required
223 223 field_firstname: First name
224 224 field_lastname: Last name
225 225 field_mail: Email
226 226 field_filename: File
227 227 field_filesize: Size
228 228 field_downloads: Downloads
229 229 field_author: Author
230 230 field_created_on: Created
231 231 field_updated_on: Updated
232 232 field_field_format: Format
233 233 field_is_for_all: For all projects
234 234 field_possible_values: Possible values
235 235 field_regexp: Regular expression
236 236 field_min_length: Minimum length
237 237 field_max_length: Maximum length
238 238 field_value: Value
239 239 field_category: Category
240 240 field_title: Title
241 241 field_project: Project
242 242 field_issue: Issue
243 243 field_status: Status
244 244 field_notes: Notes
245 245 field_is_closed: Issue closed
246 246 field_is_default: Default value
247 247 field_tracker: Tracker
248 248 field_subject: Subject
249 249 field_due_date: Due date
250 250 field_assigned_to: Assignee
251 251 field_priority: Priority
252 252 field_fixed_version: Target version
253 253 field_user: User
254 254 field_principal: Principal
255 255 field_role: Role
256 256 field_homepage: Homepage
257 257 field_is_public: Public
258 258 field_parent: Subproject of
259 259 field_is_in_roadmap: Issues displayed in roadmap
260 260 field_login: Login
261 261 field_mail_notification: Email notifications
262 262 field_admin: Administrator
263 263 field_last_login_on: Last connection
264 264 field_language: Language
265 265 field_effective_date: Date
266 266 field_password: Password
267 267 field_new_password: New password
268 268 field_password_confirmation: Confirmation
269 269 field_version: Version
270 270 field_type: Type
271 271 field_host: Host
272 272 field_port: Port
273 273 field_account: Account
274 274 field_base_dn: Base DN
275 275 field_attr_login: Login attribute
276 276 field_attr_firstname: Firstname attribute
277 277 field_attr_lastname: Lastname attribute
278 278 field_attr_mail: Email attribute
279 279 field_onthefly: On-the-fly user creation
280 280 field_start_date: Start date
281 281 field_done_ratio: "% Done"
282 282 field_auth_source: Authentication mode
283 283 field_hide_mail: Hide my email address
284 284 field_comments: Comment
285 285 field_url: URL
286 286 field_start_page: Start page
287 287 field_subproject: Subproject
288 288 field_hours: Hours
289 289 field_activity: Activity
290 290 field_spent_on: Date
291 291 field_identifier: Identifier
292 292 field_is_filter: Used as a filter
293 293 field_issue_to: Related issue
294 294 field_delay: Delay
295 295 field_assignable: Issues can be assigned to this role
296 296 field_redirect_existing_links: Redirect existing links
297 297 field_estimated_hours: Estimated time
298 298 field_column_names: Columns
299 299 field_time_entries: Log time
300 300 field_time_zone: Time zone
301 301 field_searchable: Searchable
302 302 field_default_value: Default value
303 303 field_comments_sorting: Display comments
304 304 field_parent_title: Parent page
305 305 field_editable: Editable
306 306 field_watcher: Watcher
307 307 field_identity_url: OpenID URL
308 308 field_content: Content
309 309 field_group_by: Group results by
310 310 field_sharing: Sharing
311 311 field_parent_issue: Parent task
312 312 field_member_of_group: "Assignee's group"
313 313 field_assigned_to_role: "Assignee's role"
314 314 field_text: Text field
315 315 field_visible: Visible
316 316 field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text"
317 317
318 318 setting_app_title: Application title
319 319 setting_app_subtitle: Application subtitle
320 320 setting_welcome_text: Welcome text
321 321 setting_default_language: Default language
322 322 setting_login_required: Authentication required
323 323 setting_self_registration: Self-registration
324 324 setting_attachment_max_size: Attachment max. size
325 325 setting_issues_export_limit: Issues export limit
326 326 setting_mail_from: Emission email address
327 327 setting_bcc_recipients: Blind carbon copy recipients (bcc)
328 328 setting_plain_text_mail: Plain text mail (no HTML)
329 329 setting_host_name: Host name and path
330 330 setting_text_formatting: Text formatting
331 331 setting_wiki_compression: Wiki history compression
332 332 setting_feeds_limit: Feed content limit
333 333 setting_default_projects_public: New projects are public by default
334 334 setting_autofetch_changesets: Autofetch commits
335 335 setting_sys_api_enabled: Enable WS for repository management
336 336 setting_commit_ref_keywords: Referencing keywords
337 337 setting_commit_fix_keywords: Fixing keywords
338 338 setting_autologin: Autologin
339 339 setting_date_format: Date format
340 340 setting_time_format: Time format
341 341 setting_cross_project_issue_relations: Allow cross-project issue relations
342 342 setting_issue_list_default_columns: Default columns displayed on the issue list
343 343 setting_emails_header: Emails header
344 344 setting_emails_footer: Emails footer
345 345 setting_protocol: Protocol
346 346 setting_per_page_options: Objects per page options
347 347 setting_user_format: Users display format
348 348 setting_activity_days_default: Days displayed on project activity
349 349 setting_display_subprojects_issues: Display subprojects issues on main projects by default
350 350 setting_enabled_scm: Enabled SCM
351 351 setting_mail_handler_body_delimiters: "Truncate emails after one of these lines"
352 352 setting_mail_handler_api_enabled: Enable WS for incoming emails
353 353 setting_mail_handler_api_key: API key
354 354 setting_sequential_project_identifiers: Generate sequential project identifiers
355 355 setting_gravatar_enabled: Use Gravatar user icons
356 356 setting_gravatar_default: Default Gravatar image
357 357 setting_diff_max_lines_displayed: Max number of diff lines displayed
358 358 setting_file_max_size_displayed: Max size of text files displayed inline
359 359 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
360 360 setting_openid: Allow OpenID login and registration
361 361 setting_password_min_length: Minimum password length
362 362 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
363 363 setting_default_projects_modules: Default enabled modules for new projects
364 364 setting_issue_done_ratio: Calculate the issue done ratio with
365 365 setting_issue_done_ratio_issue_field: Use the issue field
366 366 setting_issue_done_ratio_issue_status: Use the issue status
367 367 setting_start_of_week: Start calendars on
368 368 setting_rest_api_enabled: Enable REST web service
369 369 setting_cache_formatted_text: Cache formatted text
370 370 setting_default_notification_option: Default notification option
371 371 setting_commit_logtime_enabled: Enable time logging
372 372 setting_commit_logtime_activity_id: Activity for logged time
373 373 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
374 374 setting_issue_group_assignment: Allow issue assignment to groups
375 375 setting_default_issue_start_date_to_creation_date: Use current date as start date for new issues
376 376
377 377 permission_add_project: Create project
378 378 permission_add_subprojects: Create subprojects
379 379 permission_edit_project: Edit project
380 380 permission_select_project_modules: Select project modules
381 381 permission_manage_members: Manage members
382 382 permission_manage_project_activities: Manage project activities
383 383 permission_manage_versions: Manage versions
384 384 permission_manage_categories: Manage issue categories
385 385 permission_view_issues: View Issues
386 386 permission_add_issues: Add issues
387 387 permission_edit_issues: Edit issues
388 388 permission_manage_issue_relations: Manage issue relations
389 389 permission_add_issue_notes: Add notes
390 390 permission_edit_issue_notes: Edit notes
391 391 permission_edit_own_issue_notes: Edit own notes
392 392 permission_move_issues: Move issues
393 393 permission_delete_issues: Delete issues
394 394 permission_manage_public_queries: Manage public queries
395 395 permission_save_queries: Save queries
396 396 permission_view_gantt: View gantt chart
397 397 permission_view_calendar: View calendar
398 398 permission_view_issue_watchers: View watchers list
399 399 permission_add_issue_watchers: Add watchers
400 400 permission_delete_issue_watchers: Delete watchers
401 401 permission_log_time: Log spent time
402 402 permission_view_time_entries: View spent time
403 403 permission_edit_time_entries: Edit time logs
404 404 permission_edit_own_time_entries: Edit own time logs
405 405 permission_manage_news: Manage news
406 406 permission_comment_news: Comment news
407 407 permission_manage_documents: Manage documents
408 408 permission_view_documents: View documents
409 409 permission_manage_files: Manage files
410 410 permission_view_files: View files
411 411 permission_manage_wiki: Manage wiki
412 412 permission_rename_wiki_pages: Rename wiki pages
413 413 permission_delete_wiki_pages: Delete wiki pages
414 414 permission_view_wiki_pages: View wiki
415 415 permission_view_wiki_edits: View wiki history
416 416 permission_edit_wiki_pages: Edit wiki pages
417 417 permission_delete_wiki_pages_attachments: Delete attachments
418 418 permission_protect_wiki_pages: Protect wiki pages
419 419 permission_manage_repository: Manage repository
420 420 permission_browse_repository: Browse repository
421 421 permission_view_changesets: View changesets
422 422 permission_commit_access: Commit access
423 423 permission_manage_boards: Manage forums
424 424 permission_view_messages: View messages
425 425 permission_add_messages: Post messages
426 426 permission_edit_messages: Edit messages
427 427 permission_edit_own_messages: Edit own messages
428 428 permission_delete_messages: Delete messages
429 429 permission_delete_own_messages: Delete own messages
430 430 permission_export_wiki_pages: Export wiki pages
431 431 permission_manage_subtasks: Manage subtasks
432 432
433 433 project_module_issue_tracking: Issue tracking
434 434 project_module_time_tracking: Time tracking
435 435 project_module_news: News
436 436 project_module_documents: Documents
437 437 project_module_files: Files
438 438 project_module_wiki: Wiki
439 439 project_module_repository: Repository
440 440 project_module_boards: Forums
441 441 project_module_calendar: Calendar
442 442 project_module_gantt: Gantt
443 443
444 444 label_user: User
445 445 label_user_plural: Users
446 446 label_user_new: New user
447 447 label_user_anonymous: Anonymous
448 448 label_project: Project
449 449 label_project_new: New project
450 450 label_project_plural: Projects
451 451 label_x_projects:
452 452 zero: no projects
453 453 one: 1 project
454 454 other: "%{count} projects"
455 455 label_project_all: All Projects
456 456 label_project_latest: Latest projects
457 457 label_issue: Issue
458 458 label_issue_new: New issue
459 459 label_issue_plural: Issues
460 460 label_issue_view_all: View all issues
461 461 label_issues_by: "Issues by %{value}"
462 462 label_issue_added: Issue added
463 463 label_issue_updated: Issue updated
464 464 label_document: Document
465 465 label_document_new: New document
466 466 label_document_plural: Documents
467 467 label_document_added: Document added
468 468 label_role: Role
469 469 label_role_plural: Roles
470 470 label_role_new: New role
471 471 label_role_and_permissions: Roles and permissions
472 472 label_role_anonymous: Anonymous
473 473 label_role_non_member: Non member
474 474 label_member: Member
475 475 label_member_new: New member
476 476 label_member_plural: Members
477 477 label_tracker: Tracker
478 478 label_tracker_plural: Trackers
479 479 label_tracker_new: New tracker
480 480 label_workflow: Workflow
481 481 label_issue_status: Issue status
482 482 label_issue_status_plural: Issue statuses
483 483 label_issue_status_new: New status
484 484 label_issue_category: Issue category
485 485 label_issue_category_plural: Issue categories
486 486 label_issue_category_new: New category
487 487 label_custom_field: Custom field
488 488 label_custom_field_plural: Custom fields
489 489 label_custom_field_new: New custom field
490 490 label_enumerations: Enumerations
491 491 label_enumeration_new: New value
492 492 label_information: Information
493 493 label_information_plural: Information
494 494 label_please_login: Please log in
495 495 label_register: Register
496 496 label_login_with_open_id_option: or login with OpenID
497 497 label_password_lost: Lost password
498 498 label_home: Home
499 499 label_my_page: My page
500 500 label_my_account: My account
501 501 label_my_projects: My projects
502 502 label_my_page_block: My page block
503 503 label_administration: Administration
504 504 label_login: Sign in
505 505 label_logout: Sign out
506 506 label_help: Help
507 507 label_reported_issues: Reported issues
508 508 label_assigned_to_me_issues: Issues assigned to me
509 509 label_last_login: Last connection
510 510 label_registered_on: Registered on
511 511 label_activity: Activity
512 512 label_overall_activity: Overall activity
513 513 label_user_activity: "%{value}'s activity"
514 514 label_new: New
515 515 label_logged_as: Logged in as
516 516 label_environment: Environment
517 517 label_authentication: Authentication
518 518 label_auth_source: Authentication mode
519 519 label_auth_source_new: New authentication mode
520 520 label_auth_source_plural: Authentication modes
521 521 label_subproject_plural: Subprojects
522 522 label_subproject_new: New subproject
523 523 label_and_its_subprojects: "%{value} and its subprojects"
524 524 label_min_max_length: Min - Max length
525 525 label_list: List
526 526 label_date: Date
527 527 label_integer: Integer
528 528 label_float: Float
529 529 label_boolean: Boolean
530 530 label_string: Text
531 531 label_text: Long text
532 532 label_attribute: Attribute
533 533 label_attribute_plural: Attributes
534 534 label_download: "%{count} Download"
535 535 label_download_plural: "%{count} Downloads"
536 536 label_no_data: No data to display
537 537 label_change_status: Change status
538 538 label_history: History
539 539 label_attachment: File
540 540 label_attachment_new: New file
541 541 label_attachment_delete: Delete file
542 542 label_attachment_plural: Files
543 543 label_file_added: File added
544 544 label_report: Report
545 545 label_report_plural: Reports
546 546 label_news: News
547 547 label_news_new: Add news
548 548 label_news_plural: News
549 549 label_news_latest: Latest news
550 550 label_news_view_all: View all news
551 551 label_news_added: News added
552 552 label_news_comment_added: Comment added to a news
553 553 label_settings: Settings
554 554 label_overview: Overview
555 555 label_version: Version
556 556 label_version_new: New version
557 557 label_version_plural: Versions
558 558 label_close_versions: Close completed versions
559 559 label_confirmation: Confirmation
560 560 label_export_to: 'Also available in:'
561 561 label_read: Read...
562 562 label_public_projects: Public projects
563 563 label_open_issues: open
564 564 label_open_issues_plural: open
565 565 label_closed_issues: closed
566 566 label_closed_issues_plural: closed
567 567 label_x_open_issues_abbr_on_total:
568 568 zero: 0 open / %{total}
569 569 one: 1 open / %{total}
570 570 other: "%{count} open / %{total}"
571 571 label_x_open_issues_abbr:
572 572 zero: 0 open
573 573 one: 1 open
574 574 other: "%{count} open"
575 575 label_x_closed_issues_abbr:
576 576 zero: 0 closed
577 577 one: 1 closed
578 578 other: "%{count} closed"
579 579 label_total: Total
580 580 label_permissions: Permissions
581 581 label_current_status: Current status
582 582 label_new_statuses_allowed: New statuses allowed
583 583 label_all: all
584 584 label_none: none
585 585 label_nobody: nobody
586 586 label_next: Next
587 587 label_previous: Previous
588 588 label_used_by: Used by
589 589 label_details: Details
590 590 label_add_note: Add a note
591 591 label_per_page: Per page
592 592 label_calendar: Calendar
593 593 label_months_from: months from
594 594 label_gantt: Gantt
595 595 label_internal: Internal
596 596 label_last_changes: "last %{count} changes"
597 597 label_change_view_all: View all changes
598 598 label_personalize_page: Personalise this page
599 599 label_comment: Comment
600 600 label_comment_plural: Comments
601 601 label_x_comments:
602 602 zero: no comments
603 603 one: 1 comment
604 604 other: "%{count} comments"
605 605 label_comment_add: Add a comment
606 606 label_comment_added: Comment added
607 607 label_comment_delete: Delete comments
608 608 label_query: Custom query
609 609 label_query_plural: Custom queries
610 610 label_query_new: New query
611 611 label_my_queries: My custom queries
612 612 label_filter_add: Add filter
613 613 label_filter_plural: Filters
614 614 label_equals: is
615 615 label_not_equals: is not
616 616 label_in_less_than: in less than
617 617 label_in_more_than: in more than
618 618 label_greater_or_equal: '>='
619 619 label_less_or_equal: '<='
620 620 label_in: in
621 621 label_today: today
622 622 label_all_time: all time
623 623 label_yesterday: yesterday
624 624 label_this_week: this week
625 625 label_last_week: last week
626 626 label_last_n_days: "last %{count} days"
627 627 label_this_month: this month
628 628 label_last_month: last month
629 629 label_this_year: this year
630 630 label_date_range: Date range
631 631 label_less_than_ago: less than days ago
632 632 label_more_than_ago: more than days ago
633 633 label_ago: days ago
634 634 label_contains: contains
635 635 label_not_contains: doesn't contain
636 636 label_day_plural: days
637 637 label_repository: Repository
638 638 label_repository_plural: Repositories
639 639 label_browse: Browse
640 640 label_modification: "%{count} change"
641 641 label_modification_plural: "%{count} changes"
642 642 label_branch: Branch
643 643 label_tag: Tag
644 644 label_revision: Revision
645 645 label_revision_plural: Revisions
646 646 label_revision_id: "Revision %{value}"
647 647 label_associated_revisions: Associated revisions
648 648 label_added: added
649 649 label_modified: modified
650 650 label_copied: copied
651 651 label_renamed: renamed
652 652 label_deleted: deleted
653 653 label_latest_revision: Latest revision
654 654 label_latest_revision_plural: Latest revisions
655 655 label_view_revisions: View revisions
656 656 label_view_all_revisions: View all revisions
657 657 label_max_size: Maximum size
658 658 label_sort_highest: Move to top
659 659 label_sort_higher: Move up
660 660 label_sort_lower: Move down
661 661 label_sort_lowest: Move to bottom
662 662 label_roadmap: Roadmap
663 663 label_roadmap_due_in: "Due in %{value}"
664 664 label_roadmap_overdue: "%{value} late"
665 665 label_roadmap_no_issues: No issues for this version
666 666 label_search: Search
667 667 label_result_plural: Results
668 668 label_all_words: All words
669 669 label_wiki: Wiki
670 670 label_wiki_edit: Wiki edit
671 671 label_wiki_edit_plural: Wiki edits
672 672 label_wiki_page: Wiki page
673 673 label_wiki_page_plural: Wiki pages
674 674 label_index_by_title: Index by title
675 675 label_index_by_date: Index by date
676 676 label_current_version: Current version
677 677 label_preview: Preview
678 678 label_feed_plural: Feeds
679 679 label_changes_details: Details of all changes
680 680 label_issue_tracking: Issue tracking
681 681 label_spent_time: Spent time
682 682 label_overall_spent_time: Overall spent time
683 683 label_f_hour: "%{value} hour"
684 684 label_f_hour_plural: "%{value} hours"
685 685 label_time_tracking: Time tracking
686 686 label_change_plural: Changes
687 687 label_statistics: Statistics
688 688 label_commits_per_month: Commits per month
689 689 label_commits_per_author: Commits per author
690 690 label_view_diff: View differences
691 691 label_diff_inline: inline
692 692 label_diff_side_by_side: side by side
693 693 label_options: Options
694 694 label_copy_workflow_from: Copy workflow from
695 695 label_permissions_report: Permissions report
696 696 label_watched_issues: Watched issues
697 697 label_related_issues: Related issues
698 698 label_applied_status: Applied status
699 699 label_loading: Loading...
700 700 label_relation_new: New relation
701 701 label_relation_delete: Delete relation
702 702 label_relates_to: related to
703 703 label_duplicates: duplicates
704 704 label_duplicated_by: duplicated by
705 705 label_blocks: blocks
706 706 label_blocked_by: blocked by
707 707 label_precedes: precedes
708 708 label_follows: follows
709 709 label_end_to_start: end to start
710 710 label_end_to_end: end to end
711 711 label_start_to_start: start to start
712 712 label_start_to_end: start to end
713 713 label_stay_logged_in: Stay logged in
714 714 label_disabled: disabled
715 715 label_show_completed_versions: Show completed versions
716 716 label_me: me
717 717 label_board: Forum
718 718 label_board_new: New forum
719 719 label_board_plural: Forums
720 720 label_board_locked: Locked
721 721 label_board_sticky: Sticky
722 722 label_topic_plural: Topics
723 723 label_message_plural: Messages
724 724 label_message_last: Last message
725 725 label_message_new: New message
726 726 label_message_posted: Message added
727 727 label_reply_plural: Replies
728 728 label_send_information: Send account information to the user
729 729 label_year: Year
730 730 label_month: Month
731 731 label_week: Week
732 732 label_date_from: From
733 733 label_date_to: To
734 734 label_language_based: Based on user's language
735 735 label_sort_by: "Sort by %{value}"
736 736 label_send_test_email: Send a test email
737 737 label_feeds_access_key: RSS access key
738 738 label_missing_feeds_access_key: Missing a RSS access key
739 739 label_feeds_access_key_created_on: "RSS access key created %{value} ago"
740 740 label_module_plural: Modules
741 741 label_added_time_by: "Added by %{author} %{age} ago"
742 742 label_updated_time_by: "Updated by %{author} %{age} ago"
743 743 label_updated_time: "Updated %{value} ago"
744 744 label_jump_to_a_project: Jump to a project...
745 745 label_file_plural: Files
746 746 label_changeset_plural: Changesets
747 747 label_default_columns: Default columns
748 748 label_no_change_option: (No change)
749 749 label_bulk_edit_selected_issues: Bulk edit selected issues
750 750 label_theme: Theme
751 751 label_default: Default
752 752 label_search_titles_only: Search titles only
753 753 label_user_mail_option_all: "For any event on all my projects"
754 754 label_user_mail_option_selected: "For any event on the selected projects only..."
755 755 label_user_mail_option_none: "No events"
756 756 label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in"
757 757 label_user_mail_option_only_assigned: "Only for things I am assigned to"
758 758 label_user_mail_option_only_owner: "Only for things I am the owner of"
759 759 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
760 760 label_registration_activation_by_email: account activation by email
761 761 label_registration_manual_activation: manual account activation
762 762 label_registration_automatic_activation: automatic account activation
763 763 label_display_per_page: "Per page: %{value}"
764 764 label_age: Age
765 765 label_change_properties: Change properties
766 766 label_general: General
767 767 label_more: More
768 768 label_scm: SCM
769 769 label_plugins: Plugins
770 770 label_ldap_authentication: LDAP authentication
771 771 label_downloads_abbr: D/L
772 772 label_optional_description: Optional description
773 773 label_add_another_file: Add another file
774 774 label_preferences: Preferences
775 775 label_chronological_order: In chronological order
776 776 label_reverse_chronological_order: In reverse chronological order
777 777 label_planning: Planning
778 778 label_incoming_emails: Incoming emails
779 779 label_generate_key: Generate a key
780 780 label_issue_watchers: Watchers
781 781 label_example: Example
782 782 label_display: Display
783 783 label_sort: Sort
784 784 label_ascending: Ascending
785 785 label_descending: Descending
786 786 label_date_from_to: From %{start} to %{end}
787 787 label_wiki_content_added: Wiki page added
788 788 label_wiki_content_updated: Wiki page updated
789 789 label_group: Group
790 790 label_group_plural: Groups
791 791 label_group_new: New group
792 792 label_time_entry_plural: Spent time
793 793 label_version_sharing_none: Not shared
794 794 label_version_sharing_descendants: With subprojects
795 795 label_version_sharing_hierarchy: With project hierarchy
796 796 label_version_sharing_tree: With project tree
797 797 label_version_sharing_system: With all projects
798 798 label_update_issue_done_ratios: Update issue done ratios
799 799 label_copy_source: Source
800 800 label_copy_target: Target
801 801 label_copy_same_as_target: Same as target
802 802 label_display_used_statuses_only: Only display statuses that are used by this tracker
803 803 label_api_access_key: API access key
804 804 label_missing_api_access_key: Missing an API access key
805 805 label_api_access_key_created_on: "API access key created %{value} ago"
806 806 label_profile: Profile
807 807 label_subtask_plural: Subtasks
808 808 label_project_copy_notifications: Send email notifications during the project copy
809 809 label_principal_search: "Search for user or group:"
810 810 label_user_search: "Search for user:"
811 811
812 812 button_login: Login
813 813 button_submit: Submit
814 814 button_save: Save
815 815 button_check_all: Check all
816 816 button_uncheck_all: Uncheck all
817 817 button_collapse_all: Collapse all
818 818 button_expand_all: Expand all
819 819 button_delete: Delete
820 820 button_create: Create
821 821 button_create_and_continue: Create and continue
822 822 button_test: Test
823 823 button_edit: Edit
824 824 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
825 825 button_add: Add
826 826 button_change: Change
827 827 button_apply: Apply
828 828 button_clear: Clear
829 829 button_lock: Lock
830 830 button_unlock: Unlock
831 831 button_download: Download
832 832 button_list: List
833 833 button_view: View
834 834 button_move: Move
835 835 button_move_and_follow: Move and follow
836 836 button_back: Back
837 837 button_cancel: Cancel
838 838 button_activate: Activate
839 839 button_sort: Sort
840 840 button_log_time: Log time
841 841 button_rollback: Rollback to this version
842 842 button_watch: Watch
843 843 button_unwatch: Unwatch
844 844 button_reply: Reply
845 845 button_archive: Archive
846 846 button_unarchive: Unarchive
847 847 button_reset: Reset
848 848 button_rename: Rename
849 849 button_change_password: Change password
850 850 button_copy: Copy
851 851 button_copy_and_follow: Copy and follow
852 852 button_annotate: Annotate
853 853 button_update: Update
854 854 button_configure: Configure
855 855 button_quote: Quote
856 856 button_duplicate: Duplicate
857 857 button_show: Show
858 858
859 859 status_active: active
860 860 status_registered: registered
861 861 status_locked: locked
862 862
863 863 version_status_open: open
864 864 version_status_locked: locked
865 865 version_status_closed: closed
866 866
867 867 field_active: Active
868 868
869 869 text_select_mail_notifications: Select actions for which email notifications should be sent.
870 870 text_regexp_info: eg. ^[A-Z0-9]+$
871 871 text_min_max_length_info: 0 means no restriction
872 872 text_project_destroy_confirmation: Are you sure you want to delete this project and related data?
873 873 text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted."
874 874 text_workflow_edit: Select a role and a tracker to edit the workflow
875 875 text_are_you_sure: Are you sure?
876 876 text_are_you_sure_with_children: "Delete issue and all child issues?"
877 877 text_journal_changed: "%{label} changed from %{old} to %{new}"
878 878 text_journal_changed_no_detail: "%{label} updated"
879 879 text_journal_set_to: "%{label} set to %{value}"
880 880 text_journal_deleted: "%{label} deleted (%{old})"
881 881 text_journal_added: "%{label} %{value} added"
882 882 text_tip_issue_begin_day: task beginning this day
883 883 text_tip_issue_end_day: task ending this day
884 884 text_tip_issue_begin_end_day: task beginning and ending this day
885 885 text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.'
886 886 text_caracters_maximum: "%{count} characters maximum."
887 887 text_caracters_minimum: "Must be at least %{count} characters long."
888 888 text_length_between: "Length between %{min} and %{max} characters."
889 889 text_tracker_no_workflow: No workflow defined for this tracker
890 890 text_unallowed_characters: Unallowed characters
891 891 text_comma_separated: Multiple values allowed (comma separated).
892 892 text_line_separated: Multiple values allowed (one line for each value).
893 893 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
894 894 text_issue_added: "Issue %{id} has been reported by %{author}."
895 895 text_issue_updated: "Issue %{id} has been updated by %{author}."
896 896 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content?
897 897 text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?"
898 898 text_issue_category_destroy_assignments: Remove category assignments
899 899 text_issue_category_reassign_to: Reassign issues to this category
900 900 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)."
901 901 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."
902 902 text_load_default_configuration: Load the default configuration
903 903 text_status_changed_by_changeset: "Applied in changeset %{value}."
904 904 text_time_logged_by_changeset: "Applied in changeset %{value}."
905 905 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?'
906 906 text_select_project_modules: 'Select modules to enable for this project:'
907 907 text_default_administrator_account_changed: Default administrator account changed
908 908 text_file_repository_writable: Attachments directory writable
909 909 text_plugin_assets_writable: Plugin assets directory writable
910 910 text_rmagick_available: RMagick available (optional)
911 911 text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?"
912 912 text_destroy_time_entries: Delete reported hours
913 913 text_assign_time_entries_to_project: Assign reported hours to the project
914 914 text_reassign_time_entries: 'Reassign reported hours to this issue:'
915 915 text_user_wrote: "%{value} wrote:"
916 916 text_enumeration_destroy_question: "%{count} objects are assigned to this value."
917 917 text_enumeration_category_reassign_to: 'Reassign them to this value:'
918 918 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."
919 919 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."
920 920 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
921 921 text_custom_field_possible_values_info: 'One line for each value'
922 922 text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?"
923 923 text_wiki_page_nullify_children: "Keep child pages as root pages"
924 924 text_wiki_page_destroy_children: "Delete child pages and all their descendants"
925 925 text_wiki_page_reassign_children: "Reassign child pages to this parent page"
926 926 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?"
927 927 text_zoom_in: Zoom in
928 928 text_zoom_out: Zoom out
929 929 text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page."
930 930
931 931 default_role_manager: Manager
932 932 default_role_developer: Developer
933 933 default_role_reporter: Reporter
934 934 default_tracker_bug: Bug
935 935 default_tracker_feature: Feature
936 936 default_tracker_support: Support
937 937 default_issue_status_new: New
938 938 default_issue_status_in_progress: In Progress
939 939 default_issue_status_resolved: Resolved
940 940 default_issue_status_feedback: Feedback
941 941 default_issue_status_closed: Closed
942 942 default_issue_status_rejected: Rejected
943 943 default_doc_category_user: User documentation
944 944 default_doc_category_tech: Technical documentation
945 945 default_priority_low: Low
946 946 default_priority_normal: Normal
947 947 default_priority_high: High
948 948 default_priority_urgent: Urgent
949 949 default_priority_immediate: Immediate
950 950 default_activity_design: Design
951 951 default_activity_development: Development
952 952
953 953 enumeration_issue_priorities: Issue priorities
954 954 enumeration_doc_categories: Document categories
955 955 enumeration_activities: Activities (time tracking)
956 956 enumeration_system_activity: System Activity
957 957 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
958 958 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
959 959 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
960 960 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
961 961 label_issue_note_added: Note added
962 962 label_issue_status_updated: Status updated
963 963 label_issue_priority_updated: Priority updated
964 964 label_issues_visibility_own: Issues created by or assigned to the user
965 965 field_issues_visibility: Issues visibility
966 966 label_issues_visibility_all: All issues
967 967 permission_set_own_issues_private: Set own issues public or private
968 968 field_is_private: Private
969 969 permission_set_issues_private: Set issues public or private
970 970 label_issues_visibility_public: All non private issues
971 971 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
972 972 field_commit_logs_encoding: Commit messages encoding
973 973 field_scm_path_encoding: Path encoding
974 974 text_scm_path_encoding_note: "Default: UTF-8"
975 975 field_path_to_repository: Path to repository
976 976 field_root_directory: Root directory
977 977 field_cvs_module: Module
978 978 field_cvsroot: CVSROOT
979 979 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
980 980 text_scm_command: Command
981 981 text_scm_command_version: Version
982 982 label_git_report_last_commit: Report last commit for files and directories
983 983 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
984 984 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
985 985 notice_issue_successful_create: Issue %{id} created.
986 986 label_between: between
987 987 label_diff: diff
988 988 text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
989 989 description_query_sort_criteria_direction: Sort direction
990 990 description_project_scope: Search scope
991 991 description_filter: Filter
992 992 description_user_mail_notification: Mail notification settings
993 993 description_date_from: Enter start date
994 994 description_message_content: Message content
995 995 description_available_columns: Available Columns
996 996 description_date_range_interval: Choose range by selecting start and end date
997 997 description_issue_category_reassign: Choose issue category
998 998 description_search: Searchfield
999 999 description_notes: Notes
1000 1000 description_date_range_list: Choose range from list
1001 1001 description_choose_project: Projects
1002 1002 description_date_to: Enter end date
1003 1003 description_query_sort_criteria_attribute: Sort attribute
1004 1004 description_wiki_subpages_reassign: Choose new parent page
1005 1005 description_selected_columns: Selected Columns
1006 1006 label_parent_revision: Parent
1007 1007 label_child_revision: Child
1008 1008 button_edit_section: Edit this section
1009 1009 setting_repositories_encodings: Attachments and repositories encodings
1010 1010 description_all_columns: All Columns
1011 1011 button_export: Export
1012 1012 label_export_options: "%{export_format} export options"
1013 1013 error_attachment_too_big: This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})
1014 1014 notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
1015 1015 label_x_issues:
1016 1016 zero: 0 issue
1017 1017 one: 1 issue
1018 1018 other: "%{count} issues"
1019 1019 label_repository_new: New repository
1020 1020 field_repository_is_default: Main repository
1021 1021 label_copy_attachments: Copy attachments
1022 1022 label_item_position: "%{position} of %{count}"
1023 1023 label_completed_versions: Completed versions
1024 1024 field_multiple: Multiple values
1025 1025 setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
1026 1026 text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
1027 1027 text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
1028 1028 notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
1029 1029 text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
1030 1030 permission_manage_related_issues: Manage related issues
1031 1031 field_ldap_filter: LDAP filter
1032 1032 label_search_for_watchers: Search for watchers to add
1033 1033 notice_account_deleted: Your account has been permanently deleted.
1034 1034 setting_unsubscribe: Allow users to delete their own account
1035 1035 button_delete_my_account: Delete my account
1036 1036 text_account_destroy_confirmation: |-
1037 1037 Are you sure you want to proceed?
1038 1038 Your account will be permanently deleted, with no way to reactivate it.
1039 1039 error_session_expired: Your session has expired. Please login again.
1040 1040 text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
1041 1041 setting_session_lifetime: Session maximum lifetime
1042 1042 setting_session_timeout: Session inactivity timeout
1043 1043 label_session_expiration: Session expiration
1044 1044 permission_close_project: Close / reopen the project
1045 1045 label_show_closed_projects: View closed projects
1046 1046 button_close: Close
1047 1047 button_reopen: Reopen
1048 1048 project_status_active: active
1049 1049 project_status_closed: closed
1050 1050 project_status_archived: archived
1051 1051 text_project_closed: This project is closed and read-only.
1052 1052 notice_user_successful_create: User %{id} created.
1053 1053 field_core_fields: Standard fields
1054 1054 field_timeout: Timeout (in seconds)
1055 1055 setting_thumbnails_enabled: Display attachment thumbnails
1056 1056 setting_thumbnails_size: Thumbnails size (in pixels)
1057 label_status_transitions: Status transitions
1058 label_fields_permissions: Fields permissions
1059 label_readonly: Read-only
1060 label_required: Required
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now