##// END OF EJS Templates
fix erroneous string starting with '%' in locale yamls (#8209)....
Toshi MARUYAMA -
r5389:031af3277083
parent child
Show More

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

@@ -1,964 +1,964
1 1 bg:
2 2 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
3 3 direction: ltr
4 4 date:
5 5 formats:
6 6 # Use the strftime parameters for formats.
7 7 # When no format has been given, it uses default.
8 8 # You can provide other formats here if you like!
9 9 default: "%d-%m-%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 - :year
22 22 - :month
23 23 - :day
24 24
25 25 time:
26 26 formats:
27 27 default: "%a, %d %b %Y %H:%M:%S %z"
28 28 time: "%H:%M"
29 29 short: "%d %b %H:%M"
30 30 long: "%B %d, %Y %H:%M"
31 31 am: "am"
32 32 pm: "pm"
33 33
34 34 datetime:
35 35 distance_in_words:
36 36 half_a_minute: "half a minute"
37 37 less_than_x_seconds:
38 38 one: "по-малко от 1 секунда"
39 39 other: "по-малко от %{count} секунди"
40 40 x_seconds:
41 41 one: "1 секунда"
42 42 other: "%{count} секунди"
43 43 less_than_x_minutes:
44 44 one: "по-малко от 1 минута"
45 45 other: "по-малко от %{count} минути"
46 46 x_minutes:
47 47 one: "1 минута"
48 48 other: "%{count} минути"
49 49 about_x_hours:
50 50 one: "около 1 час"
51 51 other: "около %{count} часа"
52 52 x_days:
53 53 one: "1 ден"
54 54 other: "%{count} дена"
55 55 about_x_months:
56 56 one: "около 1 месец"
57 57 other: "около %{count} месеца"
58 58 x_months:
59 59 one: "1 месец"
60 60 other: "%{count} месеца"
61 61 about_x_years:
62 62 one: "около 1 година"
63 63 other: "около %{count} години"
64 64 over_x_years:
65 65 one: "над 1 година"
66 66 other: "над %{count} години"
67 67 almost_x_years:
68 68 one: "почти 1 година"
69 69 other: "почти %{count} години"
70 70
71 71 number:
72 72 # Default format for numbers
73 73 format:
74 74 separator: "."
75 75 delimiter: ""
76 76 precision: 3
77 77 human:
78 78 format:
79 79 precision: 1
80 80 delimiter: ""
81 81 storage_units:
82 82 format: "%n %u"
83 83 units:
84 84 byte:
85 85 one: Byte
86 86 other: Bytes
87 87 kb: "KB"
88 88 mb: "MB"
89 89 gb: "GB"
90 90 tb: "TB"
91 91
92 92
93 93 # Used in array.to_sentence.
94 94 support:
95 95 array:
96 96 sentence_connector: "и"
97 97 skip_last_comma: false
98 98
99 99 activerecord:
100 100 errors:
101 101 template:
102 102 header:
103 103 one: "1 грешка попречи този %{model} да бъде записан"
104 104 other: "%{count} грешки попречиха този %{model} да бъде записан"
105 105 messages:
106 106 inclusion: "не съществува в списъка"
107 107 exclusion: запазено"
108 108 invalid: невалидно"
109 109 confirmation: "липсва одобрение"
110 110 accepted: "трябва да се приеме"
111 111 empty: "не може да е празно"
112 112 blank: "не може да е празно"
113 113 too_long: прекалено дълго"
114 114 too_short: прекалено късо"
115 115 wrong_length: с грешна дължина"
116 116 taken: "вече съществува"
117 117 not_a_number: "не е число"
118 118 not_a_date: невалидна дата"
119 119 greater_than: "трябва да бъде по-голям[a/о] от %{count}"
120 120 greater_than_or_equal_to: "трябва да бъде по-голям[a/о] от или равен[a/o] на %{count}"
121 121 equal_to: "трябва да бъде равен[a/o] на %{count}"
122 122 less_than: "трябва да бъде по-малък[a/o] от %{count}"
123 123 less_than_or_equal_to: "трябва да бъде по-малък[a/o] от или равен[a/o] на %{count}"
124 124 odd: "трябва да бъде нечетен[a/o]"
125 125 even: "трябва да бъде четен[a/o]"
126 126 greater_than_start_date: "трябва да е след началната дата"
127 127 not_same_project: "не е от същия проект"
128 128 circular_dependency: "Тази релация ще доведе до безкрайна зависимост"
129 129 cant_link_an_issue_with_a_descendant: "Една задача не може да бъде свързвана към своя подзадача"
130 130
131 131 actionview_instancetag_blank_option: Изберете
132 132
133 133 general_text_No: 'Не'
134 134 general_text_Yes: 'Да'
135 135 general_text_no: 'не'
136 136 general_text_yes: 'да'
137 137 general_lang_name: 'Bulgarian (Български)'
138 138 general_csv_separator: ','
139 139 general_csv_decimal_separator: '.'
140 140 general_csv_encoding: UTF-8
141 141 general_pdf_encoding: UTF-8
142 142 general_first_day_of_week: '1'
143 143
144 144 notice_account_updated: Профилът е обновен успешно.
145 145 notice_account_invalid_creditentials: Невалиден потребител или парола.
146 146 notice_account_password_updated: Паролата е успешно променена.
147 147 notice_account_wrong_password: Грешна парола
148 148 notice_account_register_done: Профилът е създаден успешно.
149 149 notice_account_unknown_email: Непознат e-mail.
150 150 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
151 151 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
152 152 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
153 153 notice_successful_create: Успешно създаване.
154 154 notice_successful_update: Успешно обновяване.
155 155 notice_successful_delete: Успешно изтриване.
156 156 notice_successful_connection: Успешно свързване.
157 157 notice_file_not_found: Несъществуваща или преместена страница.
158 158 notice_locking_conflict: Друг потребител променя тези данни в момента.
159 159 notice_not_authorized: Нямате право на достъп до тази страница.
160 160 notice_not_authorized_archived_project: Проектът, който се опитвате да видите е архивиран.
161 161 notice_email_sent: "Изпратен e-mail на %{value}"
162 162 notice_email_error: "Грешка при изпращане на e-mail (%{value})"
163 163 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
164 164 notice_api_access_key_reseted: Вашият API ключ за достъп беше изчистен.
165 165 notice_failed_to_save_issues: "Неуспешен запис на %{count} задачи от %{total} избрани: %{ids}."
166 166 notice_failed_to_save_members: "Невъзможност за запис на член(ове): %{errors}."
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 notice_unable_delete_time_entry: Невъзможност за изтриване на запис на time log.
172 172 notice_issue_done_ratios_updated: Обновен процент на завършените задачи.
173 173 notice_gantt_chart_truncated: Мрежовият график е съкратен, понеже броят на обектите, които могат да бъдат показани е твърде голям (%{max})
174 174
175 175 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %{value}"
176 176 error_scm_not_found: Несъществуващ обект в хранилището.
177 177 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %{value}"
178 178 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
179 179 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
180 180 error_no_tracker_in_project: Няма асоциирани тракери с този проект. Проверете настройките на проекта.
181 181 error_no_default_issue_status: Няма установено подразбиращо се състояние за задачите. Моля проверете вашата конфигурация (Вижте "Администрация -> Състояния на задачи").
182 182 error_can_not_delete_custom_field: Невъзможност за изтриване на потребителско поле
183 183 error_can_not_delete_tracker: Този тракер съдържа задачи и не може да бъде изтрит.
184 184 error_can_not_remove_role: Тази роля се използва и не може да бъде изтрита.
185 185 error_can_not_reopen_issue_on_closed_version: Задача, асоциирана със затворена версия не може да бъде отворена отново
186 186 error_can_not_archive_project: Този проект не може да бъде архивиран
187 187 error_issue_done_ratios_not_updated: Процентът на завършените задачи не е обновен.
188 188 error_workflow_copy_source: Моля изберете source тракер или роля
189 189 error_workflow_copy_target: Моля изберете тракер(и) и роля (роли).
190 190 error_unable_delete_issue_status: Невъзможност за изтриване на състояние на задача
191 191 error_unable_to_connect: Невъзможност за свързване с (%{value})
192 192 warning_attachments_not_saved: "%{count} файла не бяха записани."
193 193
194 194 mail_subject_lost_password: "Вашата парола (%{value})"
195 195 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
196 196 mail_subject_register: "Активация на профил (%{value})"
197 197 mail_body_register: 'За да активирате профила си използвайте следния линк:'
198 198 mail_body_account_information_external: "Можете да използвате вашия %{value} профил за вход."
199 199 mail_body_account_information: Информацията за профила ви
200 200 mail_subject_account_activation_request: "Заявка за активиране на профил в %{value}"
201 201 mail_body_account_activation_request: "Има новорегистриран потребител (%{value}), очакващ вашето одобрение:"
202 202 mail_subject_reminder: "%{count} задачи с краен срок с следващите %{days} дни"
203 203 mail_body_reminder: "%{count} задачи, назначени на вас са с краен срок в следващите %{days} дни:"
204 204 mail_subject_wiki_content_added: "Wiki страницата '%{id}' беше добавена"
205 205 mail_body_wiki_content_added: Wiki страницата '%{id}' беше добавена от %{author}.
206 206 mail_subject_wiki_content_updated: "Wiki страницата '%{id}' не беше обновена"
207 207 mail_body_wiki_content_updated: Wiki страницата '%{id}' беше обновена от %{author}.
208 208
209 209 gui_validation_error: 1 грешка
210 210 gui_validation_error_plural: "%{count} грешки"
211 211
212 212 field_name: Име
213 213 field_description: Описание
214 214 field_summary: Анотация
215 215 field_is_required: Задължително
216 216 field_firstname: Име
217 217 field_lastname: Фамилия
218 218 field_mail: Email
219 219 field_filename: Файл
220 220 field_filesize: Големина
221 221 field_downloads: Изтеглени файлове
222 222 field_author: Автор
223 223 field_created_on: От дата
224 224 field_updated_on: Обновена
225 225 field_field_format: Тип
226 226 field_is_for_all: За всички проекти
227 227 field_possible_values: Възможни стойности
228 228 field_regexp: Регулярен израз
229 229 field_min_length: Мин. дължина
230 230 field_max_length: Макс. дължина
231 231 field_value: Стойност
232 232 field_category: Категория
233 233 field_title: Заглавие
234 234 field_project: Проект
235 235 field_issue: Задача
236 236 field_status: Състояние
237 237 field_notes: Бележка
238 238 field_is_closed: Затворена задача
239 239 field_is_default: Състояние по подразбиране
240 240 field_tracker: Тракер
241 241 field_subject: Относно
242 242 field_due_date: Крайна дата
243 243 field_assigned_to: Възложена на
244 244 field_priority: Приоритет
245 245 field_fixed_version: Планувана версия
246 246 field_user: Потребител
247 247 field_principal: Principal
248 248 field_role: Роля
249 249 field_homepage: Начална страница
250 250 field_is_public: Публичен
251 251 field_parent: Подпроект на
252 252 field_is_in_roadmap: Да се вижда ли в Пътна карта
253 253 field_login: Потребител
254 254 field_mail_notification: Известия по пощата
255 255 field_admin: Администратор
256 256 field_last_login_on: Последно свързване
257 257 field_language: Език
258 258 field_effective_date: Дата
259 259 field_password: Парола
260 260 field_new_password: Нова парола
261 261 field_password_confirmation: Потвърждение
262 262 field_version: Версия
263 263 field_type: Тип
264 264 field_host: Хост
265 265 field_port: Порт
266 266 field_account: Профил
267 267 field_base_dn: Base DN
268 268 field_attr_login: Атрибут Login
269 269 field_attr_firstname: Атрибут Първо име (Firstname)
270 270 field_attr_lastname: Атрибут Фамилия (Lastname)
271 271 field_attr_mail: Атрибут Email
272 272 field_onthefly: Динамично създаване на потребител
273 273 field_start_date: Начална дата
274 field_done_ratio: % Прогрес
274 field_done_ratio: "% Прогрес"
275 275 field_auth_source: Начин на оторизация
276 276 field_hide_mail: Скрий e-mail адреса ми
277 277 field_comments: Коментар
278 278 field_url: Адрес
279 279 field_start_page: Начална страница
280 280 field_subproject: Подпроект
281 281 field_hours: Часове
282 282 field_activity: Дейност
283 283 field_spent_on: Дата
284 284 field_identifier: Идентификатор
285 285 field_is_filter: Използва се за филтър
286 286 field_issue_to: Свързана задача
287 287 field_delay: Отместване
288 288 field_assignable: Възможно е възлагане на задачи за тази роля
289 289 field_redirect_existing_links: Пренасочване на съществуващи линкове
290 290 field_estimated_hours: Изчислено време
291 291 field_column_names: Колони
292 292 field_time_entries: Log time
293 293 field_time_zone: Часова зона
294 294 field_searchable: С възможност за търсене
295 295 field_default_value: Стойност по подразбиране
296 296 field_comments_sorting: Сортиране на коментарите
297 297 field_parent_title: Родителска страница
298 298 field_editable: Editable
299 299 field_watcher: Наблюдател
300 300 field_identity_url: OpenID URL
301 301 field_content: Съдържание
302 302 field_group_by: Групиране на резултатите по
303 303 field_sharing: Sharing
304 304 field_parent_issue: Родителска задача
305 305 field_member_of_group: Член на група
306 306 field_assigned_to_role: Assignee's role
307 307 field_text: Текстово поле
308 308 field_visible: Видим
309 309 field_warn_on_leaving_unsaved: Предупреди ме, когато напускам страница с незаписано съдържание
310 310 field_issues_visibility: Видимост на задачите
311 311 field_is_private: Лична
312 312
313 313 setting_app_title: Заглавие
314 314 setting_app_subtitle: Описание
315 315 setting_welcome_text: Допълнителен текст
316 316 setting_default_language: Език по подразбиране
317 317 setting_login_required: Изискване за вход в системата
318 318 setting_self_registration: Регистрация от потребители
319 319 setting_attachment_max_size: Максимална големина на прикачен файл
320 320 setting_issues_export_limit: Максимален брой задачи за експорт
321 321 setting_mail_from: E-mail адрес за емисии
322 322 setting_bcc_recipients: Получатели на скрито копие (bcc)
323 323 setting_plain_text_mail: само чист текст (без HTML)
324 324 setting_host_name: Хост
325 325 setting_text_formatting: Форматиране на текста
326 326 setting_wiki_compression: Wiki компресиране на историята
327 327 setting_feeds_limit: Максимален брой за емисии
328 328 setting_default_projects_public: Новите проекти са публични по подразбиране
329 329 setting_autofetch_changesets: Автоматично обработване на ревизиите
330 330 setting_sys_api_enabled: Разрешаване на WS за управление
331 331 setting_commit_ref_keywords: Отбелязващи ключови думи
332 332 setting_commit_fix_keywords: Приключващи ключови думи
333 333 setting_autologin: Автоматичен вход
334 334 setting_date_format: Формат на датата
335 335 setting_time_format: Формат на часа
336 336 setting_cross_project_issue_relations: Релации на задачи между проекти
337 337 setting_issue_list_default_columns: Показвани колони по подразбиране
338 338 setting_repositories_encodings: Кодови таблици
339 339 setting_commit_logs_encoding: Кодова таблица на съобщенията при поверяване
340 340 setting_emails_header: Emails header
341 341 setting_emails_footer: Подтекст за e-mail
342 342 setting_protocol: Протокол
343 343 setting_per_page_options: Опции за страниране
344 344 setting_user_format: Потребителски формат
345 345 setting_activity_days_default: Брой дни показвани на таб Дейност
346 346 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
347 347 setting_enabled_scm: Разрешена SCM
348 348 setting_mail_handler_body_delimiters: Отрязване на e-mail-ите след един от тези редове
349 349 setting_mail_handler_api_enabled: Разрешаване на WS за входящи e-mail-и
350 350 setting_mail_handler_api_key: API ключ
351 351 setting_sequential_project_identifiers: Генериране на последователни проектни идентификатори
352 352 setting_gravatar_enabled: Използване на портребителски икони от Gravatar
353 353 setting_gravatar_default: Подразбиращо се изображение от Gravatar
354 354 setting_diff_max_lines_displayed: Максимален брой показани diff редове
355 355 setting_file_max_size_displayed: Максимален размер на текстовите файлове, показвани inline
356 356 setting_repository_log_display_limit: Максимален брой на показванете ревизии в лог файла
357 357 setting_openid: Рарешаване на OpenID вход и регистрация
358 358 setting_password_min_length: Минимална дължина на парола
359 359 setting_new_project_user_role_id: Роля, давана на потребител, създаващ проекти, който не е администратор
360 360 setting_default_projects_modules: Активирани модули по подразбиране за нов проект
361 361 setting_issue_done_ratio: Изчисление на процента на готови задачи с
362 362 setting_issue_done_ratio_issue_field: Използване на поле '% Прогрес'
363 363 setting_issue_done_ratio_issue_status: Използване на състоянието на задачите
364 364 setting_start_of_week: Първи ден на седмицата
365 365 setting_rest_api_enabled: Разрешаване на REST web сървис
366 366 setting_cache_formatted_text: Cache formatted text
367 367 setting_default_notification_option: Подразбиращ се начин за известяване
368 368 setting_commit_logtime_enabled: Разрешаване на отчитането на работното време
369 369 setting_commit_logtime_activity_id: Дейност при отчитане на работното време
370 370 setting_gantt_items_limit: Максимален брой обекти, които да се показват в мрежов график
371 371
372 372 permission_add_project: Създаване на проект
373 373 permission_add_subprojects: Създаване на подпроекти
374 374 permission_edit_project: Редактиране на проект
375 375 permission_select_project_modules: Избор на проектни модули
376 376 permission_manage_members: Управление на членовете (на екип)
377 377 permission_manage_project_activities: Управление на дейностите на проекта
378 378 permission_manage_versions: Управление на версиите
379 379 permission_manage_categories: Управление на категориите
380 380 permission_view_issues: Разглеждане на задачите
381 381 permission_add_issues: Добавяне на задачи
382 382 permission_edit_issues: Редактиране на задачи
383 383 permission_manage_issue_relations: Управление на връзките между задачите
384 384 permission_set_own_issues_private: Установяване на собствените задачи публични или лични
385 385 permission_set_issues_private: Установяване на задачите публични или лични
386 386 permission_add_issue_notes: Добавяне на бележки
387 387 permission_edit_issue_notes: Редактиране на бележки
388 388 permission_edit_own_issue_notes: Редактиране на собствени бележки
389 389 permission_move_issues: Преместване на задачи
390 390 permission_delete_issues: Изтриване на задачи
391 391 permission_manage_public_queries: Управление на публичните заявки
392 392 permission_save_queries: Запис на запитвания (queries)
393 393 permission_view_gantt: Разглеждане на мрежов график
394 394 permission_view_calendar: Разглеждане на календари
395 395 permission_view_issue_watchers: Разглеждане на списък с наблюдатели
396 396 permission_add_issue_watchers: Добавяне на наблюдатели
397 397 permission_delete_issue_watchers: Изтриване на наблюдатели
398 398 permission_log_time: Log spent time
399 399 permission_view_time_entries: Разглеждане на изразходваното време
400 400 permission_edit_time_entries: Редактиране на time logs
401 401 permission_edit_own_time_entries: Редактиране на собствените time logs
402 402 permission_manage_news: Управление на новини
403 403 permission_comment_news: Коментиране на новини
404 404 permission_manage_documents: Управление на документи
405 405 permission_view_documents: Разглеждане на документи
406 406 permission_manage_files: Управление на файлове
407 407 permission_view_files: Разглеждане на файлове
408 408 permission_manage_wiki: Управление на wiki
409 409 permission_rename_wiki_pages: Преименуване на wiki страници
410 410 permission_delete_wiki_pages: Изтриване на wiki страници
411 411 permission_view_wiki_pages: Разглеждане на wiki
412 412 permission_view_wiki_edits: Разглеждане на wiki история
413 413 permission_edit_wiki_pages: Редактиране на wiki страници
414 414 permission_delete_wiki_pages_attachments: Изтриване на прикачени файлове към wiki страници
415 415 permission_protect_wiki_pages: Заключване на wiki страници
416 416 permission_manage_repository: Управление на хранилища
417 417 permission_browse_repository: Разглеждане на хранилища
418 418 permission_view_changesets: Разглеждане на changesets
419 419 permission_commit_access: Поверяване
420 420 permission_manage_boards: Управление на boards
421 421 permission_view_messages: Разглеждане на съобщения
422 422 permission_add_messages: Публикуване на съобщения
423 423 permission_edit_messages: Редактиране на съобщения
424 424 permission_edit_own_messages: Редактиране на собствени съобщения
425 425 permission_delete_messages: Изтриване на съобщения
426 426 permission_delete_own_messages: Изтриване на собствени съобщения
427 427 permission_export_wiki_pages: Експорт на wiki страници
428 428 permission_manage_subtasks: Управление на подзадачите
429 429
430 430 project_module_issue_tracking: Тракинг
431 431 project_module_time_tracking: Отделяне на време
432 432 project_module_news: Новини
433 433 project_module_documents: Документи
434 434 project_module_files: Файлове
435 435 project_module_wiki: Wiki
436 436 project_module_repository: Хранилище
437 437 project_module_boards: Форуми
438 438 project_module_calendar: Календар
439 439 project_module_gantt: Мрежов график
440 440
441 441 label_user: Потребител
442 442 label_user_plural: Потребители
443 443 label_user_new: Нов потребител
444 444 label_user_anonymous: Анонимен
445 445 label_project: Проект
446 446 label_project_new: Нов проект
447 447 label_project_plural: Проекти
448 448 label_x_projects:
449 449 zero: 0 проекта
450 450 one: 1 проект
451 451 other: "%{count} проекта"
452 452 label_project_all: Всички проекти
453 453 label_project_latest: Последни проекти
454 454 label_issue: Задача
455 455 label_issue_new: Нова задача
456 456 label_issue_plural: Задачи
457 457 label_issue_view_all: Всички задачи
458 458 label_issues_by: "Задачи по %{value}"
459 459 label_issue_added: Добавена задача
460 460 label_issue_updated: Обновена задача
461 461 label_issue_note_added: Добавена бележка
462 462 label_issue_status_updated: Обновено състояние
463 463 label_issue_priority_updated: Обновен приоритет
464 464 label_document: Документ
465 465 label_document_new: Нов документ
466 466 label_document_plural: Документи
467 467 label_document_added: Добавен документ
468 468 label_role: Роля
469 469 label_role_plural: Роли
470 470 label_role_new: Нова роля
471 471 label_role_and_permissions: Роли и права
472 472 label_role_anonymous: Анонимен
473 473 label_role_non_member: Не член
474 474 label_member: Член
475 475 label_member_new: Нов член
476 476 label_member_plural: Членове
477 477 label_tracker: Тракер
478 478 label_tracker_plural: Тракери
479 479 label_tracker_new: Нов тракер
480 480 label_workflow: Работен процес
481 481 label_issue_status: Състояние на задача
482 482 label_issue_status_plural: Състояния на задачи
483 483 label_issue_status_new: Ново състояние
484 484 label_issue_category: Категория задача
485 485 label_issue_category_plural: Категории задачи
486 486 label_issue_category_new: Нова категория
487 487 label_custom_field: Потребителско поле
488 488 label_custom_field_plural: Потребителски полета
489 489 label_custom_field_new: Ново потребителско поле
490 490 label_enumerations: Списъци
491 491 label_enumeration_new: Нова стойност
492 492 label_information: Информация
493 493 label_information_plural: Информация
494 494 label_please_login: Вход
495 495 label_register: Регистрация
496 496 label_login_with_open_id_option: или вход чрез OpenID
497 497 label_password_lost: Забравена парола
498 498 label_home: Начало
499 499 label_my_page: Лична страница
500 500 label_my_account: Профил
501 501 label_my_projects: Проекти, в които участвам
502 502 label_my_page_block: Блокове в личната страница
503 503 label_administration: Администрация
504 504 label_login: Вход
505 505 label_logout: Изход
506 506 label_help: Помощ
507 507 label_reported_issues: Публикувани задачи
508 508 label_assigned_to_me_issues: Възложени на мен
509 509 label_last_login: Последно свързване
510 510 label_registered_on: Регистрация
511 511 label_activity: Дейност
512 512 label_overall_activity: Цялостна дейност
513 513 label_user_activity: "Активност на %{value}"
514 514 label_new: Нов
515 515 label_logged_as: Здравейте,
516 516 label_environment: Среда
517 517 label_authentication: Оторизация
518 518 label_auth_source: Начин на оторозация
519 519 label_auth_source_new: Нов начин на оторизация
520 520 label_auth_source_plural: Начини на оторизация
521 521 label_subproject_plural: Подпроекти
522 522 label_subproject_new: Нов подпроект
523 523 label_and_its_subprojects: "%{value} и неговите подпроекти"
524 524 label_min_max_length: Минимална - максимална дължина
525 525 label_list: Списък
526 526 label_date: Дата
527 527 label_integer: Целочислен
528 528 label_float: Дробно
529 529 label_boolean: Чекбокс
530 530 label_string: Текст
531 531 label_text: Дълъг текст
532 532 label_attribute: Атрибут
533 533 label_attribute_plural: Атрибути
534 534 label_download: "%{count} изтегляне"
535 535 label_download_plural: "%{count} изтегляния"
536 536 label_no_data: Няма изходни данни
537 537 label_change_status: Промяна на състоянието
538 538 label_history: История
539 539 label_attachment: Файл
540 540 label_attachment_new: Нов файл
541 541 label_attachment_delete: Изтриване
542 542 label_attachment_plural: Файлове
543 543 label_file_added: Добавен файл
544 544 label_report: Справка
545 545 label_report_plural: Справки
546 546 label_news: Новини
547 547 label_news_new: Добави
548 548 label_news_plural: Новини
549 549 label_news_latest: Последни новини
550 550 label_news_view_all: Виж всички
551 551 label_news_added: Добавена новина
552 552 label_news_comment_added: Добавен коментар към новина
553 553 label_settings: Настройки
554 554 label_overview: Общ изглед
555 555 label_version: Версия
556 556 label_version_new: Нова версия
557 557 label_version_plural: Версии
558 558 label_close_versions: Затваряне на завършените версии
559 559 label_confirmation: Одобрение
560 560 label_export_to: Експорт към
561 561 label_read: Read...
562 562 label_public_projects: Публични проекти
563 563 label_open_issues: отворена
564 564 label_open_issues_plural: отворени
565 565 label_closed_issues: затворена
566 566 label_closed_issues_plural: затворени
567 567 label_x_open_issues_abbr_on_total:
568 568 zero: 0 отворени / %{total}
569 569 one: 1 отворена / %{total}
570 570 other: "%{count} отворени / %{total}"
571 571 label_x_open_issues_abbr:
572 572 zero: 0 отворени
573 573 one: 1 отворена
574 574 other: "%{count} отворени"
575 575 label_x_closed_issues_abbr:
576 576 zero: 0 затворени
577 577 one: 1 затворена
578 578 other: "%{count} затворени"
579 579 label_total: Общо
580 580 label_permissions: Права
581 581 label_current_status: Текущо състояние
582 582 label_new_statuses_allowed: Позволени състояния
583 583 label_all: всички
584 584 label_none: никакви
585 585 label_nobody: никой
586 586 label_next: Следващ
587 587 label_previous: Предишен
588 588 label_used_by: Използва се от
589 589 label_details: Детайли
590 590 label_add_note: Добавяне на бележка
591 591 label_per_page: На страница
592 592 label_calendar: Календар
593 593 label_months_from: месеца от
594 594 label_gantt: Мрежов график
595 595 label_internal: Вътрешен
596 596 label_last_changes: "последни %{count} промени"
597 597 label_change_view_all: Виж всички промени
598 598 label_personalize_page: Персонализиране
599 599 label_comment: Коментар
600 600 label_comment_plural: Коментари
601 601 label_x_comments:
602 602 zero: 0 коментари
603 603 one: 1 коментар
604 604 other: "%{count} коментари"
605 605 label_comment_add: Добавяне на коментар
606 606 label_comment_added: Добавен коментар
607 607 label_comment_delete: Изтриване на коментари
608 608 label_query: Потребителска справка
609 609 label_query_plural: Потребителски справки
610 610 label_query_new: Нова заявка
611 611 label_my_queries: Моите заявки
612 612 label_filter_add: Добави филтър
613 613 label_filter_plural: Филтри
614 614 label_equals: е
615 615 label_not_equals: не е
616 616 label_in_less_than: след по-малко от
617 617 label_in_more_than: след повече от
618 618 label_greater_or_equal: ">="
619 619 label_less_or_equal: <=
620 620 label_in: в следващите
621 621 label_today: днес
622 622 label_all_time: всички
623 623 label_yesterday: вчера
624 624 label_this_week: тази седмица
625 625 label_last_week: последната седмица
626 626 label_last_n_days: "последните %{count} дни"
627 627 label_this_month: текущия месец
628 628 label_last_month: последния месец
629 629 label_this_year: текущата година
630 630 label_date_range: Период
631 631 label_less_than_ago: преди по-малко от
632 632 label_more_than_ago: преди повече от
633 633 label_ago: преди
634 634 label_contains: съдържа
635 635 label_not_contains: не съдържа
636 636 label_day_plural: дни
637 637 label_repository: Хранилище
638 638 label_repository_plural: Хранилища
639 639 label_browse: Разглеждане
640 640 label_modification: "%{count} промяна"
641 641 label_modification_plural: "%{count} промени"
642 642 label_branch: работен вариант
643 643 label_tag: Версия
644 644 label_revision: Ревизия
645 645 label_revision_plural: Ревизии
646 646 label_revision_id: Ревизия %{value}
647 647 label_associated_revisions: Асоциирани ревизии
648 648 label_added: добавено
649 649 label_modified: променено
650 650 label_copied: копирано
651 651 label_renamed: преименувано
652 652 label_deleted: изтрито
653 653 label_latest_revision: Последна ревизия
654 654 label_latest_revision_plural: Последни ревизии
655 655 label_view_revisions: Виж ревизиите
656 656 label_view_all_revisions: Разглеждане на всички ревизии
657 657 label_max_size: Максимална големина
658 658 label_sort_highest: Премести най-горе
659 659 label_sort_higher: Премести по-горе
660 660 label_sort_lower: Премести по-долу
661 661 label_sort_lowest: Премести най-долу
662 662 label_roadmap: Пътна карта
663 663 label_roadmap_due_in: "Излиза след %{value}"
664 664 label_roadmap_overdue: "%{value} закъснение"
665 665 label_roadmap_no_issues: Няма задачи за тази версия
666 666 label_search: Търсене
667 667 label_result_plural: Pезултати
668 668 label_all_words: Всички думи
669 669 label_wiki: Wiki
670 670 label_wiki_edit: Wiki редакция
671 671 label_wiki_edit_plural: Wiki редакции
672 672 label_wiki_page: Wiki страница
673 673 label_wiki_page_plural: Wiki страници
674 674 label_index_by_title: Индекс
675 675 label_index_by_date: Индекс по дата
676 676 label_current_version: Текуща версия
677 677 label_preview: Преглед
678 678 label_feed_plural: Емисии
679 679 label_changes_details: Подробни промени
680 680 label_issue_tracking: Тракинг
681 681 label_spent_time: Отделено време
682 682 label_overall_spent_time: Общо употребено време
683 683 label_f_hour: "%{value} час"
684 684 label_f_hour_plural: "%{value} часа"
685 685 label_time_tracking: Отделяне на време
686 686 label_change_plural: Промени
687 687 label_statistics: Статистики
688 688 label_commits_per_month: Ревизии по месеци
689 689 label_commits_per_author: Ревизии по автор
690 690 label_view_diff: Виж разликите
691 691 label_diff_inline: хоризонтално
692 692 label_diff_side_by_side: вертикално
693 693 label_options: Опции
694 694 label_copy_workflow_from: Копирай работния процес от
695 695 label_permissions_report: Справка за права
696 696 label_watched_issues: Наблюдавани задачи
697 697 label_related_issues: Свързани задачи
698 698 label_applied_status: Установено състояние
699 699 label_loading: Зареждане...
700 700 label_relation_new: Нова релация
701 701 label_relation_delete: Изтриване на релация
702 702 label_relates_to: свързана със
703 703 label_duplicates: дублира
704 704 label_duplicated_by: дублирана от
705 705 label_blocks: блокира
706 706 label_blocked_by: блокирана от
707 707 label_precedes: предшества
708 708 label_follows: изпълнява се след
709 709 label_end_to_start: край към начало
710 710 label_end_to_end: край към край
711 711 label_start_to_start: начало към начало
712 712 label_start_to_end: начало към край
713 713 label_stay_logged_in: Запомни ме
714 714 label_disabled: забранено
715 715 label_show_completed_versions: Показване на реализирани версии
716 716 label_me: аз
717 717 label_board: Форум
718 718 label_board_new: Нов форум
719 719 label_board_plural: Форуми
720 720 label_board_locked: Заключена
721 721 label_board_sticky: Sticky
722 722 label_topic_plural: Теми
723 723 label_message_plural: Съобщения
724 724 label_message_last: Последно съобщение
725 725 label_message_new: Нова тема
726 726 label_message_posted: Добавено съобщение
727 727 label_reply_plural: Отговори
728 728 label_send_information: Изпращане на информацията до потребителя
729 729 label_year: Година
730 730 label_month: Месец
731 731 label_week: Седмица
732 732 label_date_from: От
733 733 label_date_to: До
734 734 label_language_based: В зависимост от езика
735 735 label_sort_by: "Сортиране по %{value}"
736 736 label_send_test_email: Изпращане на тестов e-mail
737 737 label_feeds_access_key: RSS access ключ
738 738 label_missing_feeds_access_key: Липсващ RSS ключ за достъп
739 739 label_feeds_access_key_created_on: "%{value} от създаването на RSS ключа"
740 740 label_module_plural: Модули
741 741 label_added_time_by: "Публикувана от %{author} преди %{age}"
742 742 label_updated_time_by: "Обновена от %{author} преди %{age}"
743 743 label_updated_time: "Обновена преди %{value}"
744 744 label_jump_to_a_project: Проект...
745 745 label_file_plural: Файлове
746 746 label_changeset_plural: Ревизии
747 747 label_default_columns: По подразбиране
748 748 label_no_change_option: (Без промяна)
749 749 label_bulk_edit_selected_issues: Групово редактиране на задачи
750 750 label_bulk_edit_selected_time_entries: Групово редактиране на записи за използвано време
751 751 label_theme: Тема
752 752 label_default: По подразбиране
753 753 label_search_titles_only: Само в заглавията
754 754 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
755 755 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
756 756 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
757 757 label_user_mail_option_only_my_events: Само за неща, в които съм включен/а
758 758 label_user_mail_option_only_assigned: Само за неща, назначени на мен
759 759 label_user_mail_option_only_owner: Само за неща, на които аз съм собственик
760 760 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
761 761 label_registration_activation_by_email: активиране на профила по email
762 762 label_registration_manual_activation: ръчно активиране
763 763 label_registration_automatic_activation: автоматично активиране
764 764 label_display_per_page: "На страница по: %{value}"
765 765 label_age: Възраст
766 766 label_change_properties: Промяна на настройки
767 767 label_general: Основни
768 768 label_more: Още
769 769 label_scm: SCM (Система за контрол на версиите)
770 770 label_plugins: Плъгини
771 771 label_ldap_authentication: LDAP оторизация
772 772 label_downloads_abbr: D/L
773 773 label_optional_description: Незадължително описание
774 774 label_add_another_file: Добавяне на друг файл
775 775 label_preferences: Предпочитания
776 776 label_chronological_order: Хронологичен ред
777 777 label_reverse_chronological_order: Обратен хронологичен ред
778 778 label_planning: Планиране
779 779 label_incoming_emails: Входящи e-mail-и
780 780 label_generate_key: Генериране на ключ
781 781 label_issue_watchers: Наблюдатели
782 782 label_example: Пример
783 783 label_display: Display
784 784 label_sort: Сортиране
785 785 label_ascending: Нарастващ
786 786 label_descending: Намаляващ
787 787 label_date_from_to: От %{start} до %{end}
788 788 label_wiki_content_added: Wiki страница беше добавена
789 789 label_wiki_content_updated: Wiki страница беше обновена
790 790 label_group: Група
791 791 label_group_plural: Групи
792 792 label_group_new: Нова група
793 793 label_time_entry_plural: Използвано време
794 794 label_version_sharing_none: Не споделен
795 795 label_version_sharing_descendants: С подпроекти
796 796 label_version_sharing_hierarchy: С проектна йерархия
797 797 label_version_sharing_tree: С дърво на проектите
798 798 label_version_sharing_system: С всички проекти
799 799 label_update_issue_done_ratios: Обновяване на процента на завършените задачи
800 800 label_copy_source: Източник
801 801 label_copy_target: Цел
802 802 label_copy_same_as_target: Също като целта
803 803 label_display_used_statuses_only: Показване само на състоянията, използвани от този тракер
804 804 label_api_access_key: API ключ за достъп
805 805 label_missing_api_access_key: Липсващ API ключ
806 806 label_api_access_key_created_on: API ключ за достъп е създаден преди %{value}
807 807 label_profile: Профил
808 808 label_subtask_plural: Подзадачи
809 809 label_project_copy_notifications: Изпращане на Send e-mail известия по време на копирането на проекта
810 810 label_principal_search: "Търсене на потребител или група:"
811 811 label_user_search: "Търсене на потребител:"
812 812 label_additional_workflow_transitions_for_author: Позволени са допълнителни преходи, когато потребителят е авторът
813 813 label_additional_workflow_transitions_for_assignee: Позволени са допълнителни преходи, когато потребителят е назначеният към задачата
814 814 label_issues_visibility_all: Всички задачи
815 815 label_issues_visibility_public: Всички не-лични задачи
816 816 label_issues_visibility_own: Задачи, създадени от или назначени на потребителя
817 817
818 818 button_login: Вход
819 819 button_submit: Прикачване
820 820 button_save: Запис
821 821 button_check_all: Избор на всички
822 822 button_uncheck_all: Изчистване на всички
823 823 button_collapse_all: Скриване всички
824 824 button_expand_all: Разгъване всички
825 825 button_delete: Изтриване
826 826 button_create: Създаване
827 827 button_create_and_continue: Създаване и продължаване
828 828 button_test: Тест
829 829 button_edit: Редакция
830 830 button_edit_associated_wikipage: "Редактиране на асоциираната Wiki страница: %{page_title}"
831 831 button_add: Добавяне
832 832 button_change: Промяна
833 833 button_apply: Приложи
834 834 button_clear: Изчисти
835 835 button_lock: Заключване
836 836 button_unlock: Отключване
837 837 button_download: Изтегляне
838 838 button_list: Списък
839 839 button_view: Преглед
840 840 button_move: Преместване
841 841 button_move_and_follow: Преместване и продължаване
842 842 button_back: Назад
843 843 button_cancel: Отказ
844 844 button_activate: Активация
845 845 button_sort: Сортиране
846 846 button_log_time: Отделяне на време
847 847 button_rollback: Върни се към тази ревизия
848 848 button_watch: Наблюдаване
849 849 button_unwatch: Край на наблюдението
850 850 button_reply: Отговор
851 851 button_archive: Архивиране
852 852 button_unarchive: Разархивиране
853 853 button_reset: Генериране наново
854 854 button_rename: Преименуване
855 855 button_change_password: Промяна на парола
856 856 button_copy: Копиране
857 857 button_copy_and_follow: Копиране и продължаване
858 858 button_annotate: Анотация
859 859 button_update: Обновяване
860 860 button_configure: Конфигуриране
861 861 button_quote: Цитат
862 862 button_duplicate: Дублиране
863 863 button_show: Показване
864 864
865 865 status_active: активен
866 866 status_registered: регистриран
867 867 status_locked: заключен
868 868
869 869 version_status_open: отворена
870 870 version_status_locked: заключена
871 871 version_status_closed: затворена
872 872
873 873 field_active: Активен
874 874
875 875 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
876 876 text_regexp_info: пр. ^[A-Z0-9]+$
877 877 text_min_max_length_info: 0 - без ограничения
878 878 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
879 879 text_subprojects_destroy_warning: "Неговите подпроекти: %{value} също ще бъдат изтрити."
880 880 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
881 881 text_are_you_sure: Сигурни ли сте?
882 882 text_are_you_sure_with_children: Изтриване на задачата и нейните подзадачи?
883 883 text_journal_changed: "%{label} променен от %{old} на %{new}"
884 884 text_journal_changed_no_detail: "%{label} променен"
885 885 text_journal_set_to: "%{label} установен на %{value}"
886 886 text_journal_deleted: "%{label} изтрит (%{old})"
887 887 text_journal_added: "Добавено %{label} %{value}"
888 888 text_tip_issue_begin_day: задача, започваща този ден
889 889 text_tip_issue_end_day: задача, завършваща този ден
890 890 text_tip_issue_begin_end_day: задача, започваща и завършваща този ден
891 891 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
892 892 text_caracters_maximum: "До %{count} символа."
893 893 text_caracters_minimum: "Минимум %{count} символа."
894 894 text_length_between: "От %{min} до %{max} символа."
895 895 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
896 896 text_unallowed_characters: Непозволени символи
897 897 text_comma_separated: Позволено е изброяване (с разделител запетая).
898 898 text_line_separated: Позволени са много стойности (по едно на ред).
899 899 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
900 900 text_issue_added: "Публикувана е нова задача с номер %{id} (от %{author})."
901 901 text_issue_updated: "Задача %{id} е обновена (от %{author})."
902 902 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
903 903 text_issue_category_destroy_question: "Има задачи (%{count}) обвързани с тази категория. Какво ще изберете?"
904 904 text_issue_category_destroy_assignments: Премахване на връзките с категорията
905 905 text_issue_category_reassign_to: Преобвързване с категория
906 906 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
907 907 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, състояния на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
908 908 text_load_default_configuration: Зареждане на примерна информация
909 909 text_status_changed_by_changeset: "Приложено с ревизия %{value}."
910 910 text_time_logged_by_changeset: Приложено в ревизия %{value}.
911 911 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
912 912 text_issues_destroy_descendants_confirmation: Тази операция ще премахне и %{count} подзадача(и).
913 913 text_time_entries_destroy_confirmation: Сигурен ли сте, че изтриете избраните записи за изразходвано време?
914 914 text_select_project_modules: 'Изберете активните модули за този проект:'
915 915 text_default_administrator_account_changed: Сменен фабричния администраторски профил
916 916 text_file_repository_writable: Възможност за писане в хранилището с файлове
917 917 text_plugin_assets_writable: Папката на приставките е разрешена за запис
918 918 text_rmagick_available: Наличен RMagick (по избор)
919 919 text_destroy_time_entries_question: "%{hours} часа са отделени на задачите, които искате да изтриете. Какво избирате?"
920 920 text_destroy_time_entries: Изтриване на отделеното време
921 921 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
922 922 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
923 923 text_user_wrote: "%{value} написа:"
924 924 text_enumeration_destroy_question: "%{count} обекта са свързани с тази стойност."
925 925 text_enumeration_category_reassign_to: 'Пресвържете ги към тази стойност:'
926 926 text_email_delivery_not_configured: "Изпращането на e-mail-и не е конфигурирано и известията не са разрешени.\nКонфигурирайте вашия SMTP сървър в config/configuration.yml и рестартирайте Redmine, за да ги разрешите."
927 927 text_repository_usernames_mapping: "Изберете или променете потребителите в Redmine, съответстващи на потребителите в дневника на хранилището (repository).\nПотребителите с еднакви имена в Redmine и хранилищата се съвместяват автоматично."
928 928 text_diff_truncated: '... Този diff не е пълен, понеже е надхвърля максималния размер, който може да бъде показан.'
929 929 text_custom_field_possible_values_info: 'Една стойност на ред'
930 930 text_wiki_page_destroy_question: Тази страница има %{descendants} страници деца и descendant(s). Какво желаете да правите?
931 931 text_wiki_page_nullify_children: Запазване на тези страници като коренни страници
932 932 text_wiki_page_destroy_children: Изтриване на страниците деца и всички техни descendants
933 933 text_wiki_page_reassign_children: Преназначаване на страниците деца на тази родителска страница
934 934 text_own_membership_delete_confirmation: "Вие сте на път да премахнете някои или всички ваши разрешения и е възможно след това да не можете да редактирате този проект.\nСигурен ли сте, че искате да продължите?"
935 935 text_zoom_in: Увеличаване
936 936 text_zoom_out: Намаляване
937 937 text_warn_on_leaving_unsaved: Страницата съдържа незаписано съдържание, което може да бъде загубено, ако я напуснете.
938 938
939 939 default_role_manager: Мениджър
940 940 default_role_developer: Разработчик
941 941 default_role_reporter: Публикуващ
942 942 default_tracker_bug: Грешка
943 943 default_tracker_feature: Функционалност
944 944 default_tracker_support: Поддръжка
945 945 default_issue_status_new: Нова
946 946 default_issue_status_in_progress: Изпълнение
947 947 default_issue_status_resolved: Приключена
948 948 default_issue_status_feedback: Обратна връзка
949 949 default_issue_status_closed: Затворена
950 950 default_issue_status_rejected: Отхвърлена
951 951 default_doc_category_user: Документация за потребителя
952 952 default_doc_category_tech: Техническа документация
953 953 default_priority_low: Нисък
954 954 default_priority_normal: Нормален
955 955 default_priority_high: Висок
956 956 default_priority_urgent: Спешен
957 957 default_priority_immediate: Веднага
958 958 default_activity_design: Дизайн
959 959 default_activity_development: Разработка
960 960
961 961 enumeration_issue_priorities: Приоритети на задачи
962 962 enumeration_doc_categories: Категории документи
963 963 enumeration_activities: Дейности (time tracking)
964 964 enumeration_system_activity: Системна активност
@@ -1,979 +1,979
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_days:
52 52 one: "1 dan"
53 53 other: "%{count} dana"
54 54 about_x_months:
55 55 one: "oko 1 mjesec"
56 56 other: "oko %{count} mjeseci"
57 57 x_months:
58 58 one: "1 mjesec"
59 59 other: "%{count} mjeseci"
60 60 about_x_years:
61 61 one: "oko 1 godine"
62 62 other: "oko %{count} godina"
63 63 over_x_years:
64 64 one: "preko 1 godine"
65 65 other: "preko %{count} godina"
66 66 almost_x_years:
67 67 one: "almost 1 year"
68 68 other: "almost %{count} years"
69 69
70 70
71 71 number:
72 72 format:
73 73 precision: 2
74 74 separator: ','
75 75 delimiter: '.'
76 76 currency:
77 77 format:
78 78 unit: 'KM'
79 79 format: '%u %n'
80 80 separator:
81 81 delimiter:
82 82 precision:
83 83 percentage:
84 84 format:
85 85 delimiter: ""
86 86 precision:
87 87 format:
88 88 delimiter: ""
89 89 human:
90 90 format:
91 91 delimiter: ""
92 92 precision: 1
93 93 storage_units:
94 94 format: "%n %u"
95 95 units:
96 96 byte:
97 97 one: "Byte"
98 98 other: "Bytes"
99 99 kb: "KB"
100 100 mb: "MB"
101 101 gb: "GB"
102 102 tb: "TB"
103 103
104 104 # Used in array.to_sentence.
105 105 support:
106 106 array:
107 107 sentence_connector: "i"
108 108 skip_last_comma: false
109 109
110 110 activerecord:
111 111 errors:
112 112 template:
113 113 header:
114 114 one: "1 error prohibited this %{model} from being saved"
115 115 other: "%{count} errors prohibited this %{model} from being saved"
116 116 messages:
117 117 inclusion: "nije uključeno u listu"
118 118 exclusion: "je rezervisano"
119 119 invalid: "nije ispravno"
120 120 confirmation: "ne odgovara potvrdi"
121 121 accepted: "mora se prihvatiti"
122 122 empty: "ne može biti prazno"
123 123 blank: "ne može biti znak razmaka"
124 124 too_long: "je predugačko"
125 125 too_short: "je prekratko"
126 126 wrong_length: "je pogrešne dužine"
127 127 taken: "već je zauzeto"
128 128 not_a_number: "nije broj"
129 129 not_a_date: "nije ispravan datum"
130 130 greater_than: "mora bit veći od %{count}"
131 131 greater_than_or_equal_to: "mora bit veći ili jednak %{count}"
132 132 equal_to: "mora biti jednak %{count}"
133 133 less_than: "mora biti manji od %{count}"
134 134 less_than_or_equal_to: "mora bit manji ili jednak %{count}"
135 135 odd: "mora biti neparan"
136 136 even: "mora biti paran"
137 137 greater_than_start_date: "mora biti veći nego početni datum"
138 138 not_same_project: "ne pripada istom projektu"
139 139 circular_dependency: "Ova relacija stvar cirkularnu zavisnost"
140 140 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
141 141
142 142 actionview_instancetag_blank_option: Molimo odaberite
143 143
144 144 general_text_No: 'Da'
145 145 general_text_Yes: 'Ne'
146 146 general_text_no: 'ne'
147 147 general_text_yes: 'da'
148 148 general_lang_name: 'Bosanski'
149 149 general_csv_separator: ','
150 150 general_csv_decimal_separator: '.'
151 151 general_csv_encoding: UTF-8
152 152 general_pdf_encoding: UTF-8
153 153 general_first_day_of_week: '7'
154 154
155 155 notice_account_activated: Vaš nalog je aktiviran. Možete se prijaviti.
156 156 notice_account_invalid_creditentials: Pogrešan korisnik ili lozinka
157 157 notice_account_lost_email_sent: Email sa uputstvima o izboru nove šifre je poslat na vašu adresu.
158 158 notice_account_password_updated: Lozinka je uspješno promjenjena.
159 159 notice_account_pending: "Vaš nalog je kreiran i čeka odobrenje administratora."
160 160 notice_account_register_done: Nalog je uspješno kreiran. Da bi ste aktivirali vaš nalog kliknite na link koji vam je poslat.
161 161 notice_account_unknown_email: Nepoznati korisnik.
162 162 notice_account_updated: Nalog je uspješno promjenen.
163 163 notice_account_wrong_password: Pogrešna lozinka
164 164 notice_can_t_change_password: Ovaj nalog koristi eksterni izvor prijavljivanja. Ne mogu da promjenim šifru.
165 165 notice_default_data_loaded: Podrazumjevana konfiguracija uspječno učitana.
166 166 notice_email_error: Došlo je do greške pri slanju emaila (%{value})
167 167 notice_email_sent: "Email je poslan %{value}"
168 168 notice_failed_to_save_issues: "Neuspješno snimanje %{count} aktivnosti na %{total} izabrano: %{ids}."
169 169 notice_feeds_access_key_reseted: Vaš RSS pristup je resetovan.
170 170 notice_file_not_found: Stranica kojoj pokušavate da pristupite ne postoji ili je uklonjena.
171 171 notice_locking_conflict: "Konflikt: podaci su izmjenjeni od strane drugog korisnika."
172 172 notice_no_issue_selected: "Nijedna aktivnost nije izabrana! Molim, izaberite aktivnosti koje želite za ispravljate."
173 173 notice_not_authorized: Niste ovlašćeni da pristupite ovoj stranici.
174 174 notice_successful_connection: Uspješna konekcija.
175 175 notice_successful_create: Uspješno kreiranje.
176 176 notice_successful_delete: Brisanje izvršeno.
177 177 notice_successful_update: Promjene uspješno izvršene.
178 178
179 179 error_can_t_load_default_data: "Podrazumjevane postavke se ne mogu učitati %{value}"
180 180 error_scm_command_failed: "Desila se greška pri pristupu repozitoriju: %{value}"
181 181 error_scm_not_found: "Unos i/ili revizija ne postoji u repozitoriju."
182 182
183 183 error_scm_annotate: "Ova stavka ne postoji ili nije označena."
184 184 error_issue_not_found_in_project: 'Aktivnost nije nađena ili ne pripada ovom projektu'
185 185
186 186 warning_attachments_not_saved: "%{count} fajl(ovi) ne mogu biti snimljen(i)."
187 187
188 188 mail_subject_lost_password: "Vaša %{value} lozinka"
189 189 mail_body_lost_password: 'Za promjenu lozinke, kliknite na sljedeći link:'
190 190 mail_subject_register: "Aktivirajte %{value} vaš korisnički račun"
191 191 mail_body_register: 'Za aktivaciju vašeg korisničkog računa, kliknite na sljedeći link:'
192 192 mail_body_account_information_external: "Možete koristiti vaš %{value} korisnički račun za prijavu na sistem."
193 193 mail_body_account_information: Informacija o vašem korisničkom računu
194 194 mail_subject_account_activation_request: "%{value} zahtjev za aktivaciju korisničkog računa"
195 195 mail_body_account_activation_request: "Novi korisnik (%{value}) se registrovao. Korisnički račun čeka vaše odobrenje za aktivaciju:"
196 196 mail_subject_reminder: "%{count} aktivnost(i) u kašnjenju u narednim %{days} danima"
197 197 mail_body_reminder: "%{count} aktivnost(i) koje su dodjeljenje vama u narednim %{days} danima:"
198 198
199 199 gui_validation_error: 1 greška
200 200 gui_validation_error_plural: "%{count} grešaka"
201 201
202 202 field_name: Ime
203 203 field_description: Opis
204 204 field_summary: Pojašnjenje
205 205 field_is_required: Neophodno popuniti
206 206 field_firstname: Ime
207 207 field_lastname: Prezime
208 208 field_mail: Email
209 209 field_filename: Fajl
210 210 field_filesize: Veličina
211 211 field_downloads: Downloadi
212 212 field_author: Autor
213 213 field_created_on: Kreirano
214 214 field_updated_on: Izmjenjeno
215 215 field_field_format: Format
216 216 field_is_for_all: Za sve projekte
217 217 field_possible_values: Moguće vrijednosti
218 218 field_regexp: '"Regularni izraz"'
219 219 field_min_length: Minimalna veličina
220 220 field_max_length: Maksimalna veličina
221 221 field_value: Vrijednost
222 222 field_category: Kategorija
223 223 field_title: Naslov
224 224 field_project: Projekat
225 225 field_issue: Aktivnost
226 226 field_status: Status
227 227 field_notes: Bilješke
228 228 field_is_closed: Aktivnost zatvorena
229 229 field_is_default: Podrazumjevana vrijednost
230 230 field_tracker: Područje aktivnosti
231 231 field_subject: Subjekat
232 232 field_due_date: Završiti do
233 233 field_assigned_to: Dodijeljeno
234 234 field_priority: Prioritet
235 235 field_fixed_version: Ciljna verzija
236 236 field_user: Korisnik
237 237 field_role: Uloga
238 238 field_homepage: Naslovna strana
239 239 field_is_public: Javni
240 240 field_parent: Podprojekt od
241 241 field_is_in_roadmap: Aktivnosti prikazane u planu realizacije
242 242 field_login: Prijava
243 243 field_mail_notification: Email notifikacije
244 244 field_admin: Administrator
245 245 field_last_login_on: Posljednja konekcija
246 246 field_language: Jezik
247 247 field_effective_date: Datum
248 248 field_password: Lozinka
249 249 field_new_password: Nova lozinka
250 250 field_password_confirmation: Potvrda
251 251 field_version: Verzija
252 252 field_type: Tip
253 253 field_host: Host
254 254 field_port: Port
255 255 field_account: Korisnički račun
256 256 field_base_dn: Base DN
257 257 field_attr_login: Attribut za prijavu
258 258 field_attr_firstname: Attribut za ime
259 259 field_attr_lastname: Atribut za prezime
260 260 field_attr_mail: Atribut za email
261 261 field_onthefly: 'Kreiranje korisnika "On-the-fly"'
262 262 field_start_date: Početak
263 field_done_ratio: % Realizovano
263 field_done_ratio: "% Realizovano"
264 264 field_auth_source: Mod za authentifikaciju
265 265 field_hide_mail: Sakrij moju email adresu
266 266 field_comments: Komentar
267 267 field_url: URL
268 268 field_start_page: Početna stranica
269 269 field_subproject: Podprojekat
270 270 field_hours: Sahata
271 271 field_activity: Operacija
272 272 field_spent_on: Datum
273 273 field_identifier: Identifikator
274 274 field_is_filter: Korišteno kao filter
275 275 field_issue_to: Povezana aktivnost
276 276 field_delay: Odgađanje
277 277 field_assignable: Aktivnosti dodijeljene ovoj ulozi
278 278 field_redirect_existing_links: Izvrši redirekciju postojećih linkova
279 279 field_estimated_hours: Procjena vremena
280 280 field_column_names: Kolone
281 281 field_time_zone: Vremenska zona
282 282 field_searchable: Pretraživo
283 283 field_default_value: Podrazumjevana vrijednost
284 284 field_comments_sorting: Prikaži komentare
285 285 field_parent_title: 'Stranica "roditelj"'
286 286 field_editable: Može se mijenjati
287 287 field_watcher: Posmatrač
288 288 field_identity_url: OpenID URL
289 289 field_content: Sadržaj
290 290
291 291 setting_app_title: Naslov aplikacije
292 292 setting_app_subtitle: Podnaslov aplikacije
293 293 setting_welcome_text: Tekst dobrodošlice
294 294 setting_default_language: Podrazumjevani jezik
295 295 setting_login_required: Authentifikacija neophodna
296 296 setting_self_registration: Samo-registracija
297 297 setting_attachment_max_size: Maksimalna veličina prikačenog fajla
298 298 setting_issues_export_limit: Limit za eksport aktivnosti
299 299 setting_mail_from: Mail adresa - pošaljilac
300 300 setting_bcc_recipients: '"BCC" (blind carbon copy) primaoci '
301 301 setting_plain_text_mail: Email sa običnim tekstom (bez HTML-a)
302 302 setting_host_name: Ime hosta i putanja
303 303 setting_text_formatting: Formatiranje teksta
304 304 setting_wiki_compression: Kompresija Wiki istorije
305 305
306 306 setting_feeds_limit: 'Limit za "RSS" feed-ove'
307 307 setting_default_projects_public: Podrazumjeva se da je novi projekat javni
308 308 setting_autofetch_changesets: 'Automatski kupi "commit"-e'
309 309 setting_sys_api_enabled: 'Omogući "WS" za upravljanje repozitorijom'
310 310 setting_commit_ref_keywords: Ključne riječi za reference
311 311 setting_commit_fix_keywords: 'Ključne riječi za status "zatvoreno"'
312 312 setting_autologin: Automatski login
313 313 setting_date_format: Format datuma
314 314 setting_time_format: Format vremena
315 315 setting_cross_project_issue_relations: Omogući relacije između aktivnosti na različitim projektima
316 316 setting_issue_list_default_columns: Podrazumjevane koleone za prikaz na listi aktivnosti
317 317 setting_repositories_encodings: Enkodiranje repozitorija
318 318 setting_commit_logs_encoding: 'Enkodiranje "commit" poruka'
319 319 setting_emails_footer: Potpis na email-ovima
320 320 setting_protocol: Protokol
321 321 setting_per_page_options: Broj objekata po stranici
322 322 setting_user_format: Format korisničkog prikaza
323 323 setting_activity_days_default: Prikaz promjena na projektu - opseg dana
324 324 setting_display_subprojects_issues: Prikaz podprojekata na glavnom projektima (podrazumjeva se)
325 325 setting_enabled_scm: Omogući SCM (source code management)
326 326 setting_mail_handler_api_enabled: Omogući automatsku obradu ulaznih emailova
327 327 setting_mail_handler_api_key: API ključ (obrada ulaznih mailova)
328 328 setting_sequential_project_identifiers: Generiši identifikatore projekta sekvencijalno
329 329 setting_gravatar_enabled: 'Koristi "gravatar" korisničke ikone'
330 330 setting_diff_max_lines_displayed: Maksimalan broj linija za prikaz razlika između dva fajla
331 331 setting_file_max_size_displayed: Maksimalna veličina fajla kod prikaza razlika unutar fajla (inline)
332 332 setting_repository_log_display_limit: Maksimalna veličina revizija prikazanih na log fajlu
333 333 setting_openid: Omogući OpenID prijavu i registraciju
334 334
335 335 permission_edit_project: Ispravke projekta
336 336 permission_select_project_modules: Odaberi module projekta
337 337 permission_manage_members: Upravljanje članovima
338 338 permission_manage_versions: Upravljanje verzijama
339 339 permission_manage_categories: Upravljanje kategorijama aktivnosti
340 340 permission_add_issues: Dodaj aktivnosti
341 341 permission_edit_issues: Ispravka aktivnosti
342 342 permission_manage_issue_relations: Upravljaj relacijama među aktivnostima
343 343 permission_add_issue_notes: Dodaj bilješke
344 344 permission_edit_issue_notes: Ispravi bilješke
345 345 permission_edit_own_issue_notes: Ispravi sopstvene bilješke
346 346 permission_move_issues: Pomjeri aktivnosti
347 347 permission_delete_issues: Izbriši aktivnosti
348 348 permission_manage_public_queries: Upravljaj javnim upitima
349 349 permission_save_queries: Snimi upite
350 350 permission_view_gantt: Pregled gantograma
351 351 permission_view_calendar: Pregled kalendara
352 352 permission_view_issue_watchers: Pregled liste korisnika koji prate aktivnost
353 353 permission_add_issue_watchers: Dodaj onoga koji prati aktivnost
354 354 permission_log_time: Evidentiraj utrošak vremena
355 355 permission_view_time_entries: Pregled utroška vremena
356 356 permission_edit_time_entries: Ispravka utroška vremena
357 357 permission_edit_own_time_entries: Ispravka svog utroška vremena
358 358 permission_manage_news: Upravljaj novostima
359 359 permission_comment_news: Komentiraj novosti
360 360 permission_manage_documents: Upravljaj dokumentima
361 361 permission_view_documents: Pregled dokumenata
362 362 permission_manage_files: Upravljaj fajlovima
363 363 permission_view_files: Pregled fajlova
364 364 permission_manage_wiki: Upravljaj wiki stranicama
365 365 permission_rename_wiki_pages: Ispravi wiki stranicu
366 366 permission_delete_wiki_pages: Izbriši wiki stranicu
367 367 permission_view_wiki_pages: Pregled wiki sadržaja
368 368 permission_view_wiki_edits: Pregled wiki istorije
369 369 permission_edit_wiki_pages: Ispravka wiki stranica
370 370 permission_delete_wiki_pages_attachments: Brisanje fajlova prikačenih wiki-ju
371 371 permission_protect_wiki_pages: Zaštiti wiki stranicu
372 372 permission_manage_repository: Upravljaj repozitorijem
373 373 permission_browse_repository: Pregled repozitorija
374 374 permission_view_changesets: Pregled setova promjena
375 375 permission_commit_access: 'Pristup "commit"-u'
376 376 permission_manage_boards: Upravljaj forumima
377 377 permission_view_messages: Pregled poruka
378 378 permission_add_messages: Šalji poruke
379 379 permission_edit_messages: Ispravi poruke
380 380 permission_edit_own_messages: Ispravka sopstvenih poruka
381 381 permission_delete_messages: Prisanje poruka
382 382 permission_delete_own_messages: Brisanje sopstvenih poruka
383 383
384 384 project_module_issue_tracking: Praćenje aktivnosti
385 385 project_module_time_tracking: Praćenje vremena
386 386 project_module_news: Novosti
387 387 project_module_documents: Dokumenti
388 388 project_module_files: Fajlovi
389 389 project_module_wiki: Wiki stranice
390 390 project_module_repository: Repozitorij
391 391 project_module_boards: Forumi
392 392
393 393 label_user: Korisnik
394 394 label_user_plural: Korisnici
395 395 label_user_new: Novi korisnik
396 396 label_project: Projekat
397 397 label_project_new: Novi projekat
398 398 label_project_plural: Projekti
399 399 label_x_projects:
400 400 zero: 0 projekata
401 401 one: 1 projekat
402 402 other: "%{count} projekata"
403 403 label_project_all: Svi projekti
404 404 label_project_latest: Posljednji projekti
405 405 label_issue: Aktivnost
406 406 label_issue_new: Nova aktivnost
407 407 label_issue_plural: Aktivnosti
408 408 label_issue_view_all: Vidi sve aktivnosti
409 409 label_issues_by: "Aktivnosti po %{value}"
410 410 label_issue_added: Aktivnost je dodana
411 411 label_issue_updated: Aktivnost je izmjenjena
412 412 label_document: Dokument
413 413 label_document_new: Novi dokument
414 414 label_document_plural: Dokumenti
415 415 label_document_added: Dokument je dodan
416 416 label_role: Uloga
417 417 label_role_plural: Uloge
418 418 label_role_new: Nove uloge
419 419 label_role_and_permissions: Uloge i dozvole
420 420 label_member: Izvršilac
421 421 label_member_new: Novi izvršilac
422 422 label_member_plural: Izvršioci
423 423 label_tracker: Područje aktivnosti
424 424 label_tracker_plural: Područja aktivnosti
425 425 label_tracker_new: Novo područje aktivnosti
426 426 label_workflow: Tok promjena na aktivnosti
427 427 label_issue_status: Status aktivnosti
428 428 label_issue_status_plural: Statusi aktivnosti
429 429 label_issue_status_new: Novi status
430 430 label_issue_category: Kategorija aktivnosti
431 431 label_issue_category_plural: Kategorije aktivnosti
432 432 label_issue_category_new: Nova kategorija
433 433 label_custom_field: Proizvoljno polje
434 434 label_custom_field_plural: Proizvoljna polja
435 435 label_custom_field_new: Novo proizvoljno polje
436 436 label_enumerations: Enumeracije
437 437 label_enumeration_new: Nova vrijednost
438 438 label_information: Informacija
439 439 label_information_plural: Informacije
440 440 label_please_login: Molimo prijavite se
441 441 label_register: Registracija
442 442 label_login_with_open_id_option: ili prijava sa OpenID-om
443 443 label_password_lost: Izgubljena lozinka
444 444 label_home: Početna stranica
445 445 label_my_page: Moja stranica
446 446 label_my_account: Moj korisnički račun
447 447 label_my_projects: Moji projekti
448 448 label_administration: Administracija
449 449 label_login: Prijavi se
450 450 label_logout: Odjavi se
451 451 label_help: Pomoć
452 452 label_reported_issues: Prijavljene aktivnosti
453 453 label_assigned_to_me_issues: Aktivnosti dodjeljene meni
454 454 label_last_login: Posljednja konekcija
455 455 label_registered_on: Registrovan na
456 456 label_activity_plural: Promjene
457 457 label_activity: Operacija
458 458 label_overall_activity: Pregled svih promjena
459 459 label_user_activity: "Promjene izvršene od: %{value}"
460 460 label_new: Novi
461 461 label_logged_as: Prijavljen kao
462 462 label_environment: Sistemsko okruženje
463 463 label_authentication: Authentifikacija
464 464 label_auth_source: Mod authentifikacije
465 465 label_auth_source_new: Novi mod authentifikacije
466 466 label_auth_source_plural: Modovi authentifikacije
467 467 label_subproject_plural: Podprojekti
468 468 label_and_its_subprojects: "%{value} i njegovi podprojekti"
469 469 label_min_max_length: Min - Maks dužina
470 470 label_list: Lista
471 471 label_date: Datum
472 472 label_integer: Cijeli broj
473 473 label_float: Float
474 474 label_boolean: Logička varijabla
475 475 label_string: Tekst
476 476 label_text: Dugi tekst
477 477 label_attribute: Atribut
478 478 label_attribute_plural: Atributi
479 479 label_download: "%{count} download"
480 480 label_download_plural: "%{count} download-i"
481 481 label_no_data: Nema podataka za prikaz
482 482 label_change_status: Promjeni status
483 483 label_history: Istorija
484 484 label_attachment: Fajl
485 485 label_attachment_new: Novi fajl
486 486 label_attachment_delete: Izbriši fajl
487 487 label_attachment_plural: Fajlovi
488 488 label_file_added: Fajl je dodan
489 489 label_report: Izvještaj
490 490 label_report_plural: Izvještaji
491 491 label_news: Novosti
492 492 label_news_new: Dodaj novosti
493 493 label_news_plural: Novosti
494 494 label_news_latest: Posljednje novosti
495 495 label_news_view_all: Pogledaj sve novosti
496 496 label_news_added: Novosti su dodane
497 497 label_settings: Postavke
498 498 label_overview: Pregled
499 499 label_version: Verzija
500 500 label_version_new: Nova verzija
501 501 label_version_plural: Verzije
502 502 label_confirmation: Potvrda
503 503 label_export_to: 'Takođe dostupno u:'
504 504 label_read: Čitaj...
505 505 label_public_projects: Javni projekti
506 506 label_open_issues: otvoren
507 507 label_open_issues_plural: otvoreni
508 508 label_closed_issues: zatvoren
509 509 label_closed_issues_plural: zatvoreni
510 510 label_x_open_issues_abbr_on_total:
511 511 zero: 0 otvoreno / %{total}
512 512 one: 1 otvorena / %{total}
513 513 other: "%{count} otvorene / %{total}"
514 514 label_x_open_issues_abbr:
515 515 zero: 0 otvoreno
516 516 one: 1 otvorena
517 517 other: "%{count} otvorene"
518 518 label_x_closed_issues_abbr:
519 519 zero: 0 zatvoreno
520 520 one: 1 zatvorena
521 521 other: "%{count} zatvorene"
522 522 label_total: Ukupno
523 523 label_permissions: Dozvole
524 524 label_current_status: Tekući status
525 525 label_new_statuses_allowed: Novi statusi dozvoljeni
526 526 label_all: sve
527 527 label_none: ništa
528 528 label_nobody: niko
529 529 label_next: Sljedeće
530 530 label_previous: Predhodno
531 531 label_used_by: Korišteno od
532 532 label_details: Detalji
533 533 label_add_note: Dodaj bilješku
534 534 label_per_page: Po stranici
535 535 label_calendar: Kalendar
536 536 label_months_from: mjeseci od
537 537 label_gantt: Gantt
538 538 label_internal: Interno
539 539 label_last_changes: "posljednjih %{count} promjena"
540 540 label_change_view_all: Vidi sve promjene
541 541 label_personalize_page: Personaliziraj ovu stranicu
542 542 label_comment: Komentar
543 543 label_comment_plural: Komentari
544 544 label_x_comments:
545 545 zero: bez komentara
546 546 one: 1 komentar
547 547 other: "%{count} komentari"
548 548 label_comment_add: Dodaj komentar
549 549 label_comment_added: Komentar je dodan
550 550 label_comment_delete: Izbriši komentar
551 551 label_query: Proizvoljan upit
552 552 label_query_plural: Proizvoljni upiti
553 553 label_query_new: Novi upit
554 554 label_filter_add: Dodaj filter
555 555 label_filter_plural: Filteri
556 556 label_equals: je
557 557 label_not_equals: nije
558 558 label_in_less_than: je manji nego
559 559 label_in_more_than: je više nego
560 560 label_in: u
561 561 label_today: danas
562 562 label_all_time: sve vrijeme
563 563 label_yesterday: juče
564 564 label_this_week: ova hefta
565 565 label_last_week: zadnja hefta
566 566 label_last_n_days: "posljednjih %{count} dana"
567 567 label_this_month: ovaj mjesec
568 568 label_last_month: posljednji mjesec
569 569 label_this_year: ova godina
570 570 label_date_range: Datumski opseg
571 571 label_less_than_ago: ranije nego (dana)
572 572 label_more_than_ago: starije nego (dana)
573 573 label_ago: prije (dana)
574 574 label_contains: sadrži
575 575 label_not_contains: ne sadrži
576 576 label_day_plural: dani
577 577 label_repository: Repozitorij
578 578 label_repository_plural: Repozitoriji
579 579 label_browse: Listaj
580 580 label_modification: "%{count} promjena"
581 581 label_modification_plural: "%{count} promjene"
582 582 label_revision: Revizija
583 583 label_revision_plural: Revizije
584 584 label_associated_revisions: Doddjeljene revizije
585 585 label_added: dodano
586 586 label_modified: izmjenjeno
587 587 label_copied: kopirano
588 588 label_renamed: preimenovano
589 589 label_deleted: izbrisano
590 590 label_latest_revision: Posljednja revizija
591 591 label_latest_revision_plural: Posljednje revizije
592 592 label_view_revisions: Vidi revizije
593 593 label_max_size: Maksimalna veličina
594 594 label_sort_highest: Pomjeri na vrh
595 595 label_sort_higher: Pomjeri gore
596 596 label_sort_lower: Pomjeri dole
597 597 label_sort_lowest: Pomjeri na dno
598 598 label_roadmap: Plan realizacije
599 599 label_roadmap_due_in: "Obavezan do %{value}"
600 600 label_roadmap_overdue: "%{value} kasni"
601 601 label_roadmap_no_issues: Nema aktivnosti za ovu verziju
602 602 label_search: Traži
603 603 label_result_plural: Rezultati
604 604 label_all_words: Sve riječi
605 605 label_wiki: Wiki stranice
606 606 label_wiki_edit: ispravka wiki-ja
607 607 label_wiki_edit_plural: ispravke wiki-ja
608 608 label_wiki_page: Wiki stranica
609 609 label_wiki_page_plural: Wiki stranice
610 610 label_index_by_title: Indeks prema naslovima
611 611 label_index_by_date: Indeks po datumima
612 612 label_current_version: Tekuća verzija
613 613 label_preview: Pregled
614 614 label_feed_plural: Feeds
615 615 label_changes_details: Detalji svih promjena
616 616 label_issue_tracking: Evidencija aktivnosti
617 617 label_spent_time: Utrošak vremena
618 618 label_f_hour: "%{value} sahat"
619 619 label_f_hour_plural: "%{value} sahata"
620 620 label_time_tracking: Evidencija vremena
621 621 label_change_plural: Promjene
622 622 label_statistics: Statistika
623 623 label_commits_per_month: '"Commit"-a po mjesecu'
624 624 label_commits_per_author: '"Commit"-a po autoru'
625 625 label_view_diff: Pregled razlika
626 626 label_diff_inline: zajedno
627 627 label_diff_side_by_side: jedna pored druge
628 628 label_options: Opcije
629 629 label_copy_workflow_from: Kopiraj tok promjena statusa iz
630 630 label_permissions_report: Izvještaj
631 631 label_watched_issues: Aktivnosti koje pratim
632 632 label_related_issues: Korelirane aktivnosti
633 633 label_applied_status: Status je primjenjen
634 634 label_loading: Učitavam...
635 635 label_relation_new: Nova relacija
636 636 label_relation_delete: Izbriši relaciju
637 637 label_relates_to: korelira sa
638 638 label_duplicates: duplikat
639 639 label_duplicated_by: duplicirano od
640 640 label_blocks: blokira
641 641 label_blocked_by: blokirano on
642 642 label_precedes: predhodi
643 643 label_follows: slijedi
644 644 label_end_to_start: 'kraj -> početak'
645 645 label_end_to_end: 'kraja -> kraj'
646 646 label_start_to_start: 'početak -> početak'
647 647 label_start_to_end: 'početak -> kraj'
648 648 label_stay_logged_in: Ostani prijavljen
649 649 label_disabled: onemogućen
650 650 label_show_completed_versions: Prikaži završene verzije
651 651 label_me: ja
652 652 label_board: Forum
653 653 label_board_new: Novi forum
654 654 label_board_plural: Forumi
655 655 label_topic_plural: Teme
656 656 label_message_plural: Poruke
657 657 label_message_last: Posljednja poruka
658 658 label_message_new: Nova poruka
659 659 label_message_posted: Poruka je dodana
660 660 label_reply_plural: Odgovori
661 661 label_send_information: Pošalji informaciju o korisničkom računu
662 662 label_year: Godina
663 663 label_month: Mjesec
664 664 label_week: Hefta
665 665 label_date_from: Od
666 666 label_date_to: Do
667 667 label_language_based: Bazirano na korisnikovom jeziku
668 668 label_sort_by: "Sortiraj po %{value}"
669 669 label_send_test_email: Pošalji testni email
670 670 label_feeds_access_key_created_on: "RSS pristupni ključ kreiran prije %{value} dana"
671 671 label_module_plural: Moduli
672 672 label_added_time_by: "Dodano od %{author} prije %{age}"
673 673 label_updated_time_by: "Izmjenjeno od %{author} prije %{age}"
674 674 label_updated_time: "Izmjenjeno prije %{value}"
675 675 label_jump_to_a_project: Skoči na projekat...
676 676 label_file_plural: Fajlovi
677 677 label_changeset_plural: Setovi promjena
678 678 label_default_columns: Podrazumjevane kolone
679 679 label_no_change_option: (Bez promjene)
680 680 label_bulk_edit_selected_issues: Ispravi odjednom odabrane aktivnosti
681 681 label_theme: Tema
682 682 label_default: Podrazumjevano
683 683 label_search_titles_only: Pretraži samo naslove
684 684 label_user_mail_option_all: "Za bilo koji događaj na svim mojim projektima"
685 685 label_user_mail_option_selected: "Za bilo koji događaj na odabranim projektima..."
686 686 label_user_mail_no_self_notified: "Ne želim notifikaciju za promjene koje sam ja napravio"
687 687 label_registration_activation_by_email: aktivacija korisničkog računa email-om
688 688 label_registration_manual_activation: ručna aktivacija korisničkog računa
689 689 label_registration_automatic_activation: automatska kreacija korisničkog računa
690 690 label_display_per_page: "Po stranici: %{value}"
691 691 label_age: Starost
692 692 label_change_properties: Promjena osobina
693 693 label_general: Generalno
694 694 label_more: Više
695 695 label_scm: SCM
696 696 label_plugins: Plugin-ovi
697 697 label_ldap_authentication: LDAP authentifikacija
698 698 label_downloads_abbr: D/L
699 699 label_optional_description: Opis (opciono)
700 700 label_add_another_file: Dodaj još jedan fajl
701 701 label_preferences: Postavke
702 702 label_chronological_order: Hronološki poredak
703 703 label_reverse_chronological_order: Reverzni hronološki poredak
704 704 label_planning: Planiranje
705 705 label_incoming_emails: Dolazni email-ovi
706 706 label_generate_key: Generiši ključ
707 707 label_issue_watchers: Praćeno od
708 708 label_example: Primjer
709 709 label_display: Prikaz
710 710
711 711 button_apply: Primjeni
712 712 button_add: Dodaj
713 713 button_archive: Arhiviranje
714 714 button_back: Nazad
715 715 button_cancel: Odustani
716 716 button_change: Izmjeni
717 717 button_change_password: Izmjena lozinke
718 718 button_check_all: Označi sve
719 719 button_clear: Briši
720 720 button_copy: Kopiraj
721 721 button_create: Novi
722 722 button_delete: Briši
723 723 button_download: Download
724 724 button_edit: Ispravka
725 725 button_list: Lista
726 726 button_lock: Zaključaj
727 727 button_log_time: Utrošak vremena
728 728 button_login: Prijava
729 729 button_move: Pomjeri
730 730 button_rename: Promjena imena
731 731 button_reply: Odgovor
732 732 button_reset: Resetuj
733 733 button_rollback: Vrati predhodno stanje
734 734 button_save: Snimi
735 735 button_sort: Sortiranje
736 736 button_submit: Pošalji
737 737 button_test: Testiraj
738 738 button_unarchive: Otpakuj arhivu
739 739 button_uncheck_all: Isključi sve
740 740 button_unlock: Otključaj
741 741 button_unwatch: Prekini notifikaciju
742 742 button_update: Promjena na aktivnosti
743 743 button_view: Pregled
744 744 button_watch: Notifikacija
745 745 button_configure: Konfiguracija
746 746 button_quote: Citat
747 747
748 748 status_active: aktivan
749 749 status_registered: registrovan
750 750 status_locked: zaključan
751 751
752 752 text_select_mail_notifications: Odaberi događaje za koje će se slati email notifikacija.
753 753 text_regexp_info: npr. ^[A-Z0-9]+$
754 754 text_min_max_length_info: 0 znači bez restrikcije
755 755 text_project_destroy_confirmation: Sigurno želite izbrisati ovaj projekat i njegove podatke ?
756 756 text_subprojects_destroy_warning: "Podprojekt(i): %{value} će takođe biti izbrisani."
757 757 text_workflow_edit: Odaberite ulogu i područje aktivnosti za ispravku toka promjena na aktivnosti
758 758 text_are_you_sure: Da li ste sigurni ?
759 759 text_tip_issue_begin_day: zadatak počinje danas
760 760 text_tip_issue_end_day: zadatak završava danas
761 761 text_tip_issue_begin_end_day: zadatak započinje i završava danas
762 762 text_project_identifier_info: 'Samo mala slova (a-z), brojevi i crtice su dozvoljeni.<br />Nakon snimanja, identifikator se ne može mijenjati.'
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).
@@ -1,968 +1,968
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_days:
56 56 one: "1 dia"
57 57 other: "%{count} dies"
58 58 about_x_months:
59 59 one: "aproximadament 1 mes"
60 60 other: "aproximadament %{count} mesos"
61 61 x_months:
62 62 one: "1 mes"
63 63 other: "%{count} mesos"
64 64 about_x_years:
65 65 one: "aproximadament 1 any"
66 66 other: "aproximadament %{count} anys"
67 67 over_x_years:
68 68 one: "més d'un any"
69 69 other: "més de %{count} anys"
70 70 almost_x_years:
71 71 one: "almost 1 year"
72 72 other: "almost %{count} years"
73 73
74 74 number:
75 75 # Default format for numbers
76 76 format:
77 77 separator: "."
78 78 delimiter: ""
79 79 precision: 3
80 80 human:
81 81 format:
82 82 delimiter: ""
83 83 precision: 1
84 84 storage_units:
85 85 format: "%n %u"
86 86 units:
87 87 byte:
88 88 one: "Byte"
89 89 other: "Bytes"
90 90 kb: "KB"
91 91 mb: "MB"
92 92 gb: "GB"
93 93 tb: "TB"
94 94
95 95
96 96 # Used in array.to_sentence.
97 97 support:
98 98 array:
99 99 sentence_connector: "i"
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: "no està inclòs a la llista"
110 110 exclusion: "està reservat"
111 111 invalid: "no és vàlid"
112 112 confirmation: "la confirmació no coincideix"
113 113 accepted: "s'ha d'acceptar"
114 114 empty: "no pot estar buit"
115 115 blank: "no pot estar en blanc"
116 116 too_long: "és massa llarg"
117 117 too_short: "és massa curt"
118 118 wrong_length: "la longitud és incorrecta"
119 119 taken: "ja s'està utilitzant"
120 120 not_a_number: "no és un número"
121 121 not_a_date: "no és una data vàlida"
122 122 greater_than: "ha de ser més gran que %{count}"
123 123 greater_than_or_equal_to: "ha de ser més gran o igual a %{count}"
124 124 equal_to: "ha de ser igual a %{count}"
125 125 less_than: "ha de ser menys que %{count}"
126 126 less_than_or_equal_to: "ha de ser menys o igual a %{count}"
127 127 odd: "ha de ser senar"
128 128 even: "ha de ser parell"
129 129 greater_than_start_date: "ha de ser superior que la data inicial"
130 130 not_same_project: "no pertany al mateix projecte"
131 131 circular_dependency: "Aquesta relació crearia una dependència circular"
132 132 cant_link_an_issue_with_a_descendant: "Un assumpte no es pot enllaçar a una de les seves subtasques"
133 133
134 134 actionview_instancetag_blank_option: Seleccioneu
135 135
136 136 general_text_No: 'No'
137 137 general_text_Yes: 'Si'
138 138 general_text_no: 'no'
139 139 general_text_yes: 'si'
140 140 general_lang_name: 'Català'
141 141 general_csv_separator: ';'
142 142 general_csv_decimal_separator: ','
143 143 general_csv_encoding: ISO-8859-15
144 144 general_pdf_encoding: UTF-8
145 145 general_first_day_of_week: '1'
146 146
147 147 notice_account_updated: "El compte s'ha actualitzat correctament."
148 148 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
149 149 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
150 150 notice_account_wrong_password: Contrasenya incorrecta
151 151 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."
152 152 notice_account_unknown_email: Usuari desconegut.
153 153 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
154 154 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
155 155 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
156 156 notice_successful_create: "S'ha creat correctament."
157 157 notice_successful_update: "S'ha modificat correctament."
158 158 notice_successful_delete: "S'ha suprimit correctament."
159 159 notice_successful_connection: "S'ha connectat correctament."
160 160 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
161 161 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
162 162 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
163 163 notice_email_sent: "S'ha enviat un correu electrònic a %{value}"
164 164 notice_email_error: "S'ha produït un error en enviar el correu (%{value})"
165 165 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
166 166 notice_api_access_key_reseted: "S'ha reiniciat la clau d'accés a l'API."
167 167 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de %{count} seleccionats: %{ids}."
168 168 notice_failed_to_save_members: "No s'han pogut desar els membres: %{errors}."
169 169 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
170 170 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
171 171 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
172 172 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
173 173 notice_unable_delete_time_entry: "No s'ha pogut suprimir l'entrada del registre de temps."
174 174 notice_issue_done_ratios_updated: "S'ha actualitzat el tant per cent dels assumptes."
175 175
176 176 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %{value} "
177 177 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
178 178 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: %{value}"
179 179 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
180 180 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
181 181 error_no_tracker_in_project: "Aquest projecte no seguidor associat. Comproveu els paràmetres del projecte."
182 182 error_no_default_issue_status: "No s'ha definit cap estat d'assumpte predeterminat. Comproveu la configuració (aneu a «Administració -> Estats de l'assumpte»)."
183 183 error_can_not_delete_custom_field: "No s'ha pogut suprimir el camp personalitat"
184 184 error_can_not_delete_tracker: "Aquest seguidor conté assumptes i no es pot suprimir."
185 185 error_can_not_remove_role: "Aquest rol s'està utilitzant i no es pot suprimir."
186 186 error_can_not_reopen_issue_on_closed_version: "Un assumpte assignat a una versió tancada no es pot tornar a obrir"
187 187 error_can_not_archive_project: "Aquest projecte no es pot arxivar"
188 188 error_issue_done_ratios_not_updated: "No s'ha actualitza el tant per cent dels assumptes."
189 189 error_workflow_copy_source: "Seleccioneu un seguidor o rol font"
190 190 error_workflow_copy_target: "Seleccioneu seguidors i rols objectiu"
191 191 error_unable_delete_issue_status: "No s'ha pogut suprimir l'estat de l'assumpte"
192 192 error_unable_to_connect: "No s'ha pogut connectar (%{value})"
193 193 warning_attachments_not_saved: "No s'han pogut desar %{count} fitxers."
194 194
195 195 mail_subject_lost_password: "Contrasenya de %{value}"
196 196 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
197 197 mail_subject_register: "Activació del compte de %{value}"
198 198 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
199 199 mail_body_account_information_external: "Podeu utilitzar el compte «%{value}» per a entrar."
200 200 mail_body_account_information: Informació del compte
201 201 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %{value}"
202 202 mail_body_account_activation_request: "S'ha registrat un usuari nou (%{value}). El seu compte està pendent d'aprovació:"
203 203 mail_subject_reminder: "%{count} assumptes venceran els següents %{days} dies"
204 204 mail_body_reminder: "%{count} assumptes que teniu assignades venceran els següents %{days} dies:"
205 205 mail_subject_wiki_content_added: "S'ha afegit la pàgina wiki «%{id}»"
206 206 mail_body_wiki_content_added: "En %{author} ha afegit la pàgina wiki «%{id}»."
207 207 mail_subject_wiki_content_updated: "S'ha actualitzat la pàgina wiki «%{id}»"
208 208 mail_body_wiki_content_updated: "En %{author} ha actualitzat la pàgina wiki «%{id}»."
209 209
210 210 gui_validation_error: 1 error
211 211 gui_validation_error_plural: "%{count} errors"
212 212
213 213 field_name: Nom
214 214 field_description: Descripció
215 215 field_summary: Resum
216 216 field_is_required: Necessari
217 217 field_firstname: Nom
218 218 field_lastname: Cognom
219 219 field_mail: Correu electrònic
220 220 field_filename: Fitxer
221 221 field_filesize: Mida
222 222 field_downloads: Baixades
223 223 field_author: Autor
224 224 field_created_on: Creat
225 225 field_updated_on: Actualitzat
226 226 field_field_format: Format
227 227 field_is_for_all: Per a tots els projectes
228 228 field_possible_values: Valores possibles
229 229 field_regexp: Expressió regular
230 230 field_min_length: Longitud mínima
231 231 field_max_length: Longitud màxima
232 232 field_value: Valor
233 233 field_category: Categoria
234 234 field_title: Títol
235 235 field_project: Projecte
236 236 field_issue: Assumpte
237 237 field_status: Estat
238 238 field_notes: Notes
239 239 field_is_closed: Assumpte tancat
240 240 field_is_default: Estat predeterminat
241 241 field_tracker: Seguidor
242 242 field_subject: Tema
243 243 field_due_date: Data de venciment
244 244 field_assigned_to: Assignat a
245 245 field_priority: Prioritat
246 246 field_fixed_version: Versió objectiu
247 247 field_user: Usuari
248 248 field_principal: Principal
249 249 field_role: Rol
250 250 field_homepage: Pàgina web
251 251 field_is_public: Públic
252 252 field_parent: Subprojecte de
253 253 field_is_in_roadmap: Assumptes mostrats en la planificació
254 254 field_login: Entrada
255 255 field_mail_notification: Notificacions per correu electrònic
256 256 field_admin: Administrador
257 257 field_last_login_on: Última connexió
258 258 field_language: Idioma
259 259 field_effective_date: Data
260 260 field_password: Contrasenya
261 261 field_new_password: Contrasenya nova
262 262 field_password_confirmation: Confirmació
263 263 field_version: Versió
264 264 field_type: Tipus
265 265 field_host: Ordinador
266 266 field_port: Port
267 267 field_account: Compte
268 268 field_base_dn: Base DN
269 269 field_attr_login: "Atribut d'entrada"
270 270 field_attr_firstname: Atribut del nom
271 271 field_attr_lastname: Atribut del cognom
272 272 field_attr_mail: Atribut del correu electrònic
273 273 field_onthefly: "Creació de l'usuari «al vol»"
274 274 field_start_date: Inici
275 field_done_ratio: % realitzat
275 field_done_ratio: "% realitzat"
276 276 field_auth_source: "Mode d'autenticació"
277 277 field_hide_mail: "Oculta l'adreça de correu electrònic"
278 278 field_comments: Comentari
279 279 field_url: URL
280 280 field_start_page: Pàgina inicial
281 281 field_subproject: Subprojecte
282 282 field_hours: Hores
283 283 field_activity: Activitat
284 284 field_spent_on: Data
285 285 field_identifier: Identificador
286 286 field_is_filter: "S'ha utilitzat com a filtre"
287 287 field_issue_to: Assumpte relacionat
288 288 field_delay: Retard
289 289 field_assignable: Es poden assignar assumptes a aquest rol
290 290 field_redirect_existing_links: Redirigeix els enllaços existents
291 291 field_estimated_hours: Temps previst
292 292 field_column_names: Columnes
293 293 field_time_entries: "Registre de temps"
294 294 field_time_zone: Zona horària
295 295 field_searchable: Es pot cercar
296 296 field_default_value: Valor predeterminat
297 297 field_comments_sorting: Mostra els comentaris
298 298 field_parent_title: Pàgina pare
299 299 field_editable: Es pot editar
300 300 field_watcher: Vigilància
301 301 field_identity_url: URL OpenID
302 302 field_content: Contingut
303 303 field_group_by: "Agrupa els resultats per"
304 304 field_sharing: Compartició
305 305 field_parent_issue: "Tasca pare"
306 306
307 307 setting_app_title: "Títol de l'aplicació"
308 308 setting_app_subtitle: "Subtítol de l'aplicació"
309 309 setting_welcome_text: Text de benvinguda
310 310 setting_default_language: Idioma predeterminat
311 311 setting_login_required: Es necessita autenticació
312 312 setting_self_registration: Registre automàtic
313 313 setting_attachment_max_size: Mida màxima dels adjunts
314 314 setting_issues_export_limit: "Límit d'exportació d'assumptes"
315 315 setting_mail_from: "Adreça de correu electrònic d'emissió"
316 316 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
317 317 setting_plain_text_mail: només text pla (no HTML)
318 318 setting_host_name: "Nom de l'ordinador"
319 319 setting_text_formatting: Format del text
320 320 setting_wiki_compression: "Comprimeix l'historial del wiki"
321 321 setting_feeds_limit: Límit de contingut del canal
322 322 setting_default_projects_public: Els projectes nous són públics per defecte
323 323 setting_autofetch_changesets: Omple automàticament les publicacions
324 324 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
325 325 setting_commit_ref_keywords: Paraules claus per a la referència
326 326 setting_commit_fix_keywords: Paraules claus per a la correcció
327 327 setting_autologin: Entrada automàtica
328 328 setting_date_format: Format de la data
329 329 setting_time_format: Format de hora
330 330 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
331 331 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
332 332 setting_repositories_encodings: Codificacions del dipòsit
333 333 setting_commit_logs_encoding: Codificació dels missatges publicats
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_project_identifier_info: "Es permeten lletres en minúscules (a-z), números i guions.<br />Un cop desat, l'identificador no es pot modificar."
855 855 text_caracters_maximum: "%{count} caràcters com a màxim."
856 856 text_caracters_minimum: "Com a mínim ha de tenir %{count} caràcters."
857 857 text_length_between: "Longitud entre %{min} i %{max} caràcters."
858 858 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
859 859 text_unallowed_characters: Caràcters no permesos
860 860 text_comma_separated: Es permeten valors múltiples (separats per una coma).
861 861 text_line_separated: "Es permeten diversos valors (una línia per cada valor)."
862 862 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
863 863 text_issue_added: "L'assumpte %{id} ha sigut informat per %{author}."
864 864 text_issue_updated: "L'assumpte %{id} ha sigut actualitzat per %{author}."
865 865 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
866 866 text_issue_category_destroy_question: "Alguns assumptes (%{count}) estan assignats a aquesta categoria. Què voleu fer?"
867 867 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
868 868 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
869 869 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)."
870 870 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."
871 871 text_load_default_configuration: Carrega la configuració predeterminada
872 872 text_status_changed_by_changeset: "Aplicat en el conjunt de canvis %{value}."
873 873 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
874 874 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
875 875 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
876 876 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
877 877 text_plugin_assets_writable: Es pot escriure als connectors actius
878 878 text_rmagick_available: RMagick disponible (opcional)
879 879 text_destroy_time_entries_question: "S'han informat %{hours} hores en els assumptes que aneu a suprimir. Què voleu fer?"
880 880 text_destroy_time_entries: Suprimeix les hores informades
881 881 text_assign_time_entries_to_project: Assigna les hores informades al projecte
882 882 text_reassign_time_entries: "Torna a assignar les hores informades a aquest assumpte:"
883 883 text_user_wrote: "%{value} va escriure:"
884 884 text_enumeration_destroy_question: "%{count} objectes estan assignats a aquest valor."
885 885 text_enumeration_category_reassign_to: "Torna a assignar-los a aquest valor:"
886 886 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."
887 887 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."
888 888 text_diff_truncated: "... Aquestes diferències s'han trucat perquè excedeixen la mida màxima que es pot mostrar."
889 889 text_custom_field_possible_values_info: "Una línia per a cada valor"
890 890 text_wiki_page_destroy_question: "Aquesta pàgina %{descendants} pàgines fill i descendents. Què voleu fer?"
891 891 text_wiki_page_nullify_children: "Deixa les pàgines fill com a pàgines arrel"
892 892 text_wiki_page_destroy_children: "Suprimeix les pàgines fill i tots els seus descendents"
893 893 text_wiki_page_reassign_children: "Reasigna les pàgines fill a aquesta pàgina pare"
894 894 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?"
895 895 text_zoom_in: Redueix
896 896 text_zoom_out: Amplia
897 897
898 898 default_role_manager: Gestor
899 899 default_role_developer: Desenvolupador
900 900 default_role_reporter: Informador
901 901 default_tracker_bug: Error
902 902 default_tracker_feature: Característica
903 903 default_tracker_support: Suport
904 904 default_issue_status_new: Nou
905 905 default_issue_status_in_progress: In Progress
906 906 default_issue_status_resolved: Resolt
907 907 default_issue_status_feedback: Comentaris
908 908 default_issue_status_closed: Tancat
909 909 default_issue_status_rejected: Rebutjat
910 910 default_doc_category_user: "Documentació d'usuari"
911 911 default_doc_category_tech: Documentació tècnica
912 912 default_priority_low: Baixa
913 913 default_priority_normal: Normal
914 914 default_priority_high: Alta
915 915 default_priority_urgent: Urgent
916 916 default_priority_immediate: Immediata
917 917 default_activity_design: Disseny
918 918 default_activity_development: Desenvolupament
919 919
920 920 enumeration_issue_priorities: Prioritat dels assumptes
921 921 enumeration_doc_categories: Categories del document
922 922 enumeration_activities: Activitats (seguidor de temps)
923 923 enumeration_system_activity: Activitat del sistema
924 924
925 925 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
926 926 text_are_you_sure_with_children: Delete issue and all child issues?
927 927 field_text: Text field
928 928 label_user_mail_option_only_owner: Only for things I am the owner of
929 929 setting_default_notification_option: Default notification option
930 930 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
931 931 label_user_mail_option_only_assigned: Only for things I am assigned to
932 932 label_user_mail_option_none: No events
933 933 field_member_of_group: Assignee's group
934 934 field_assigned_to_role: Assignee's role
935 935 notice_not_authorized_archived_project: The project you're trying to access has been archived.
936 936 label_principal_search: "Search for user or group:"
937 937 label_user_search: "Search for user:"
938 938 field_visible: Visible
939 939 setting_emails_header: Emails header
940 940 setting_commit_logtime_activity_id: Activity for logged time
941 941 text_time_logged_by_changeset: Applied in changeset %{value}.
942 942 setting_commit_logtime_enabled: Enable time logging
943 943 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
944 944 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
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).
@@ -1,969 +1,969
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_days:
57 57 one: "1 den"
58 58 other: "%{count} dnů"
59 59 about_x_months:
60 60 one: "asi 1 měsíc"
61 61 other: "asi %{count} měsíců"
62 62 x_months:
63 63 one: "1 měsíc"
64 64 other: "%{count} měsíců"
65 65 about_x_years:
66 66 one: "asi 1 rok"
67 67 other: "asi %{count} let"
68 68 over_x_years:
69 69 one: "více než 1 rok"
70 70 other: "více než %{count} roky"
71 71 almost_x_years:
72 72 one: "témeř 1 rok"
73 73 other: "téměř %{count} roky"
74 74
75 75 number:
76 76 # Výchozí formát pro čísla
77 77 format:
78 78 separator: "."
79 79 delimiter: ""
80 80 precision: 3
81 81 human:
82 82 format:
83 83 delimiter: ""
84 84 precision: 1
85 85 storage_units:
86 86 format: "%n %u"
87 87 units:
88 88 byte:
89 89 one: "Bajt"
90 90 other: "Bajtů"
91 91 kb: "kB"
92 92 mb: "MB"
93 93 gb: "GB"
94 94 tb: "TB"
95 95
96 96
97 97 # Used in array.to_sentence.
98 98 support:
99 99 array:
100 100 sentence_connector: "a"
101 101 skip_last_comma: false
102 102
103 103 activerecord:
104 104 errors:
105 105 template:
106 106 header:
107 107 one: "1 chyba zabránila uložení %{model}"
108 108 other: "%{count} chyb zabránilo uložení %{model}"
109 109 messages:
110 110 inclusion: "není zahrnuto v seznamu"
111 111 exclusion: "je rezervováno"
112 112 invalid: "je neplatné"
113 113 confirmation: "se neshoduje s potvrzením"
114 114 accepted: "musí být akceptováno"
115 115 empty: "nemůže být prázdný"
116 116 blank: "nemůže být prázdný"
117 117 too_long: "je příliš dlouhý"
118 118 too_short: "je příliš krátký"
119 119 wrong_length: "má chybnou délku"
120 120 taken: "je již použito"
121 121 not_a_number: "není číslo"
122 122 not_a_date: "není platné datum"
123 123 greater_than: "musí být větší než %{count}"
124 124 greater_than_or_equal_to: "musí být větší nebo rovno %{count}"
125 125 equal_to: "musí být přesně %{count}"
126 126 less_than: "musí být méně než %{count}"
127 127 less_than_or_equal_to: "musí být méně nebo rovno %{count}"
128 128 odd: "musí být liché"
129 129 even: "musí být sudé"
130 130 greater_than_start_date: "musí být větší než počáteční datum"
131 131 not_same_project: "nepatří stejnému projektu"
132 132 circular_dependency: "Tento vztah by vytvořil cyklickou závislost"
133 133 cant_link_an_issue_with_a_descendant: "Úkol nemůže být spojen s jedním z jeho dílčích úkolů"
134 134
135 135 actionview_instancetag_blank_option: Prosím vyberte
136 136
137 137 general_text_No: 'Ne'
138 138 general_text_Yes: 'Ano'
139 139 general_text_no: 'ne'
140 140 general_text_yes: 'ano'
141 141 general_lang_name: 'Čeština'
142 142 general_csv_separator: ','
143 143 general_csv_decimal_separator: '.'
144 144 general_csv_encoding: UTF-8
145 145 general_pdf_encoding: UTF-8
146 146 general_first_day_of_week: '1'
147 147
148 148 notice_account_updated: Účet byl úspěšně změněn.
149 149 notice_account_invalid_creditentials: Chybné jméno nebo heslo
150 150 notice_account_password_updated: Heslo bylo úspěšně změněno.
151 151 notice_account_wrong_password: Chybné heslo
152 152 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.
153 153 notice_account_unknown_email: Neznámý uživatel.
154 154 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
155 155 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
156 156 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
157 157 notice_successful_create: Úspěšně vytvořeno.
158 158 notice_successful_update: Úspěšně aktualizováno.
159 159 notice_successful_delete: Úspěšně odstraněno.
160 160 notice_successful_connection: Úspěšné připojení.
161 161 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
162 162 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
163 163 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
164 164 notice_not_authorized_archived_project: Projekt ke kterému se snažíte přistupovat byl archivován.
165 165 notice_email_sent: "Na adresu %{value} byl odeslán email"
166 166 notice_email_error: "Při odesílání emailu nastala chyba (%{value})"
167 167 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
168 168 notice_api_access_key_reseted: Váš API přístupový klíč byl resetován.
169 169 notice_failed_to_save_issues: "Chyba při uložení %{count} úkolu(ů) z %{total} vybraných: %{ids}."
170 170 notice_failed_to_save_members: "Nepodařilo se uložit člena(y): %{errors}."
171 171 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
172 172 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
173 173 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
174 174 notice_unable_delete_version: Nemohu odstanit verzi
175 175 notice_unable_delete_time_entry: Nelze smazat čas ze záznamu.
176 176 notice_issue_done_ratios_updated: Koeficienty dokončení úkolu byly aktualizovány.
177 177 notice_gantt_chart_truncated: Graf byl oříznut, počet položek přesáhl limit pro zobrazení (%{max})
178 178
179 179 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %{value}"
180 180 error_scm_not_found: "Položka a/nebo revize neexistují v repozitáři."
181 181 error_scm_command_failed: "Při pokusu o přístup k repozitáři došlo k chybě: %{value}"
182 182 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
183 183 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
184 184 error_no_tracker_in_project: Žádná fronta nebyla přiřazena tomuto projektu. Prosím zkontroluje nastavení projektu.
185 185 error_no_default_issue_status: Není nastaven výchozí stav úkolu. Prosím zkontrolujte nastavení ("Administrace -> Stavy úkolů").
186 186 error_can_not_delete_custom_field: Nelze smazat volitelné pole
187 187 error_can_not_delete_tracker: Tato fronta obsahuje úkoly a nemůže být smazán.
188 188 error_can_not_remove_role: Tato role je právě používaná a nelze ji smazat.
189 189 error_can_not_reopen_issue_on_closed_version: Úkol přiřazený k uzavřené verzi nemůže být znovu otevřen
190 190 error_can_not_archive_project: Tento projekt nemůže být archivován
191 191 error_issue_done_ratios_not_updated: Koeficient dokončení úkolu nebyl aktualizován.
192 192 error_workflow_copy_source: Prosím vyberte zdrojovou frontu nebo roly
193 193 error_workflow_copy_target: Prosím vyberte cílovou frontu(y) a roly(e)
194 194 error_unable_delete_issue_status: Nelze smazat stavy úkolů
195 195 error_unable_to_connect: Nelze se připojit (%{value})
196 196 warning_attachments_not_saved: "%{count} soubor(ů) nebylo možné uložit."
197 197
198 198 mail_subject_lost_password: "Vaše heslo (%{value})"
199 199 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
200 200 mail_subject_register: "Aktivace účtu (%{value})"
201 201 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
202 202 mail_body_account_information_external: "Pomocí vašeho účtu %{value} se můžete přihlásit."
203 203 mail_body_account_information: Informace o vašem účtu
204 204 mail_subject_account_activation_request: "Aktivace %{value} účtu"
205 205 mail_body_account_activation_request: "Byl zaregistrován nový uživatel %{value}. Aktivace jeho účtu závisí na vašem potvrzení."
206 206 mail_subject_reminder: "%{count} úkol(ů) termín během několik dní (%{days})"
207 207 mail_body_reminder: "%{count} úkol(ů), které máte přiřazeny termín během několik dní (%{days}):"
208 208 mail_subject_wiki_content_added: "'%{id}' Wiki stránka byla přidána"
209 209 mail_body_wiki_content_added: "'%{id}' Wiki stránka byla přidána od %{author}."
210 210 mail_subject_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována"
211 211 mail_body_wiki_content_updated: "'%{id}' Wiki stránka byla aktualizována od %{author}."
212 212
213 213 gui_validation_error: 1 chyba
214 214 gui_validation_error_plural: "%{count} chyb(y)"
215 215
216 216 field_name: Název
217 217 field_description: Popis
218 218 field_summary: Přehled
219 219 field_is_required: Povinné pole
220 220 field_firstname: Jméno
221 221 field_lastname: Příjmení
222 222 field_mail: Email
223 223 field_filename: Soubor
224 224 field_filesize: Velikost
225 225 field_downloads: Staženo
226 226 field_author: Autor
227 227 field_created_on: Vytvořeno
228 228 field_updated_on: Aktualizováno
229 229 field_field_format: Formát
230 230 field_is_for_all: Pro všechny projekty
231 231 field_possible_values: Možné hodnoty
232 232 field_regexp: Regulární výraz
233 233 field_min_length: Minimální délka
234 234 field_max_length: Maximální délka
235 235 field_value: Hodnota
236 236 field_category: Kategorie
237 237 field_title: Název
238 238 field_project: Projekt
239 239 field_issue: Úkol
240 240 field_status: Stav
241 241 field_notes: Poznámka
242 242 field_is_closed: Úkol uzavřen
243 243 field_is_default: Výchozí stav
244 244 field_tracker: Fronta
245 245 field_subject: Předmět
246 246 field_due_date: Uzavřít do
247 247 field_assigned_to: Přiřazeno
248 248 field_priority: Priorita
249 249 field_fixed_version: Cílová verze
250 250 field_user: Uživatel
251 251 field_principal: Hlavní
252 252 field_role: Role
253 253 field_homepage: Domovská stránka
254 254 field_is_public: Veřejný
255 255 field_parent: Nadřazený projekt
256 256 field_is_in_roadmap: Úkoly zobrazené v plánu
257 257 field_login: Přihlášení
258 258 field_mail_notification: Emailová oznámení
259 259 field_admin: Administrátor
260 260 field_last_login_on: Poslední přihlášení
261 261 field_language: Jazyk
262 262 field_effective_date: Datum
263 263 field_password: Heslo
264 264 field_new_password: Nové heslo
265 265 field_password_confirmation: Potvrzení
266 266 field_version: Verze
267 267 field_type: Typ
268 268 field_host: Host
269 269 field_port: Port
270 270 field_account: Účet
271 271 field_base_dn: Base DN
272 272 field_attr_login: Přihlášení (atribut)
273 273 field_attr_firstname: Jméno (atribut)
274 274 field_attr_lastname: Příjemní (atribut)
275 275 field_attr_mail: Email (atribut)
276 276 field_onthefly: Automatické vytváření uživatelů
277 277 field_start_date: Začátek
278 field_done_ratio: % Hotovo
278 field_done_ratio: "% Hotovo"
279 279 field_auth_source: Autentifikační mód
280 280 field_hide_mail: Nezobrazovat můj email
281 281 field_comments: Komentář
282 282 field_url: URL
283 283 field_start_page: Výchozí stránka
284 284 field_subproject: Podprojekt
285 285 field_hours: Hodiny
286 286 field_activity: Aktivita
287 287 field_spent_on: Datum
288 288 field_identifier: Identifikátor
289 289 field_is_filter: Použít jako filtr
290 290 field_issue_to: Související úkol
291 291 field_delay: Zpoždění
292 292 field_assignable: Úkoly mohou být přiřazeny této roli
293 293 field_redirect_existing_links: Přesměrovat stvávající odkazy
294 294 field_estimated_hours: Odhadovaná doba
295 295 field_column_names: Sloupce
296 296 field_time_entries: Zaznamenaný čas
297 297 field_time_zone: Časové pásmo
298 298 field_searchable: Umožnit vyhledávání
299 299 field_default_value: Výchozí hodnota
300 300 field_comments_sorting: Zobrazit komentáře
301 301 field_parent_title: Rodičovská stránka
302 302 field_editable: Editovatelný
303 303 field_watcher: Sleduje
304 304 field_identity_url: OpenID URL
305 305 field_content: Obsah
306 306 field_group_by: Seskupovat výsledky podle
307 307 field_sharing: Sdílení
308 308 field_parent_issue: Rodičovský úkol
309 309 field_member_of_group: Skupina přiřaditele
310 310 field_assigned_to_role: Role přiřaditele
311 311 field_text: Textové pole
312 312 field_visible: Viditelný
313 313
314 314 setting_app_title: Název aplikace
315 315 setting_app_subtitle: Podtitulek aplikace
316 316 setting_welcome_text: Uvítací text
317 317 setting_default_language: Výchozí jazyk
318 318 setting_login_required: Autentifikace vyžadována
319 319 setting_self_registration: Povolena automatická registrace
320 320 setting_attachment_max_size: Maximální velikost přílohy
321 321 setting_issues_export_limit: Limit pro export úkolů
322 322 setting_mail_from: Odesílat emaily z adresy
323 323 setting_bcc_recipients: Příjemci skryté kopie (bcc)
324 324 setting_plain_text_mail: pouze prostý text (ne HTML)
325 325 setting_host_name: Jméno serveru
326 326 setting_text_formatting: Formátování textu
327 327 setting_wiki_compression: Komprese historie Wiki
328 328 setting_feeds_limit: Limit obsahu příspěvků
329 329 setting_default_projects_public: Nové projekty nastavovat jako veřejné
330 330 setting_autofetch_changesets: Automaticky stahovat commity
331 331 setting_sys_api_enabled: Povolit WS pro správu repozitory
332 332 setting_commit_ref_keywords: Klíčová slova pro odkazy
333 333 setting_commit_fix_keywords: Klíčová slova pro uzavření
334 334 setting_autologin: Automatické přihlašování
335 335 setting_date_format: Formát data
336 336 setting_time_format: Formát času
337 337 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
338 338 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
339 339 setting_repositories_encodings: Kódování
340 340 setting_commit_logs_encoding: Kódování zpráv při commitu
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_project_identifier_info: 'Jsou povolena malá písmena (a-z), čísla a pomlčky.<br />Po uložení již není možné identifikátor změnit.'
875 875 text_caracters_maximum: "%{count} znaků maximálně."
876 876 text_caracters_minimum: "Musí být alespoň %{count} znaků dlouhé."
877 877 text_length_between: "Délka mezi %{min} a %{max} znaky."
878 878 text_tracker_no_workflow: Pro tuto frontu není definován žádný průběh práce
879 879 text_unallowed_characters: Nepovolené znaky
880 880 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
881 881 text_line_separated: Více hodnot povoleno (jeden řádek pro každou hodnotu).
882 882 text_issues_ref_in_commit_messages: Odkazování a opravování úkolů ve zprávách commitů
883 883 text_issue_added: "Úkol %{id} byl vytvořen uživatelem %{author}."
884 884 text_issue_updated: "Úkol %{id} byl aktualizován uživatelem %{author}."
885 885 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto Wiki a celý její obsah?
886 886 text_issue_category_destroy_question: "Některé úkoly (%{count}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?"
887 887 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
888 888 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
889 889 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))."
890 890 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"
891 891 text_load_default_configuration: Nahrát výchozí konfiguraci
892 892 text_status_changed_by_changeset: "Použito v changesetu %{value}."
893 893 text_time_logged_by_changeset: Aplikováno v changesetu %{value}.
894 894 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
895 895 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
896 896 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
897 897 text_file_repository_writable: Povolen zápis do adresáře ukládání souborů
898 898 text_plugin_assets_writable: Možnost zápisu do adresáře plugin assets
899 899 text_rmagick_available: RMagick k dispozici (volitelné)
900 900 text_destroy_time_entries_question: "U úkolů, které chcete odstranit je evidováno %{hours} práce. Co chete udělat?"
901 901 text_destroy_time_entries: Odstranit evidované hodiny.
902 902 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
903 903 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
904 904 text_user_wrote: "%{value} napsal:"
905 905 text_enumeration_destroy_question: "Několik (%{count}) objektů je přiřazeno k této hodnotě."
906 906 text_enumeration_category_reassign_to: 'Přeřadit je do této:'
907 907 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."
908 908 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."
909 909 text_diff_truncated: '... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.'
910 910 text_custom_field_possible_values_info: 'Každá hodnota na novém řádku'
911 911 text_wiki_page_destroy_question: Tato stránka má %{descendants} podstránek a potomků. Co chcete udělat?
912 912 text_wiki_page_nullify_children: Ponechat podstránky jako kořenové stránky
913 913 text_wiki_page_destroy_children: Smazat podstránky a všechny jejich potomky
914 914 text_wiki_page_reassign_children: Přiřadit podstránky k tomuto rodiči
915 915 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?"
916 916 text_zoom_in: Přiblížit
917 917 text_zoom_out: Oddálit
918 918
919 919 default_role_manager: Manažer
920 920 default_role_developer: Vývojář
921 921 default_role_reporter: Reportér
922 922 default_tracker_bug: Chyba
923 923 default_tracker_feature: Požadavek
924 924 default_tracker_support: Podpora
925 925 default_issue_status_new: Nový
926 926 default_issue_status_in_progress: Ve vývoji
927 927 default_issue_status_resolved: Vyřešený
928 928 default_issue_status_feedback: Čeká se
929 929 default_issue_status_closed: Uzavřený
930 930 default_issue_status_rejected: Odmítnutý
931 931 default_doc_category_user: Uživatelská dokumentace
932 932 default_doc_category_tech: Technická dokumentace
933 933 default_priority_low: Nízká
934 934 default_priority_normal: Normální
935 935 default_priority_high: Vysoká
936 936 default_priority_urgent: Urgentní
937 937 default_priority_immediate: Okamžitá
938 938 default_activity_design: Návhr
939 939 default_activity_development: Vývoj
940 940
941 941 enumeration_issue_priorities: Priority úkolů
942 942 enumeration_doc_categories: Kategorie dokumentů
943 943 enumeration_activities: Aktivity (sledování času)
944 944 enumeration_system_activity: Systémová aktivita
945 945
946 946 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
947 947 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
948 948 label_my_queries: My custom queries
949 949 text_journal_changed_no_detail: "%{label} updated"
950 950 label_news_comment_added: Comment added to a news
951 951 button_expand_all: Expand all
952 952 button_collapse_all: Collapse all
953 953 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
954 954 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
955 955 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
956 956 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
957 957 label_role_anonymous: Anonymous
958 958 label_role_non_member: Non member
959 959 label_issue_note_added: Note added
960 960 label_issue_status_updated: Status updated
961 961 label_issue_priority_updated: Priority updated
962 962 label_issues_visibility_own: Issues created by or assigned to the user
963 963 field_issues_visibility: Issues visibility
964 964 label_issues_visibility_all: All issues
965 965 permission_set_own_issues_private: Set own issues public or private
966 966 field_is_private: Private
967 967 permission_set_issues_private: Set issues public or private
968 968 label_issues_visibility_public: All non private issues
969 969 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
@@ -1,981 +1,981
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_days:
55 55 one: "en dag"
56 56 other: "%{count} dage"
57 57 about_x_months:
58 58 one: "cirka en måned"
59 59 other: "cirka %{count} måneder"
60 60 x_months:
61 61 one: "en måned"
62 62 other: "%{count} måneder"
63 63 about_x_years:
64 64 one: "cirka et år"
65 65 other: "cirka %{count} år"
66 66 over_x_years:
67 67 one: "mere end et år"
68 68 other: "mere end %{count} år"
69 69 almost_x_years:
70 70 one: "næsten 1 år"
71 71 other: "næsten %{count} år"
72 72
73 73 number:
74 74 format:
75 75 separator: ","
76 76 delimiter: "."
77 77 precision: 3
78 78 currency:
79 79 format:
80 80 format: "%u %n"
81 81 unit: "DKK"
82 82 separator: ","
83 83 delimiter: "."
84 84 precision: 2
85 85 precision:
86 86 format:
87 87 # separator:
88 88 delimiter: ""
89 89 # precision:
90 90 human:
91 91 format:
92 92 # separator:
93 93 delimiter: ""
94 94 precision: 1
95 95 storage_units:
96 96 format: "%n %u"
97 97 units:
98 98 byte:
99 99 one: "Byte"
100 100 other: "Bytes"
101 101 kb: "KB"
102 102 mb: "MB"
103 103 gb: "GB"
104 104 tb: "TB"
105 105 percentage:
106 106 format:
107 107 # separator:
108 108 delimiter: ""
109 109 # precision:
110 110
111 111 activerecord:
112 112 errors:
113 113 template:
114 114 header:
115 115 one: "1 error prohibited this %{model} from being saved"
116 116 other: "%{count} errors prohibited this %{model} from being saved"
117 117 messages:
118 118 inclusion: "er ikke i listen"
119 119 exclusion: "er reserveret"
120 120 invalid: "er ikke gyldig"
121 121 confirmation: "stemmer ikke overens"
122 122 accepted: "skal accepteres"
123 123 empty: "må ikke udelades"
124 124 blank: "skal udfyldes"
125 125 too_long: "er for lang (højst %{count} tegn)"
126 126 too_short: "er for kort (mindst %{count} tegn)"
127 127 wrong_length: "har forkert længde (skulle være %{count} tegn)"
128 128 taken: "er allerede anvendt"
129 129 not_a_number: "er ikke et tal"
130 130 greater_than: "skal være større end %{count}"
131 131 greater_than_or_equal_to: "skal være større end eller lig med %{count}"
132 132 equal_to: "skal være lig med %{count}"
133 133 less_than: "skal være mindre end %{count}"
134 134 less_than_or_equal_to: "skal være mindre end eller lig med %{count}"
135 135 odd: "skal være ulige"
136 136 even: "skal være lige"
137 137 greater_than_start_date: "skal være senere end startdatoen"
138 138 not_same_project: "hører ikke til samme projekt"
139 139 circular_dependency: "Denne relation vil skabe et afhængighedsforhold"
140 140 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
141 141
142 142 template:
143 143 header:
144 144 one: "En fejl forhindrede %{model} i at blive gemt"
145 145 other: "%{count} fejl forhindrede denne %{model} i at blive gemt"
146 146 body: "Der var problemer med følgende felter:"
147 147
148 148 actionview_instancetag_blank_option: Vælg venligst
149 149
150 150 general_text_No: 'Nej'
151 151 general_text_Yes: 'Ja'
152 152 general_text_no: 'nej'
153 153 general_text_yes: 'ja'
154 154 general_lang_name: 'Danish (Dansk)'
155 155 general_csv_separator: ','
156 156 general_csv_encoding: ISO-8859-1
157 157 general_pdf_encoding: UTF-8
158 158 general_first_day_of_week: '1'
159 159
160 160 notice_account_updated: Kontoen er opdateret.
161 161 notice_account_invalid_creditentials: Ugyldig bruger og/eller kodeord
162 162 notice_account_password_updated: Kodeordet er opdateret.
163 163 notice_account_wrong_password: Forkert kodeord
164 164 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email.
165 165 notice_account_unknown_email: Ukendt bruger.
166 166 notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord.
167 167 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
168 168 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
169 169 notice_successful_create: Succesfuld oprettelse.
170 170 notice_successful_update: Succesfuld opdatering.
171 171 notice_successful_delete: Succesfuld sletning.
172 172 notice_successful_connection: Succesfuld forbindelse.
173 173 notice_file_not_found: Siden du forsøger at tilgå eksisterer ikke eller er blevet fjernet.
174 174 notice_locking_conflict: Data er opdateret af en anden bruger.
175 175 notice_not_authorized: Du har ikke adgang til denne side.
176 176 notice_email_sent: "En email er sendt til %{value}"
177 177 notice_email_error: "En fejl opstod under afsendelse af email (%{value})"
178 178 notice_feeds_access_key_reseted: Din adgangsnøgle til RSS er nulstillet.
179 179 notice_failed_to_save_issues: "Det mislykkedes at gemme %{count} sage(r) %{total} valgt: %{ids}."
180 180 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
181 181 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
182 182 notice_default_data_loaded: Standardopsætningen er indlæst.
183 183
184 184 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %{value}"
185 185 error_scm_not_found: "Adgang nægtet og/eller revision blev ikke fundet i det valgte repository."
186 186 error_scm_command_failed: "En fejl opstod under forbindelsen til det valgte repository: %{value}"
187 187
188 188 mail_subject_lost_password: "Dit %{value} kodeord"
189 189 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
190 190 mail_subject_register: "%{value} kontoaktivering"
191 191 mail_body_register: 'Klik dette link for at aktivere din konto:'
192 192 mail_body_account_information_external: "Du kan bruge din %{value} konto til at logge ind."
193 193 mail_body_account_information: Din kontoinformation
194 194 mail_subject_account_activation_request: "%{value} kontoaktivering"
195 195 mail_body_account_activation_request: "En ny bruger (%{value}) er registreret. Godkend venligst kontoen:"
196 196
197 197 gui_validation_error: 1 fejl
198 198 gui_validation_error_plural: "%{count} fejl"
199 199
200 200 field_name: Navn
201 201 field_description: Beskrivelse
202 202 field_summary: Sammenfatning
203 203 field_is_required: Skal udfyldes
204 204 field_firstname: Fornavn
205 205 field_lastname: Efternavn
206 206 field_mail: Email
207 207 field_filename: Fil
208 208 field_filesize: Størrelse
209 209 field_downloads: Downloads
210 210 field_author: Forfatter
211 211 field_created_on: Oprettet
212 212 field_updated_on: Opdateret
213 213 field_field_format: Format
214 214 field_is_for_all: For alle projekter
215 215 field_possible_values: Mulige værdier
216 216 field_regexp: Regulære udtryk
217 217 field_min_length: Mindste længde
218 218 field_max_length: Største længde
219 219 field_value: Værdi
220 220 field_category: Kategori
221 221 field_title: Titel
222 222 field_project: Projekt
223 223 field_issue: Sag
224 224 field_status: Status
225 225 field_notes: Noter
226 226 field_is_closed: Sagen er lukket
227 227 field_is_default: Standardværdi
228 228 field_tracker: Type
229 229 field_subject: Emne
230 230 field_due_date: Deadline
231 231 field_assigned_to: Tildelt til
232 232 field_priority: Prioritet
233 233 field_fixed_version: Target version
234 234 field_user: Bruger
235 235 field_role: Rolle
236 236 field_homepage: Hjemmeside
237 237 field_is_public: Offentlig
238 238 field_parent: Underprojekt af
239 239 field_is_in_roadmap: Sager vist i roadmap
240 240 field_login: Login
241 241 field_mail_notification: Email-påmindelser
242 242 field_admin: Administrator
243 243 field_last_login_on: Sidste forbindelse
244 244 field_language: Sprog
245 245 field_effective_date: Dato
246 246 field_password: Kodeord
247 247 field_new_password: Nyt kodeord
248 248 field_password_confirmation: Bekræft
249 249 field_version: Version
250 250 field_type: Type
251 251 field_host: Vært
252 252 field_port: Port
253 253 field_account: Kode
254 254 field_base_dn: Base DN
255 255 field_attr_login: Login attribut
256 256 field_attr_firstname: Fornavn attribut
257 257 field_attr_lastname: Efternavn attribut
258 258 field_attr_mail: Email attribut
259 259 field_onthefly: løbende brugeroprettelse
260 260 field_start_date: Start date
261 field_done_ratio: % Færdig
261 field_done_ratio: "% Færdig"
262 262 field_auth_source: Sikkerhedsmetode
263 263 field_hide_mail: Skjul min email
264 264 field_comments: Kommentar
265 265 field_url: URL
266 266 field_start_page: Startside
267 267 field_subproject: Underprojekt
268 268 field_hours: Timer
269 269 field_activity: Aktivitet
270 270 field_spent_on: Dato
271 271 field_identifier: Identifikator
272 272 field_is_filter: Brugt som et filter
273 273 field_issue_to: Beslægtede sag
274 274 field_delay: Udsættelse
275 275 field_assignable: Sager kan tildeles denne rolle
276 276 field_redirect_existing_links: Videresend eksisterende links
277 277 field_estimated_hours: Anslået tid
278 278 field_column_names: Kolonner
279 279 field_time_zone: Tidszone
280 280 field_searchable: Søgbar
281 281 field_default_value: Standardværdi
282 282
283 283 setting_app_title: Applikationstitel
284 284 setting_app_subtitle: Applikationsundertekst
285 285 setting_welcome_text: Velkomsttekst
286 286 setting_default_language: Standardsporg
287 287 setting_login_required: Sikkerhed påkrævet
288 288 setting_self_registration: Brugeroprettelse
289 289 setting_attachment_max_size: Vedhæftede filers max størrelse
290 290 setting_issues_export_limit: Sagseksporteringsbegrænsning
291 291 setting_mail_from: Afsender-email
292 292 setting_bcc_recipients: Skjult modtager (bcc)
293 293 setting_host_name: Værtsnavn
294 294 setting_text_formatting: Tekstformatering
295 295 setting_wiki_compression: Komprimering af wiki-historik
296 296 setting_feeds_limit: Feed indholdsbegrænsning
297 297 setting_autofetch_changesets: Hent automatisk commits
298 298 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
299 299 setting_commit_ref_keywords: Referencenøgleord
300 300 setting_commit_fix_keywords: Afslutningsnøgleord
301 301 setting_autologin: Automatisk login
302 302 setting_date_format: Datoformat
303 303 setting_time_format: Tidsformat
304 304 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
305 305 setting_issue_list_default_columns: Standardkolonner på sagslisten
306 306 setting_repositories_encodings: Repository-tegnsæt
307 307 setting_emails_footer: Email-fodnote
308 308 setting_protocol: Protokol
309 309 setting_user_format: Brugervisningsformat
310 310
311 311 project_module_issue_tracking: Sagssøgning
312 312 project_module_time_tracking: Tidsstyring
313 313 project_module_news: Nyheder
314 314 project_module_documents: Dokumenter
315 315 project_module_files: Filer
316 316 project_module_wiki: Wiki
317 317 project_module_repository: Repository
318 318 project_module_boards: Fora
319 319
320 320 label_user: Bruger
321 321 label_user_plural: Brugere
322 322 label_user_new: Ny bruger
323 323 label_project: Projekt
324 324 label_project_new: Nyt projekt
325 325 label_project_plural: Projekter
326 326 label_x_projects:
327 327 zero: Ingen projekter
328 328 one: 1 projekt
329 329 other: "%{count} projekter"
330 330 label_project_all: Alle projekter
331 331 label_project_latest: Seneste projekter
332 332 label_issue: Sag
333 333 label_issue_new: Opret sag
334 334 label_issue_plural: Sager
335 335 label_issue_view_all: Vis alle sager
336 336 label_issues_by: "Sager fra %{value}"
337 337 label_issue_added: Sagen er oprettet
338 338 label_issue_updated: Sagen er opdateret
339 339 label_document: Dokument
340 340 label_document_new: Nyt dokument
341 341 label_document_plural: Dokumenter
342 342 label_document_added: Dokument tilføjet
343 343 label_role: Rolle
344 344 label_role_plural: Roller
345 345 label_role_new: Ny rolle
346 346 label_role_and_permissions: Roller og rettigheder
347 347 label_member: Medlem
348 348 label_member_new: Nyt medlem
349 349 label_member_plural: Medlemmer
350 350 label_tracker: Type
351 351 label_tracker_plural: Typer
352 352 label_tracker_new: Ny type
353 353 label_workflow: Arbejdsgang
354 354 label_issue_status: Sagsstatus
355 355 label_issue_status_plural: Sagsstatuser
356 356 label_issue_status_new: Ny status
357 357 label_issue_category: Sagskategori
358 358 label_issue_category_plural: Sagskategorier
359 359 label_issue_category_new: Ny kategori
360 360 label_custom_field: Brugerdefineret felt
361 361 label_custom_field_plural: Brugerdefinerede felter
362 362 label_custom_field_new: Nyt brugerdefineret felt
363 363 label_enumerations: Værdier
364 364 label_enumeration_new: Ny værdi
365 365 label_information: Information
366 366 label_information_plural: Information
367 367 label_please_login: Login
368 368 label_register: Registrér
369 369 label_password_lost: Glemt kodeord
370 370 label_home: Forside
371 371 label_my_page: Min side
372 372 label_my_account: Min konto
373 373 label_my_projects: Mine projekter
374 374 label_administration: Administration
375 375 label_login: Log ind
376 376 label_logout: Log ud
377 377 label_help: Hjælp
378 378 label_reported_issues: Rapporterede sager
379 379 label_assigned_to_me_issues: Sager tildelt mig
380 380 label_last_login: Sidste login tidspunkt
381 381 label_registered_on: Registreret den
382 382 label_activity: Aktivitet
383 383 label_new: Ny
384 384 label_logged_as: Registreret som
385 385 label_environment: Miljø
386 386 label_authentication: Sikkerhed
387 387 label_auth_source: Sikkerhedsmetode
388 388 label_auth_source_new: Ny sikkerhedsmetode
389 389 label_auth_source_plural: Sikkerhedsmetoder
390 390 label_subproject_plural: Underprojekter
391 391 label_min_max_length: Min - Max længde
392 392 label_list: Liste
393 393 label_date: Dato
394 394 label_integer: Heltal
395 395 label_float: Kommatal
396 396 label_boolean: Sand/falsk
397 397 label_string: Tekst
398 398 label_text: Lang tekst
399 399 label_attribute: Attribut
400 400 label_attribute_plural: Attributter
401 401 label_download: "%{count} Download"
402 402 label_download_plural: "%{count} Downloads"
403 403 label_no_data: Ingen data at vise
404 404 label_change_status: Ændringsstatus
405 405 label_history: Historik
406 406 label_attachment: Fil
407 407 label_attachment_new: Ny fil
408 408 label_attachment_delete: Slet fil
409 409 label_attachment_plural: Filer
410 410 label_file_added: Fil tilføjet
411 411 label_report: Rapport
412 412 label_report_plural: Rapporter
413 413 label_news: Nyheder
414 414 label_news_new: Tilføj nyheder
415 415 label_news_plural: Nyheder
416 416 label_news_latest: Seneste nyheder
417 417 label_news_view_all: Vis alle nyheder
418 418 label_news_added: Nyhed tilføjet
419 419 label_settings: Indstillinger
420 420 label_overview: Oversigt
421 421 label_version: Udgave
422 422 label_version_new: Ny udgave
423 423 label_version_plural: Udgaver
424 424 label_confirmation: Bekræftelser
425 425 label_export_to: Eksporter til
426 426 label_read: Læs...
427 427 label_public_projects: Offentlige projekter
428 428 label_open_issues: åben
429 429 label_open_issues_plural: åbne
430 430 label_closed_issues: lukket
431 431 label_closed_issues_plural: lukkede
432 432 label_x_open_issues_abbr_on_total:
433 433 zero: 0 åbne / %{total}
434 434 one: 1 åben / %{total}
435 435 other: "%{count} åbne / %{total}"
436 436 label_x_open_issues_abbr:
437 437 zero: 0 åbne
438 438 one: 1 åben
439 439 other: "%{count} åbne"
440 440 label_x_closed_issues_abbr:
441 441 zero: 0 lukkede
442 442 one: 1 lukket
443 443 other: "%{count} lukkede"
444 444 label_total: Total
445 445 label_permissions: Rettigheder
446 446 label_current_status: Nuværende status
447 447 label_new_statuses_allowed: Ny status tilladt
448 448 label_all: alle
449 449 label_none: intet
450 450 label_nobody: ingen
451 451 label_next: Næste
452 452 label_previous: Forrige
453 453 label_used_by: Brugt af
454 454 label_details: Detaljer
455 455 label_add_note: Tilføj note
456 456 label_per_page: Pr. side
457 457 label_calendar: Kalender
458 458 label_months_from: måneder frem
459 459 label_gantt: Gantt
460 460 label_internal: Intern
461 461 label_last_changes: "sidste %{count} ændringer"
462 462 label_change_view_all: Vis alle ændringer
463 463 label_personalize_page: Tilret denne side
464 464 label_comment: Kommentar
465 465 label_comment_plural: Kommentarer
466 466 label_x_comments:
467 467 zero: ingen kommentarer
468 468 one: 1 kommentar
469 469 other: "%{count} kommentarer"
470 470 label_comment_add: Tilføj en kommentar
471 471 label_comment_added: Kommentaren er tilføjet
472 472 label_comment_delete: Slet kommentar
473 473 label_query: Brugerdefineret forespørgsel
474 474 label_query_plural: Brugerdefinerede forespørgsler
475 475 label_query_new: Ny forespørgsel
476 476 label_filter_add: Tilføj filter
477 477 label_filter_plural: Filtre
478 478 label_equals: er
479 479 label_not_equals: er ikke
480 480 label_in_less_than: er mindre end
481 481 label_in_more_than: er større end
482 482 label_in: indeholdt i
483 483 label_today: i dag
484 484 label_all_time: altid
485 485 label_yesterday: i går
486 486 label_this_week: denne uge
487 487 label_last_week: sidste uge
488 488 label_last_n_days: "sidste %{count} dage"
489 489 label_this_month: denne måned
490 490 label_last_month: sidste måned
491 491 label_this_year: dette år
492 492 label_date_range: Dato interval
493 493 label_less_than_ago: mindre end dage siden
494 494 label_more_than_ago: mere end dage siden
495 495 label_ago: days siden
496 496 label_contains: indeholder
497 497 label_not_contains: ikke indeholder
498 498 label_day_plural: dage
499 499 label_repository: Repository
500 500 label_repository_plural: Repositories
501 501 label_browse: Gennemse
502 502 label_modification: "%{count} ændring"
503 503 label_modification_plural: "%{count} ændringer"
504 504 label_revision: Revision
505 505 label_revision_plural: Revisioner
506 506 label_associated_revisions: Tilnyttede revisioner
507 507 label_added: tilføjet
508 508 label_modified: ændret
509 509 label_deleted: slettet
510 510 label_latest_revision: Seneste revision
511 511 label_latest_revision_plural: Seneste revisioner
512 512 label_view_revisions: Se revisioner
513 513 label_max_size: Maksimal størrelse
514 514 label_sort_highest: Flyt til toppen
515 515 label_sort_higher: Flyt op
516 516 label_sort_lower: Flyt ned
517 517 label_sort_lowest: Flyt til bunden
518 518 label_roadmap: Roadmap
519 519 label_roadmap_due_in: Deadline
520 520 label_roadmap_overdue: "%{value} forsinket"
521 521 label_roadmap_no_issues: Ingen sager i denne version
522 522 label_search: Søg
523 523 label_result_plural: Resultater
524 524 label_all_words: Alle ord
525 525 label_wiki: Wiki
526 526 label_wiki_edit: Wiki ændring
527 527 label_wiki_edit_plural: Wiki ændringer
528 528 label_wiki_page: Wiki side
529 529 label_wiki_page_plural: Wiki sider
530 530 label_index_by_title: Indhold efter titel
531 531 label_index_by_date: Indhold efter dato
532 532 label_current_version: Nuværende version
533 533 label_preview: Forhåndsvisning
534 534 label_feed_plural: Feeds
535 535 label_changes_details: Detaljer for alle ændringer
536 536 label_issue_tracking: Sags søgning
537 537 label_spent_time: Anvendt tid
538 538 label_f_hour: "%{value} time"
539 539 label_f_hour_plural: "%{value} timer"
540 540 label_time_tracking: Tidsstyring
541 541 label_change_plural: Ændringer
542 542 label_statistics: Statistik
543 543 label_commits_per_month: Commits pr. måned
544 544 label_commits_per_author: Commits pr. bruger
545 545 label_view_diff: Vis forskelle
546 546 label_diff_inline: inline
547 547 label_diff_side_by_side: side om side
548 548 label_options: Formatering
549 549 label_copy_workflow_from: Kopier arbejdsgang fra
550 550 label_permissions_report: Godkendelsesrapport
551 551 label_watched_issues: Overvågede sager
552 552 label_related_issues: Relaterede sager
553 553 label_applied_status: Anvendte statuser
554 554 label_loading: Indlæser...
555 555 label_relation_new: Ny relation
556 556 label_relation_delete: Slet relation
557 557 label_relates_to: relaterer til
558 558 label_duplicates: duplikater
559 559 label_blocks: blokerer
560 560 label_blocked_by: blokeret af
561 561 label_precedes: kommer før
562 562 label_follows: følger
563 563 label_end_to_start: slut til start
564 564 label_end_to_end: slut til slut
565 565 label_start_to_start: start til start
566 566 label_start_to_end: start til slut
567 567 label_stay_logged_in: Forbliv indlogget
568 568 label_disabled: deaktiveret
569 569 label_show_completed_versions: Vis færdige versioner
570 570 label_me: mig
571 571 label_board: Forum
572 572 label_board_new: Nyt forum
573 573 label_board_plural: Fora
574 574 label_topic_plural: Emner
575 575 label_message_plural: Beskeder
576 576 label_message_last: Sidste besked
577 577 label_message_new: Ny besked
578 578 label_message_posted: Besked tilføjet
579 579 label_reply_plural: Besvarer
580 580 label_send_information: Send konto information til bruger
581 581 label_year: År
582 582 label_month: Måned
583 583 label_week: Uge
584 584 label_date_from: Fra
585 585 label_date_to: Til
586 586 label_language_based: Baseret på brugerens sprog
587 587 label_sort_by: "Sortér efter %{value}"
588 588 label_send_test_email: Send en test email
589 589 label_feeds_access_key_created_on: "RSS adgangsnøgle dannet for %{value} siden"
590 590 label_module_plural: Moduler
591 591 label_added_time_by: "Tilføjet af %{author} for %{age} siden"
592 592 label_updated_time: "Opdateret for %{value} siden"
593 593 label_jump_to_a_project: Skift til projekt...
594 594 label_file_plural: Filer
595 595 label_changeset_plural: Ændringer
596 596 label_default_columns: Standard kolonner
597 597 label_no_change_option: (Ingen ændringer)
598 598 label_bulk_edit_selected_issues: Masse-ret de valgte sager
599 599 label_theme: Tema
600 600 label_default: standard
601 601 label_search_titles_only: Søg kun i titler
602 602 label_user_mail_option_all: "For alle hændelser mine projekter"
603 603 label_user_mail_option_selected: "For alle hændelser de valgte projekter..."
604 604 label_user_mail_no_self_notified: "Jeg ønsker ikke besked om ændring foretaget af mig selv"
605 605 label_registration_activation_by_email: kontoaktivering på email
606 606 label_registration_manual_activation: manuel kontoaktivering
607 607 label_registration_automatic_activation: automatisk kontoaktivering
608 608 label_display_per_page: "Per side: %{value}"
609 609 label_age: Alder
610 610 label_change_properties: Ændre indstillinger
611 611 label_general: Generelt
612 612 label_more: Mere
613 613 label_scm: SCM
614 614 label_plugins: Plugins
615 615 label_ldap_authentication: LDAP-godkendelse
616 616 label_downloads_abbr: D/L
617 617
618 618 button_login: Login
619 619 button_submit: Send
620 620 button_save: Gem
621 621 button_check_all: Vælg alt
622 622 button_uncheck_all: Fravælg alt
623 623 button_delete: Slet
624 624 button_create: Opret
625 625 button_test: Test
626 626 button_edit: Ret
627 627 button_add: Tilføj
628 628 button_change: Ændre
629 629 button_apply: Anvend
630 630 button_clear: Nulstil
631 631 button_lock: Lås
632 632 button_unlock: Lås op
633 633 button_download: Download
634 634 button_list: List
635 635 button_view: Vis
636 636 button_move: Flyt
637 637 button_back: Tilbage
638 638 button_cancel: Annullér
639 639 button_activate: Aktivér
640 640 button_sort: Sortér
641 641 button_log_time: Log tid
642 642 button_rollback: Tilbagefør til denne version
643 643 button_watch: Overvåg
644 644 button_unwatch: Stop overvågning
645 645 button_reply: Besvar
646 646 button_archive: Arkivér
647 647 button_unarchive: Fjern fra arkiv
648 648 button_reset: Nulstil
649 649 button_rename: Omdøb
650 650 button_change_password: Skift kodeord
651 651 button_copy: Kopiér
652 652 button_annotate: Annotér
653 653 button_update: Opdatér
654 654 button_configure: Konfigurér
655 655
656 656 status_active: aktiv
657 657 status_registered: registreret
658 658 status_locked: låst
659 659
660 660 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
661 661 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
662 662 text_min_max_length_info: 0 betyder ingen begrænsninger
663 663 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
664 664 text_workflow_edit: Vælg en rolle samt en type, for at redigere arbejdsgangen
665 665 text_are_you_sure: Er du sikker?
666 666 text_tip_issue_begin_day: opgaven begynder denne dag
667 667 text_tip_issue_end_day: opaven slutter denne dag
668 668 text_tip_issue_begin_end_day: opgaven begynder og slutter denne dag
669 669 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Denne er en unik identifikation for projektet, og kan defor ikke rettes senere.'
670 670 text_caracters_maximum: "max %{count} karakterer."
671 671 text_caracters_minimum: "Skal være mindst %{count} karakterer lang."
672 672 text_length_between: "Længde skal være mellem %{min} og %{max} karakterer."
673 673 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
674 674 text_unallowed_characters: Ikke-tilladte karakterer
675 675 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
676 676 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
677 677 text_issue_added: "Sag %{id} er rapporteret af %{author}."
678 678 text_issue_updated: "Sag %{id} er blevet opdateret af %{author}."
679 679 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
680 680 text_issue_category_destroy_question: "Nogle sager (%{count}) er tildelt denne kategori. Hvad ønsker du at gøre?"
681 681 text_issue_category_destroy_assignments: Slet tildelinger af kategori
682 682 text_issue_category_reassign_to: Tildel sager til denne kategori
683 683 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)."
684 684 text_no_configuration_data: "Roller, typer, sagsstatuser 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."
685 685 text_load_default_configuration: Indlæs standardopsætningen
686 686 text_status_changed_by_changeset: "Anvendt i ændring %{value}."
687 687 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
688 688 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
689 689 text_default_administrator_account_changed: Standard administratorkonto ændret
690 690 text_file_repository_writable: Filarkiv er skrivbar
691 691 text_rmagick_available: RMagick tilgængelig (valgfri)
692 692
693 693 default_role_manager: Leder
694 694 default_role_developer: Udvikler
695 695 default_role_reporter: Rapportør
696 696 default_tracker_bug: Bug
697 697 default_tracker_feature: Feature
698 698 default_tracker_support: Support
699 699 default_issue_status_new: Ny
700 700 default_issue_status_in_progress: Igangværende
701 701 default_issue_status_resolved: Løst
702 702 default_issue_status_feedback: Feedback
703 703 default_issue_status_closed: Lukket
704 704 default_issue_status_rejected: Afvist
705 705 default_doc_category_user: Brugerdokumentation
706 706 default_doc_category_tech: Teknisk dokumentation
707 707 default_priority_low: Lav
708 708 default_priority_normal: Normal
709 709 default_priority_high: Høj
710 710 default_priority_urgent: Akut
711 711 default_priority_immediate: Omgående
712 712 default_activity_design: Design
713 713 default_activity_development: Udvikling
714 714
715 715 enumeration_issue_priorities: Sagsprioriteter
716 716 enumeration_doc_categories: Dokumentkategorier
717 717 enumeration_activities: Aktiviteter (tidsstyring)
718 718
719 719 label_add_another_file: Tilføj endnu en fil
720 720 label_chronological_order: I kronologisk rækkefølge
721 721 setting_activity_days_default: Antal dage der vises under projektaktivitet
722 722 text_destroy_time_entries_question: "%{hours} timer er registreret denne sag som du er ved at slette. Hvad vil du gøre?"
723 723 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
724 724 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
725 725 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
726 726 label_optional_description: Optionel beskrivelse
727 727 text_destroy_time_entries: Slet registrerede timer
728 728 field_comments_sorting: Vis kommentar
729 729 text_reassign_time_entries: 'Tildel registrerede timer til denne sag igen'
730 730 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
731 731 label_preferences: Preferences
732 732 label_overall_activity: Overordnet aktivitet
733 733 setting_default_projects_public: Nye projekter er offentlige som standard
734 734 error_scm_annotate: "Filen findes ikke, eller kunne ikke annoteres."
735 735 label_planning: Planlægning
736 736 text_subprojects_destroy_warning: "Dets underprojekter(er): %{value} vil også blive slettet."
737 737 permission_edit_issues: Redigér sager
738 738 setting_diff_max_lines_displayed: Højeste antal forskelle der vises
739 739 permission_edit_own_issue_notes: Redigér egne noter
740 740 setting_enabled_scm: Aktiveret SCM
741 741 button_quote: Citér
742 742 permission_view_files: Se filer
743 743 permission_add_issues: Tilføj sager
744 744 permission_edit_own_messages: Redigér egne beskeder
745 745 permission_delete_own_messages: Slet egne beskeder
746 746 permission_manage_public_queries: Administrér offentlig forespørgsler
747 747 permission_log_time: Registrér anvendt tid
748 748 label_renamed: omdøbt
749 749 label_incoming_emails: Indkommende emails
750 750 permission_view_changesets: Se ændringer
751 751 permission_manage_versions: Administrér versioner
752 752 permission_view_time_entries: Se anvendt tid
753 753 label_generate_key: Generér en nøglefil
754 754 permission_manage_categories: Administrér sagskategorier
755 755 permission_manage_wiki: Administrér wiki
756 756 setting_sequential_project_identifiers: Generér sekventielle projekt-identifikatorer
757 757 setting_plain_text_mail: Emails som almindelig tekst (ingen HTML)
758 758 field_parent_title: Siden over
759 759 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."
760 760 permission_protect_wiki_pages: Beskyt wiki sider
761 761 permission_manage_documents: Administrér dokumenter
762 762 permission_add_issue_watchers: Tilføj overvågere
763 763 warning_attachments_not_saved: "der var %{count} fil(er), som ikke kunne gemmes."
764 764 permission_comment_news: Kommentér nyheder
765 765 text_enumeration_category_reassign_to: 'FLyt dem til denne værdi:'
766 766 permission_select_project_modules: Vælg projektmoduler
767 767 permission_view_gantt: Se Gantt diagram
768 768 permission_delete_messages: Slet beskeder
769 769 permission_move_issues: Flyt sager
770 770 permission_edit_wiki_pages: Redigér wiki sider
771 771 label_user_activity: "%{value}'s aktivitet"
772 772 permission_manage_issue_relations: Administrér sags-relationer
773 773 label_issue_watchers: Overvågere
774 774 permission_delete_wiki_pages: Slet wiki sider
775 775 notice_unable_delete_version: Kan ikke slette versionen.
776 776 permission_view_wiki_edits: Se wiki historik
777 777 field_editable: Redigérbar
778 778 label_duplicated_by: dubleret af
779 779 permission_manage_boards: Administrér fora
780 780 permission_delete_wiki_pages_attachments: Slet filer vedhæftet wiki sider
781 781 permission_view_messages: Se beskeder
782 782 text_enumeration_destroy_question: "%{count} objekter er tildelt denne værdi."
783 783 permission_manage_files: Administrér filer
784 784 permission_add_messages: Opret beskeder
785 785 permission_edit_issue_notes: Redigér noter
786 786 permission_manage_news: Administrér nyheder
787 787 text_plugin_assets_writable: Der er skriverettigheder til plugin assets folderen
788 788 label_display: Vis
789 789 label_and_its_subprojects: "%{value} og dets underprojekter"
790 790 permission_view_calendar: Se kalender
791 791 button_create_and_continue: Opret og fortsæt
792 792 setting_gravatar_enabled: Anvend Gravatar bruger ikoner
793 793 label_updated_time_by: "Opdateret af %{author} for %{age} siden"
794 794 text_diff_truncated: '... Listen over forskelle er bleve afkortet da den overstiger den maksimale størrelse der kan vises.'
795 795 text_user_wrote: "%{value} skrev:"
796 796 setting_mail_handler_api_enabled: Aktiver webservice for indkomne emails
797 797 permission_delete_issues: Slet sager
798 798 permission_view_documents: Se dokumenter
799 799 permission_browse_repository: Gennemse repository
800 800 permission_manage_repository: Administrér repository
801 801 permission_manage_members: Administrér medlemmer
802 802 mail_subject_reminder: "%{count} sag(er) har deadline i de kommende dage (%{days})"
803 803 permission_add_issue_notes: Tilføj noter
804 804 permission_edit_messages: Redigér beskeder
805 805 permission_view_issue_watchers: Se liste over overvågere
806 806 permission_commit_access: Commit adgang
807 807 setting_mail_handler_api_key: API nøgle
808 808 label_example: Eksempel
809 809 permission_rename_wiki_pages: Omdøb wiki sider
810 810 text_custom_field_possible_values_info: 'En linje for hver værdi'
811 811 permission_view_wiki_pages: Se wiki
812 812 permission_edit_project: Redigér projekt
813 813 permission_save_queries: Gem forespørgsler
814 814 label_copied: kopieret
815 815 setting_commit_logs_encoding: Kodning af Commit beskeder
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 ikek defineret en standardstatus. Kontrollér venligst indstillingernen (Gå til "Administration -> Sagsstatuser").
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 projekt hierarki
875 875 label_version_sharing_system: Med alle projekter
876 876 label_version_sharing_descendants: Med under projekter
877 877 label_version_sharing_tree: Med projekt træ
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 sags status
885 885 error_issue_done_ratios_not_updated: Sagsløsnings ratio, ikke opdateret.
886 886 error_workflow_copy_target: Vælg venligst mål tracker og rolle(r)
887 887 setting_issue_done_ratio_issue_field: Benyt sags felt
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øsnings ratio opdateret.
891 891 error_workflow_copy_source: Vælg venligst en kilde tracker eller rolle
892 892 label_update_issue_done_ratios: Opdater sagsløsnings ratio
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 statuser 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 projekt aktiviteter
918 918 error_unable_delete_issue_status: Det var ikke muligt at slette sags status
919 919 label_profile: Profil
920 920 permission_manage_subtasks: Administrer under opgaver
921 921 field_parent_issue: Hoved opgave
922 922 label_subtask_plural: Under opgaver
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 in
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: Only for things I am the owner of
942 942 setting_default_notification_option: Default notification option
943 943 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
944 944 label_user_mail_option_only_assigned: Only for things I am assigned to
945 945 label_user_mail_option_none: No events
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: The project you're trying to access has been archived.
949 949 label_principal_search: "Search for user or group:"
950 950 label_user_search: "Search for user:"
951 951 field_visible: Visible
952 952 setting_emails_header: Emails header
953 953 setting_commit_logtime_activity_id: Activity for logged time
954 954 text_time_logged_by_changeset: Applied in changeset %{value}.
955 955 setting_commit_logtime_enabled: Enable time logging
956 956 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
957 957 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
958 958 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
959 959 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
960 960 label_my_queries: My custom queries
961 961 text_journal_changed_no_detail: "%{label} updated"
962 962 label_news_comment_added: Comment added to a news
963 963 button_expand_all: Expand all
964 964 button_collapse_all: Collapse all
965 965 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
966 966 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
967 967 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
968 968 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
969 969 label_role_anonymous: Anonymous
970 970 label_role_non_member: Non member
971 971 label_issue_note_added: Note added
972 972 label_issue_status_updated: Status updated
973 973 label_issue_priority_updated: Priority updated
974 974 label_issues_visibility_own: Issues created by or assigned to the user
975 975 field_issues_visibility: Issues visibility
976 976 label_issues_visibility_all: All issues
977 977 permission_set_own_issues_private: Set own issues public or private
978 978 field_is_private: Private
979 979 permission_set_issues_private: Set issues public or private
980 980 label_issues_visibility_public: All non private issues
981 981 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
@@ -1,982 +1,982
1 1 # German translations for Ruby on Rails
2 2 # by Clemens Kofler (clemens@railway.at)
3 3
4 4 de:
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: "%d.%m.%Y"
12 12 short: "%e. %b"
13 13 long: "%e. %B %Y"
14 14
15 15 day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
16 16 abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
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: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
20 20 abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
21 21 # Used in date_select and datime_select.
22 22 order:
23 23 - :day
24 24 - :month
25 25 - :year
26 26
27 27 time:
28 28 formats:
29 29 default: "%d.%m.%Y %H:%M"
30 30 time: "%H:%M"
31 31 short: "%e. %b %H:%M"
32 32 long: "%A, %e. %B %Y, %H:%M Uhr"
33 33 am: "vormittags"
34 34 pm: "nachmittags"
35 35
36 36 datetime:
37 37 distance_in_words:
38 38 half_a_minute: 'eine halbe Minute'
39 39 less_than_x_seconds:
40 40 one: 'weniger als 1 Sekunde'
41 41 other: 'weniger als %{count} Sekunden'
42 42 x_seconds:
43 43 one: '1 Sekunde'
44 44 other: '%{count} Sekunden'
45 45 less_than_x_minutes:
46 46 one: 'weniger als 1 Minute'
47 47 other: 'weniger als %{count} Minuten'
48 48 x_minutes:
49 49 one: '1 Minute'
50 50 other: '%{count} Minuten'
51 51 about_x_hours:
52 52 one: 'etwa 1 Stunde'
53 53 other: 'etwa %{count} Stunden'
54 54 x_days:
55 55 one: '1 Tag'
56 56 other: '%{count} Tagen'
57 57 about_x_months:
58 58 one: 'etwa 1 Monat'
59 59 other: 'etwa %{count} Monaten'
60 60 x_months:
61 61 one: '1 Monat'
62 62 other: '%{count} Monaten'
63 63 about_x_years:
64 64 one: 'etwa 1 Jahr'
65 65 other: 'etwa %{count} Jahren'
66 66 over_x_years:
67 67 one: 'mehr als 1 Jahr'
68 68 other: 'mehr als %{count} Jahren'
69 69 almost_x_years:
70 70 one: "fast 1 Jahr"
71 71 other: "fast %{count} Jahren"
72 72
73 73 number:
74 74 # Default format for numbers
75 75 format:
76 76 separator: ','
77 77 delimiter: '.'
78 78 precision: 2
79 79 currency:
80 80 format:
81 81 unit: '€'
82 82 format: '%n %u'
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: 1
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
108 108 # Used in array.to_sentence.
109 109 support:
110 110 array:
111 111 sentence_connector: "und"
112 112 skip_last_comma: true
113 113
114 114 activerecord:
115 115 errors:
116 116 template:
117 117 header:
118 118 one: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler."
119 119 other: "Dieses %{model}-Objekt konnte nicht gespeichert werden: %{count} Fehler."
120 120 body: "Bitte überprüfen Sie die folgenden Felder:"
121 121
122 122 messages:
123 123 inclusion: "ist kein gültiger Wert"
124 124 exclusion: "ist nicht verfügbar"
125 125 invalid: "ist nicht gültig"
126 126 confirmation: "stimmt nicht mit der Bestätigung überein"
127 127 accepted: "muss akzeptiert werden"
128 128 empty: "muss ausgefüllt werden"
129 129 blank: "muss ausgefüllt werden"
130 130 too_long: "ist zu lang (nicht mehr als %{count} Zeichen)"
131 131 too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)"
132 132 wrong_length: "hat die falsche Länge (muss genau %{count} Zeichen haben)"
133 133 taken: "ist bereits vergeben"
134 134 not_a_number: "ist keine Zahl"
135 135 not_a_date: "is kein gültiges Datum"
136 136 greater_than: "muss größer als %{count} sein"
137 137 greater_than_or_equal_to: "muss größer oder gleich %{count} sein"
138 138 equal_to: "muss genau %{count} sein"
139 139 less_than: "muss kleiner als %{count} sein"
140 140 less_than_or_equal_to: "muss kleiner oder gleich %{count} sein"
141 141 odd: "muss ungerade sein"
142 142 even: "muss gerade sein"
143 143 greater_than_start_date: "muss größer als Anfangsdatum sein"
144 144 not_same_project: "gehört nicht zum selben Projekt"
145 145 circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen"
146 146 cant_link_an_issue_with_a_descendant: "Ein Ticket kann nicht mit einer ihrer Unteraufgaben verlinkt werden"
147 147
148 148 actionview_instancetag_blank_option: Bitte auswählen
149 149
150 150 general_text_No: 'Nein'
151 151 general_text_Yes: 'Ja'
152 152 general_text_no: 'nein'
153 153 general_text_yes: 'ja'
154 154 general_lang_name: 'Deutsch'
155 155 general_csv_separator: ';'
156 156 general_csv_decimal_separator: ','
157 157 general_csv_encoding: ISO-8859-1
158 158 general_pdf_encoding: UTF-8
159 159 general_first_day_of_week: '1'
160 160
161 161 notice_account_updated: Konto wurde erfolgreich aktualisiert.
162 162 notice_account_invalid_creditentials: Benutzer oder Kennwort ist ungültig.
163 163 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
164 164 notice_account_wrong_password: Falsches Kennwort.
165 165 notice_account_register_done: Konto wurde erfolgreich angelegt.
166 166 notice_account_unknown_email: Unbekannter Benutzer.
167 167 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
168 168 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
169 169 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
170 170 notice_successful_create: Erfolgreich angelegt
171 171 notice_successful_update: Erfolgreich aktualisiert.
172 172 notice_successful_delete: Erfolgreich gelöscht.
173 173 notice_successful_connection: Verbindung erfolgreich.
174 174 notice_file_not_found: Anhang existiert nicht oder ist gelöscht worden.
175 175 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
176 176 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
177 177 notice_email_sent: "Eine E-Mail wurde an %{value} gesendet."
178 178 notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten (%{value})."
179 179 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
180 180 notice_api_access_key_reseted: Ihr API-Zugriffsschlüssel wurde zurückgesetzt.
181 181 notice_failed_to_save_issues: "%{count} von %{total} ausgewählten Tickets konnte(n) nicht gespeichert werden: %{ids}."
182 182 notice_failed_to_save_members: "Benutzer konnte nicht gespeichert werden: %{errors}."
183 183 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
184 184 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
185 185 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
186 186 notice_unable_delete_version: Die Version konnte nicht gelöscht werden.
187 187 notice_unable_delete_time_entry: Der Zeiterfassungseintrag konnte nicht gelöscht werden.
188 188 notice_issue_done_ratios_updated: Der Ticket-Fortschritt wurde aktualisiert.
189 189
190 190 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %{value}"
191 191 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
192 192 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %{value}"
193 193 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
194 194 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
195 195 error_no_tracker_in_project: Diesem Projekt ist kein Tracker zugeordnet. Bitte überprüfen Sie die Projekteinstellungen.
196 196 error_no_default_issue_status: Es ist kein Status als Standard definiert. Bitte überprüfen Sie Ihre Konfiguration (unter "Administration -> Ticket-Status").
197 197 error_can_not_delete_custom_field: Kann das benutzerdefinierte Feld nicht löschen.
198 198 error_can_not_delete_tracker: Dieser Tracker enthält Tickets und kann nicht gelöscht werden.
199 199 error_can_not_remove_role: Diese Rolle wird verwendet und kann nicht gelöscht werden.
200 200 error_can_not_reopen_issue_on_closed_version: Das Ticket ist einer abgeschlossenen Version zugeordnet und kann daher nicht wieder geöffnet werden.
201 201 error_can_not_archive_project: Dieses Projekt kann nicht archiviert werden.
202 202 error_issue_done_ratios_not_updated: Der Ticket-Fortschritt wurde nicht aktualisiert.
203 203 error_workflow_copy_source: Bitte wählen Sie einen Quell-Tracker und eine Quell-Rolle.
204 204 error_workflow_copy_target: Bitte wählen Sie die Ziel-Tracker und -Rollen.
205 205 error_unable_delete_issue_status: "Der Ticket-Status konnte nicht gelöscht werden."
206 206 error_unable_to_connect: Fehler beim Verbinden (%{value})
207 207 warning_attachments_not_saved: "%{count} Datei(en) konnten nicht gespeichert werden."
208 208
209 209 mail_subject_lost_password: "Ihr %{value} Kennwort"
210 210 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
211 211 mail_subject_register: "%{value} Kontoaktivierung"
212 212 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
213 213 mail_body_account_information_external: "Sie können sich mit Ihrem Konto %{value} an anmelden."
214 214 mail_body_account_information: Ihre Konto-Informationen
215 215 mail_subject_account_activation_request: "Antrag auf %{value} Kontoaktivierung"
216 216 mail_body_account_activation_request: "Ein neuer Benutzer (%{value}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:"
217 217 mail_subject_reminder: "%{count} Tickets müssen in den nächsten %{days} Tagen abgegeben werden"
218 218 mail_body_reminder: "%{count} Tickets, die Ihnen zugewiesen sind, müssen in den nächsten %{days} Tagen abgegeben werden:"
219 219 mail_subject_wiki_content_added: "Wiki-Seite '%{id}' hinzugefügt"
220 220 mail_body_wiki_content_added: "Die Wiki-Seite '%{id}' wurde von %{author} hinzugefügt."
221 221 mail_subject_wiki_content_updated: "Wiki-Seite '%{id}' erfolgreich aktualisiert"
222 222 mail_body_wiki_content_updated: "Die Wiki-Seite '%{id}' wurde von %{author} aktualisiert."
223 223
224 224 gui_validation_error: 1 Fehler
225 225 gui_validation_error_plural: "%{count} Fehler"
226 226
227 227 field_name: Name
228 228 field_description: Beschreibung
229 229 field_summary: Zusammenfassung
230 230 field_is_required: Erforderlich
231 231 field_firstname: Vorname
232 232 field_lastname: Nachname
233 233 field_mail: E-Mail
234 234 field_filename: Datei
235 235 field_filesize: Größe
236 236 field_downloads: Downloads
237 237 field_author: Autor
238 238 field_created_on: Angelegt
239 239 field_updated_on: Aktualisiert
240 240 field_field_format: Format
241 241 field_is_for_all: Für alle Projekte
242 242 field_possible_values: Mögliche Werte
243 243 field_regexp: Regulärer Ausdruck
244 244 field_min_length: Minimale Länge
245 245 field_max_length: Maximale Länge
246 246 field_value: Wert
247 247 field_category: Kategorie
248 248 field_title: Titel
249 249 field_project: Projekt
250 250 field_issue: Ticket
251 251 field_status: Status
252 252 field_notes: Kommentare
253 253 field_is_closed: Ticket geschlossen
254 254 field_is_default: Standardeinstellung
255 255 field_tracker: Tracker
256 256 field_subject: Thema
257 257 field_due_date: Abgabedatum
258 258 field_assigned_to: Zugewiesen an
259 259 field_priority: Priorität
260 260 field_fixed_version: Zielversion
261 261 field_user: Benutzer
262 262 field_principal: Auftraggeber
263 263 field_role: Rolle
264 264 field_homepage: Projekt-Homepage
265 265 field_is_public: Öffentlich
266 266 field_parent: Unterprojekt von
267 267 field_is_in_roadmap: In der Roadmap anzeigen
268 268 field_login: Mitgliedsname
269 269 field_mail_notification: Mailbenachrichtigung
270 270 field_admin: Administrator
271 271 field_last_login_on: Letzte Anmeldung
272 272 field_language: Sprache
273 273 field_effective_date: Datum
274 274 field_password: Kennwort
275 275 field_new_password: Neues Kennwort
276 276 field_password_confirmation: Bestätigung
277 277 field_version: Version
278 278 field_type: Typ
279 279 field_host: Host
280 280 field_port: Port
281 281 field_account: Konto
282 282 field_base_dn: Base DN
283 283 field_attr_login: Mitgliedsname-Attribut
284 284 field_attr_firstname: Vorname-Attribut
285 285 field_attr_lastname: Name-Attribut
286 286 field_attr_mail: E-Mail-Attribut
287 287 field_onthefly: On-the-fly-Benutzererstellung
288 288 field_start_date: Beginn
289 field_done_ratio: % erledigt
289 field_done_ratio: "% erledigt"
290 290 field_auth_source: Authentifizierungs-Modus
291 291 field_hide_mail: E-Mail-Adresse nicht anzeigen
292 292 field_comments: Kommentar
293 293 field_url: URL
294 294 field_start_page: Hauptseite
295 295 field_subproject: Unterprojekt von
296 296 field_hours: Stunden
297 297 field_activity: Aktivität
298 298 field_spent_on: Datum
299 299 field_identifier: Kennung
300 300 field_is_filter: Als Filter benutzen
301 301 field_issue_to: Zugehöriges Ticket
302 302 field_delay: Pufferzeit
303 303 field_assignable: Tickets können dieser Rolle zugewiesen werden
304 304 field_redirect_existing_links: Existierende Links umleiten
305 305 field_estimated_hours: Geschätzter Aufwand
306 306 field_column_names: Spalten
307 307 field_time_entries: Logzeit
308 308 field_time_zone: Zeitzone
309 309 field_searchable: Durchsuchbar
310 310 field_default_value: Standardwert
311 311 field_comments_sorting: Kommentare anzeigen
312 312 field_parent_title: Übergeordnete Seite
313 313 field_editable: Bearbeitbar
314 314 field_watcher: Beobachter
315 315 field_identity_url: OpenID-URL
316 316 field_content: Inhalt
317 317 field_group_by: Gruppiere Ergebnisse nach
318 318 field_sharing: Gemeinsame Verwendung
319 319 field_parent_issue: Übergeordnete Aufgabe
320 320
321 321 setting_app_title: Applikations-Titel
322 322 setting_app_subtitle: Applikations-Untertitel
323 323 setting_welcome_text: Willkommenstext
324 324 setting_default_language: Default-Sprache
325 325 setting_login_required: Authentifizierung erforderlich
326 326 setting_self_registration: Anmeldung ermöglicht
327 327 setting_attachment_max_size: Max. Dateigröße
328 328 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
329 329 setting_mail_from: E-Mail-Absender
330 330 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
331 331 setting_plain_text_mail: Nur reinen Text (kein HTML) senden
332 332 setting_host_name: Hostname
333 333 setting_text_formatting: Textformatierung
334 334 setting_wiki_compression: Wiki-Historie komprimieren
335 335 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
336 336 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
337 337 setting_autofetch_changesets: Changesets automatisch abrufen
338 338 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
339 339 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
340 340 setting_commit_fix_keywords: Schlüsselwörter (Status)
341 341 setting_autologin: Automatische Anmeldung
342 342 setting_date_format: Datumsformat
343 343 setting_time_format: Zeitformat
344 344 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
345 345 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
346 346 setting_repositories_encodings: Kodierungen der Projektarchive
347 347 setting_commit_logs_encoding: Kodierung der Commit-Log-Meldungen
348 348 setting_emails_footer: E-Mail-Fußzeile
349 349 setting_protocol: Protokoll
350 350 setting_per_page_options: Objekte pro Seite
351 351 setting_user_format: Benutzer-Anzeigeformat
352 352 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
353 353 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
354 354 setting_enabled_scm: Aktivierte Versionskontrollsysteme
355 355 setting_mail_handler_body_delimiters: "Schneide E-Mails nach einer dieser Zeilen ab"
356 356 setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren
357 357 setting_mail_handler_api_key: API-Schlüssel
358 358 setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren
359 359 setting_gravatar_enabled: Gravatar-Benutzerbilder benutzen
360 360 setting_gravatar_default: Standard-Gravatar-Bild
361 361 setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen
362 362 setting_file_max_size_displayed: Maximale Größe inline angezeigter Textdateien
363 363 setting_repository_log_display_limit: Maximale Anzahl anzuzeigender Revisionen in der Historie einer Datei
364 364 setting_openid: Erlaube OpenID-Anmeldung und -Registrierung
365 365 setting_password_min_length: Mindestlänge des Kennworts
366 366 setting_new_project_user_role_id: Rolle, die einem Nicht-Administrator zugeordnet wird, der ein Projekt erstellt
367 367 setting_default_projects_modules: Standardmäßig aktivierte Module für neue Projekte
368 368 setting_issue_done_ratio: Berechne den Ticket-Fortschritt mittels
369 369 setting_issue_done_ratio_issue_field: Ticket-Feld %-erledigt
370 370 setting_issue_done_ratio_issue_status: Ticket-Status
371 371 setting_start_of_week: Wochenanfang
372 372 setting_rest_api_enabled: REST-Schnittstelle aktivieren
373 373 setting_cache_formatted_text: Formatierten Text im Cache speichern
374 374
375 375 permission_add_project: Projekt erstellen
376 376 permission_add_subprojects: Unterprojekte erstellen
377 377 permission_edit_project: Projekt bearbeiten
378 378 permission_select_project_modules: Projektmodule auswählen
379 379 permission_manage_members: Mitglieder verwalten
380 380 permission_manage_project_activities: Aktivitäten (Zeiterfassung) verwalten
381 381 permission_manage_versions: Versionen verwalten
382 382 permission_manage_categories: Ticket-Kategorien verwalten
383 383 permission_view_issues: Tickets anzeigen
384 384 permission_add_issues: Tickets hinzufügen
385 385 permission_edit_issues: Tickets bearbeiten
386 386 permission_manage_issue_relations: Ticket-Beziehungen verwalten
387 387 permission_add_issue_notes: Kommentare hinzufügen
388 388 permission_edit_issue_notes: Kommentare bearbeiten
389 389 permission_edit_own_issue_notes: Eigene Kommentare bearbeiten
390 390 permission_move_issues: Tickets verschieben
391 391 permission_delete_issues: Tickets löschen
392 392 permission_manage_public_queries: Öffentliche Filter verwalten
393 393 permission_save_queries: Filter speichern
394 394 permission_view_gantt: Gantt-Diagramm ansehen
395 395 permission_view_calendar: Kalender ansehen
396 396 permission_view_issue_watchers: Liste der Beobachter ansehen
397 397 permission_add_issue_watchers: Beobachter hinzufügen
398 398 permission_delete_issue_watchers: Beobachter löschen
399 399 permission_log_time: Aufwände buchen
400 400 permission_view_time_entries: Gebuchte Aufwände ansehen
401 401 permission_edit_time_entries: Gebuchte Aufwände bearbeiten
402 402 permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten
403 403 permission_manage_news: News verwalten
404 404 permission_comment_news: News kommentieren
405 405 permission_manage_documents: Dokumente verwalten
406 406 permission_view_documents: Dokumente ansehen
407 407 permission_manage_files: Dateien verwalten
408 408 permission_view_files: Dateien ansehen
409 409 permission_manage_wiki: Wiki verwalten
410 410 permission_rename_wiki_pages: Wiki-Seiten umbenennen
411 411 permission_delete_wiki_pages: Wiki-Seiten löschen
412 412 permission_view_wiki_pages: Wiki ansehen
413 413 permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen
414 414 permission_edit_wiki_pages: Wiki-Seiten bearbeiten
415 415 permission_delete_wiki_pages_attachments: Anhänge löschen
416 416 permission_protect_wiki_pages: Wiki-Seiten schützen
417 417 permission_manage_repository: Projektarchiv verwalten
418 418 permission_browse_repository: Projektarchiv ansehen
419 419 permission_view_changesets: Changesets ansehen
420 420 permission_commit_access: Commit-Zugriff (über WebDAV)
421 421 permission_manage_boards: Foren verwalten
422 422 permission_view_messages: Forenbeiträge ansehen
423 423 permission_add_messages: Forenbeiträge hinzufügen
424 424 permission_edit_messages: Forenbeiträge bearbeiten
425 425 permission_edit_own_messages: Eigene Forenbeiträge bearbeiten
426 426 permission_delete_messages: Forenbeiträge löschen
427 427 permission_delete_own_messages: Eigene Forenbeiträge löschen
428 428 permission_export_wiki_pages: Wiki-Seiten exportieren
429 429 permission_manage_subtasks: Unteraufgaben verwalten
430 430
431 431 project_module_issue_tracking: Ticket-Verfolgung
432 432 project_module_time_tracking: Zeiterfassung
433 433 project_module_news: News
434 434 project_module_documents: Dokumente
435 435 project_module_files: Dateien
436 436 project_module_wiki: Wiki
437 437 project_module_repository: Projektarchiv
438 438 project_module_boards: Foren
439 439 project_module_calendar: Kalender
440 440 project_module_gantt: Gantt
441 441
442 442 label_user: Benutzer
443 443 label_user_plural: Benutzer
444 444 label_user_new: Neuer Benutzer
445 445 label_user_anonymous: Anonym
446 446 label_project: Projekt
447 447 label_project_new: Neues Projekt
448 448 label_project_plural: Projekte
449 449 label_x_projects:
450 450 zero: keine Projekte
451 451 one: 1 Projekt
452 452 other: "%{count} Projekte"
453 453 label_project_all: Alle Projekte
454 454 label_project_latest: Neueste Projekte
455 455 label_issue: Ticket
456 456 label_issue_new: Neues Ticket
457 457 label_issue_plural: Tickets
458 458 label_issue_view_all: Alle Tickets anzeigen
459 459 label_issues_by: "Tickets von %{value}"
460 460 label_issue_added: Ticket hinzugefügt
461 461 label_issue_updated: Ticket aktualisiert
462 462 label_document: Dokument
463 463 label_document_new: Neues Dokument
464 464 label_document_plural: Dokumente
465 465 label_document_added: Dokument hinzugefügt
466 466 label_role: Rolle
467 467 label_role_plural: Rollen
468 468 label_role_new: Neue Rolle
469 469 label_role_and_permissions: Rollen und Rechte
470 470 label_member: Mitglied
471 471 label_member_new: Neues Mitglied
472 472 label_member_plural: Mitglieder
473 473 label_tracker: Tracker
474 474 label_tracker_plural: Tracker
475 475 label_tracker_new: Neuer Tracker
476 476 label_workflow: Workflow
477 477 label_issue_status: Ticket-Status
478 478 label_issue_status_plural: Ticket-Status
479 479 label_issue_status_new: Neuer Status
480 480 label_issue_category: Ticket-Kategorie
481 481 label_issue_category_plural: Ticket-Kategorien
482 482 label_issue_category_new: Neue Kategorie
483 483 label_custom_field: Benutzerdefiniertes Feld
484 484 label_custom_field_plural: Benutzerdefinierte Felder
485 485 label_custom_field_new: Neues Feld
486 486 label_enumerations: Aufzählungen
487 487 label_enumeration_new: Neuer Wert
488 488 label_information: Information
489 489 label_information_plural: Informationen
490 490 label_please_login: Anmelden
491 491 label_register: Registrieren
492 492 label_login_with_open_id_option: oder mit OpenID anmelden
493 493 label_password_lost: Kennwort vergessen
494 494 label_home: Hauptseite
495 495 label_my_page: Meine Seite
496 496 label_my_account: Mein Konto
497 497 label_my_projects: Meine Projekte
498 498 label_my_page_block: Bereich "Meine Seite"
499 499 label_administration: Administration
500 500 label_login: Anmelden
501 501 label_logout: Abmelden
502 502 label_help: Hilfe
503 503 label_reported_issues: Gemeldete Tickets
504 504 label_assigned_to_me_issues: Mir zugewiesen
505 505 label_last_login: Letzte Anmeldung
506 506 label_registered_on: Angemeldet am
507 507 label_activity: Aktivität
508 508 label_overall_activity: Aktivität aller Projekte anzeigen
509 509 label_user_activity: "Aktivität von %{value}"
510 510 label_new: Neu
511 511 label_logged_as: Angemeldet als
512 512 label_environment: Umgebung
513 513 label_authentication: Authentifizierung
514 514 label_auth_source: Authentifizierungs-Modus
515 515 label_auth_source_new: Neuer Authentifizierungs-Modus
516 516 label_auth_source_plural: Authentifizierungs-Arten
517 517 label_subproject_plural: Unterprojekte
518 518 label_subproject_new: Neues Unterprojekt
519 519 label_and_its_subprojects: "%{value} und dessen Unterprojekte"
520 520 label_min_max_length: Länge (Min. - Max.)
521 521 label_list: Liste
522 522 label_date: Datum
523 523 label_integer: Zahl
524 524 label_float: Fließkommazahl
525 525 label_boolean: Boolean
526 526 label_string: Text
527 527 label_text: Langer Text
528 528 label_attribute: Attribut
529 529 label_attribute_plural: Attribute
530 530 label_download: "%{count} Download"
531 531 label_download_plural: "%{count} Downloads"
532 532 label_no_data: Nichts anzuzeigen
533 533 label_change_status: Statuswechsel
534 534 label_history: Historie
535 535 label_attachment: Datei
536 536 label_attachment_new: Neue Datei
537 537 label_attachment_delete: Anhang löschen
538 538 label_attachment_plural: Dateien
539 539 label_file_added: Datei hinzugefügt
540 540 label_report: Bericht
541 541 label_report_plural: Berichte
542 542 label_news: News
543 543 label_news_new: News hinzufügen
544 544 label_news_plural: News
545 545 label_news_latest: Letzte News
546 546 label_news_view_all: Alle News anzeigen
547 547 label_news_added: News hinzugefügt
548 548 label_settings: Konfiguration
549 549 label_overview: Übersicht
550 550 label_version: Version
551 551 label_version_new: Neue Version
552 552 label_version_plural: Versionen
553 553 label_close_versions: Vollständige Versionen schließen
554 554 label_confirmation: Bestätigung
555 555 label_export_to: "Auch abrufbar als:"
556 556 label_read: Lesen...
557 557 label_public_projects: Öffentliche Projekte
558 558 label_open_issues: offen
559 559 label_open_issues_plural: offen
560 560 label_closed_issues: geschlossen
561 561 label_closed_issues_plural: geschlossen
562 562 label_x_open_issues_abbr_on_total:
563 563 zero: 0 offen / %{total}
564 564 one: 1 offen / %{total}
565 565 other: "%{count} offen / %{total}"
566 566 label_x_open_issues_abbr:
567 567 zero: 0 offen
568 568 one: 1 offen
569 569 other: "%{count} offen"
570 570 label_x_closed_issues_abbr:
571 571 zero: 0 geschlossen
572 572 one: 1 geschlossen
573 573 other: "%{count} geschlossen"
574 574 label_total: Gesamtzahl
575 575 label_permissions: Berechtigungen
576 576 label_current_status: Gegenwärtiger Status
577 577 label_new_statuses_allowed: Neue Berechtigungen
578 578 label_all: alle
579 579 label_none: kein
580 580 label_nobody: Niemand
581 581 label_next: Weiter
582 582 label_previous: Zurück
583 583 label_used_by: Benutzt von
584 584 label_details: Details
585 585 label_add_note: Kommentar hinzufügen
586 586 label_per_page: Pro Seite
587 587 label_calendar: Kalender
588 588 label_months_from: Monate ab
589 589 label_gantt: Gantt-Diagramm
590 590 label_internal: Intern
591 591 label_last_changes: "%{count} letzte Änderungen"
592 592 label_change_view_all: Alle Änderungen anzeigen
593 593 label_personalize_page: Diese Seite anpassen
594 594 label_comment: Kommentar
595 595 label_comment_plural: Kommentare
596 596 label_x_comments:
597 597 zero: keine Kommentare
598 598 one: 1 Kommentar
599 599 other: "%{count} Kommentare"
600 600 label_comment_add: Kommentar hinzufügen
601 601 label_comment_added: Kommentar hinzugefügt
602 602 label_comment_delete: Kommentar löschen
603 603 label_query: Benutzerdefinierte Abfrage
604 604 label_query_plural: Benutzerdefinierte Berichte
605 605 label_query_new: Neuer Bericht
606 606 label_filter_add: Filter hinzufügen
607 607 label_filter_plural: Filter
608 608 label_equals: ist
609 609 label_not_equals: ist nicht
610 610 label_in_less_than: in weniger als
611 611 label_in_more_than: in mehr als
612 612 label_greater_or_equal: ">="
613 613 label_less_or_equal: "<="
614 614 label_in: an
615 615 label_today: heute
616 616 label_all_time: gesamter Zeitraum
617 617 label_yesterday: gestern
618 618 label_this_week: aktuelle Woche
619 619 label_last_week: vorige Woche
620 620 label_last_n_days: "die letzten %{count} Tage"
621 621 label_this_month: aktueller Monat
622 622 label_last_month: voriger Monat
623 623 label_this_year: aktuelles Jahr
624 624 label_date_range: Zeitraum
625 625 label_less_than_ago: vor weniger als
626 626 label_more_than_ago: vor mehr als
627 627 label_ago: vor
628 628 label_contains: enthält
629 629 label_not_contains: enthält nicht
630 630 label_day_plural: Tage
631 631 label_repository: Projektarchiv
632 632 label_repository_plural: Projektarchive
633 633 label_browse: Codebrowser
634 634 label_modification: "%{count} Änderung"
635 635 label_modification_plural: "%{count} Änderungen"
636 636 label_branch: Zweig
637 637 label_tag: Markierung
638 638 label_revision: Revision
639 639 label_revision_plural: Revisionen
640 640 label_revision_id: Revision %{value}
641 641 label_associated_revisions: Zugehörige Revisionen
642 642 label_added: hinzugefügt
643 643 label_modified: geändert
644 644 label_copied: kopiert
645 645 label_renamed: umbenannt
646 646 label_deleted: gelöscht
647 647 label_latest_revision: Aktuellste Revision
648 648 label_latest_revision_plural: Aktuellste Revisionen
649 649 label_view_revisions: Revisionen anzeigen
650 650 label_view_all_revisions: Alle Revisionen anzeigen
651 651 label_max_size: Maximale Größe
652 652 label_sort_highest: An den Anfang
653 653 label_sort_higher: Eins höher
654 654 label_sort_lower: Eins tiefer
655 655 label_sort_lowest: Ans Ende
656 656 label_roadmap: Roadmap
657 657 label_roadmap_due_in: "Fällig in %{value}"
658 658 label_roadmap_overdue: "%{value} verspätet"
659 659 label_roadmap_no_issues: Keine Tickets für diese Version
660 660 label_search: Suche
661 661 label_result_plural: Resultate
662 662 label_all_words: Alle Wörter
663 663 label_wiki: Wiki
664 664 label_wiki_edit: Wiki-Bearbeitung
665 665 label_wiki_edit_plural: Wiki-Bearbeitungen
666 666 label_wiki_page: Wiki-Seite
667 667 label_wiki_page_plural: Wiki-Seiten
668 668 label_index_by_title: Seiten nach Titel sortiert
669 669 label_index_by_date: Seiten nach Datum sortiert
670 670 label_current_version: Gegenwärtige Version
671 671 label_preview: Vorschau
672 672 label_feed_plural: Feeds
673 673 label_changes_details: Details aller Änderungen
674 674 label_issue_tracking: Tickets
675 675 label_spent_time: Aufgewendete Zeit
676 676 label_overall_spent_time: Aufgewendete Zeit aller Projekte anzeigen
677 677 label_f_hour: "%{value} Stunde"
678 678 label_f_hour_plural: "%{value} Stunden"
679 679 label_time_tracking: Zeiterfassung
680 680 label_change_plural: Änderungen
681 681 label_statistics: Statistiken
682 682 label_commits_per_month: Übertragungen pro Monat
683 683 label_commits_per_author: Übertragungen pro Autor
684 684 label_view_diff: Unterschiede anzeigen
685 685 label_diff_inline: einspaltig
686 686 label_diff_side_by_side: nebeneinander
687 687 label_options: Optionen
688 688 label_copy_workflow_from: Workflow kopieren von
689 689 label_permissions_report: Berechtigungsübersicht
690 690 label_watched_issues: Beobachtete Tickets
691 691 label_related_issues: Zugehörige Tickets
692 692 label_applied_status: Zugewiesener Status
693 693 label_loading: Lade...
694 694 label_relation_new: Neue Beziehung
695 695 label_relation_delete: Beziehung löschen
696 696 label_relates_to: Beziehung mit
697 697 label_duplicates: Duplikat von
698 698 label_duplicated_by: Dupliziert durch
699 699 label_blocks: Blockiert
700 700 label_blocked_by: Blockiert durch
701 701 label_precedes: Vorgänger von
702 702 label_follows: folgt
703 703 label_end_to_start: Ende - Anfang
704 704 label_end_to_end: Ende - Ende
705 705 label_start_to_start: Anfang - Anfang
706 706 label_start_to_end: Anfang - Ende
707 707 label_stay_logged_in: Angemeldet bleiben
708 708 label_disabled: gesperrt
709 709 label_show_completed_versions: Abgeschlossene Versionen anzeigen
710 710 label_me: ich
711 711 label_board: Forum
712 712 label_board_new: Neues Forum
713 713 label_board_plural: Foren
714 714 label_board_locked: Gesperrt
715 715 label_board_sticky: Wichtig (immer oben)
716 716 label_topic_plural: Themen
717 717 label_message_plural: Forenbeiträge
718 718 label_message_last: Letzter Forenbeitrag
719 719 label_message_new: Neues Thema
720 720 label_message_posted: Forenbeitrag hinzugefügt
721 721 label_reply_plural: Antworten
722 722 label_send_information: Sende Kontoinformationen zum Benutzer
723 723 label_year: Jahr
724 724 label_month: Monat
725 725 label_week: Woche
726 726 label_date_from: Von
727 727 label_date_to: Bis
728 728 label_language_based: Sprachabhängig
729 729 label_sort_by: "Sortiert nach %{value}"
730 730 label_send_test_email: Test-E-Mail senden
731 731 label_feeds_access_key: RSS-Zugriffsschlüssel
732 732 label_missing_feeds_access_key: Der RSS-Zugriffsschlüssel fehlt.
733 733 label_feeds_access_key_created_on: "Atom-Zugriffsschlüssel vor %{value} erstellt"
734 734 label_module_plural: Module
735 735 label_added_time_by: "Von %{author} vor %{age} hinzugefügt"
736 736 label_updated_time_by: "Von %{author} vor %{age} aktualisiert"
737 737 label_updated_time: "Vor %{value} aktualisiert"
738 738 label_jump_to_a_project: Zu einem Projekt springen...
739 739 label_file_plural: Dateien
740 740 label_changeset_plural: Changesets
741 741 label_default_columns: Standard-Spalten
742 742 label_no_change_option: (Keine Änderung)
743 743 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
744 744 label_theme: Stil
745 745 label_default: Standard
746 746 label_search_titles_only: Nur Titel durchsuchen
747 747 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
748 748 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
749 749 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
750 750 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
751 751 label_registration_manual_activation: Manuelle Kontoaktivierung
752 752 label_registration_automatic_activation: Automatische Kontoaktivierung
753 753 label_display_per_page: "Pro Seite: %{value}"
754 754 label_age: Geändert vor
755 755 label_change_properties: Eigenschaften ändern
756 756 label_general: Allgemein
757 757 label_more: Mehr
758 758 label_scm: Versionskontrollsystem
759 759 label_plugins: Plugins
760 760 label_ldap_authentication: LDAP-Authentifizierung
761 761 label_downloads_abbr: D/L
762 762 label_optional_description: Beschreibung (optional)
763 763 label_add_another_file: Eine weitere Datei hinzufügen
764 764 label_preferences: Präferenzen
765 765 label_chronological_order: in zeitlicher Reihenfolge
766 766 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
767 767 label_planning: Terminplanung
768 768 label_incoming_emails: Eingehende E-Mails
769 769 label_generate_key: Generieren
770 770 label_issue_watchers: Beobachter
771 771 label_example: Beispiel
772 772 label_display: Anzeige
773 773 label_sort: Sortierung
774 774 label_ascending: Aufsteigend
775 775 label_descending: Absteigend
776 776 label_date_from_to: von %{start} bis %{end}
777 777 label_wiki_content_added: Die Wiki-Seite wurde erfolgreich hinzugefügt.
778 778 label_wiki_content_updated: Die Wiki-Seite wurde erfolgreich aktualisiert.
779 779 label_group: Gruppe
780 780 label_group_plural: Gruppen
781 781 label_group_new: Neue Gruppe
782 782 label_time_entry_plural: Benötigte Zeit
783 783 label_version_sharing_none: Nicht gemeinsam verwenden
784 784 label_version_sharing_descendants: Mit Unterprojekten
785 785 label_version_sharing_hierarchy: Mit Projekthierarchie
786 786 label_version_sharing_tree: Mit Projektbaum
787 787 label_version_sharing_system: Mit allen Projekten
788 788 label_update_issue_done_ratios: Ticket-Fortschritt aktualisieren
789 789 label_copy_source: Quelle
790 790 label_copy_target: Ziel
791 791 label_copy_same_as_target: So wie das Ziel
792 792 label_display_used_statuses_only: Zeige nur Status an, die von diesem Tracker verwendet werden
793 793 label_api_access_key: API-Zugriffsschlüssel
794 794 label_missing_api_access_key: Der API-Zugriffsschlüssel fehlt.
795 795 label_api_access_key_created_on: Der API-Zugriffsschlüssel wurde vor %{value} erstellt
796 796 label_profile: Profil
797 797 label_subtask_plural: Unteraufgaben
798 798 label_project_copy_notifications: Sende Mailbenachrichtigungen beim Kopieren des Projekts.
799 799 label_principal_search: "Nach Benutzer oder Gruppe suchen:"
800 800 label_user_search: "Nach Benutzer suchen:"
801 801
802 802 button_login: Anmelden
803 803 button_submit: OK
804 804 button_save: Speichern
805 805 button_check_all: Alles auswählen
806 806 button_uncheck_all: Alles abwählen
807 807 button_delete: Löschen
808 808 button_create: Anlegen
809 809 button_create_and_continue: Anlegen und weiter
810 810 button_test: Testen
811 811 button_edit: Bearbeiten
812 812 button_edit_associated_wikipage: "Zugehörige Wikiseite bearbeiten: %{page_title}"
813 813 button_add: Hinzufügen
814 814 button_change: Wechseln
815 815 button_apply: Anwenden
816 816 button_clear: Zurücksetzen
817 817 button_lock: Sperren
818 818 button_unlock: Entsperren
819 819 button_download: Download
820 820 button_list: Liste
821 821 button_view: Anzeigen
822 822 button_move: Verschieben
823 823 button_move_and_follow: Verschieben und Ticket anzeigen
824 824 button_back: Zurück
825 825 button_cancel: Abbrechen
826 826 button_activate: Aktivieren
827 827 button_sort: Sortieren
828 828 button_log_time: Aufwand buchen
829 829 button_rollback: Auf diese Version zurücksetzen
830 830 button_watch: Beobachten
831 831 button_unwatch: Nicht beobachten
832 832 button_reply: Antworten
833 833 button_archive: Archivieren
834 834 button_unarchive: Entarchivieren
835 835 button_reset: Zurücksetzen
836 836 button_rename: Umbenennen
837 837 button_change_password: Kennwort ändern
838 838 button_copy: Kopieren
839 839 button_copy_and_follow: Kopieren und Ticket anzeigen
840 840 button_annotate: Annotieren
841 841 button_update: Bearbeiten
842 842 button_configure: Konfigurieren
843 843 button_quote: Zitieren
844 844 button_duplicate: Duplizieren
845 845 button_show: Anzeigen
846 846
847 847 status_active: aktiv
848 848 status_registered: angemeldet
849 849 status_locked: gesperrt
850 850
851 851 version_status_open: offen
852 852 version_status_locked: gesperrt
853 853 version_status_closed: abgeschlossen
854 854
855 855 field_active: Aktiv
856 856
857 857 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll.
858 858 text_regexp_info: z. B. ^[A-Z0-9]+$
859 859 text_min_max_length_info: 0 heißt keine Beschränkung
860 860 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
861 861 text_subprojects_destroy_warning: "Dessen Unterprojekte (%{value}) werden ebenfalls gelöscht."
862 862 text_workflow_edit: Workflow zum Bearbeiten auswählen
863 863 text_are_you_sure: Sind Sie sicher?
864 864 text_are_you_sure_with_children: "Lösche Aufgabe und alle Unteraufgaben?"
865 865 text_journal_changed: "%{label} wurde von %{old} zu %{new} geändert"
866 866 text_journal_set_to: "%{label} wurde auf %{value} gesetzt"
867 867 text_journal_deleted: "%{label} %{old} wurde gelöscht"
868 868 text_journal_added: "%{label} %{value} wurde hinzugefügt"
869 869 text_tip_issue_begin_day: Aufgabe, die an diesem Tag beginnt
870 870 text_tip_issue_end_day: Aufgabe, die an diesem Tag endet
871 871 text_tip_issue_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
872 872 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
873 873 text_caracters_maximum: "Max. %{count} Zeichen."
874 874 text_caracters_minimum: "Muss mindestens %{count} Zeichen lang sein."
875 875 text_length_between: "Länge zwischen %{min} und %{max} Zeichen."
876 876 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
877 877 text_unallowed_characters: Nicht erlaubte Zeichen
878 878 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
879 879 text_line_separated: Mehrere Werte sind erlaubt (eine Zeile pro Wert).
880 880 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
881 881 text_issue_added: "Ticket %{id} wurde erstellt von %{author}."
882 882 text_issue_updated: "Ticket %{id} wurde aktualisiert von %{author}."
883 883 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
884 884 text_issue_category_destroy_question: "Einige Tickets (%{count}) sind dieser Kategorie zugeodnet. Was möchten Sie tun?"
885 885 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
886 886 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
887 887 text_user_mail_option: "Für nicht ausgewählte Projekte werden Sie nur Benachrichtigungen für Dinge erhalten, die Sie beobachten oder an denen Sie beteiligt sind (z. B. Tickets, deren Autor Sie sind oder die Ihnen zugewiesen sind)."
888 888 text_no_configuration_data: "Rollen, Tracker, Ticket-Status und Workflows wurden noch nicht konfiguriert.\nEs ist sehr zu empfehlen, die Standard-Konfiguration zu laden. Sobald sie geladen ist, können Sie sie abändern."
889 889 text_load_default_configuration: Standard-Konfiguration laden
890 890 text_status_changed_by_changeset: "Status geändert durch Changeset %{value}."
891 891 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
892 892 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
893 893 text_default_administrator_account_changed: Administrator-Kennwort geändert
894 894 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
895 895 text_plugin_assets_writable: Verzeichnis für Plugin-Assets beschreibbar
896 896 text_rmagick_available: RMagick verfügbar (optional)
897 897 text_destroy_time_entries_question: Es wurden bereits %{hours} Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
898 898 text_destroy_time_entries: Gebuchte Aufwände löschen
899 899 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
900 900 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
901 901 text_user_wrote: "%{value} schrieb:"
902 902 text_enumeration_destroy_question: "%{count} Objekt(e) sind diesem Wert zugeordnet."
903 903 text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:'
904 904 text_email_delivery_not_configured: "Der SMTP-Server ist nicht konfiguriert und Mailbenachrichtigungen sind ausgeschaltet.\nNehmen Sie die Einstellungen für Ihren SMTP-Server in config/configuration.yml vor und starten Sie die Applikation neu."
905 905 text_repository_usernames_mapping: "Bitte legen Sie die Zuordnung der Redmine-Benutzer zu den Benutzernamen der Commit-Log-Meldungen des Projektarchivs fest.\nBenutzer mit identischen Redmine- und Projektarchiv-Benutzernamen oder -E-Mail-Adressen werden automatisch zugeordnet."
906 906 text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.'
907 907 text_custom_field_possible_values_info: 'Eine Zeile pro Wert'
908 908 text_wiki_page_destroy_question: "Diese Seite hat %{descendants} Unterseite(n). Was möchten Sie tun?"
909 909 text_wiki_page_nullify_children: Verschiebe die Unterseiten auf die oberste Ebene
910 910 text_wiki_page_destroy_children: Lösche alle Unterseiten
911 911 text_wiki_page_reassign_children: Ordne die Unterseiten dieser Seite zu
912 912 text_own_membership_delete_confirmation: "Sie sind dabei, einige oder alle Ihre Berechtigungen zu entfernen. Es ist möglich, dass Sie danach das Projekt nicht mehr ansehen oder bearbeiten dürfen.\nSind Sie sicher, dass Sie dies tun möchten?"
913 913 text_zoom_in: Zoom in
914 914 text_zoom_out: Zoom out
915 915
916 916 default_role_manager: Manager
917 917 default_role_developer: Entwickler
918 918 default_role_reporter: Reporter
919 919 default_tracker_bug: Fehler
920 920 default_tracker_feature: Feature
921 921 default_tracker_support: Unterstützung
922 922 default_issue_status_new: Neu
923 923 default_issue_status_in_progress: In Bearbeitung
924 924 default_issue_status_resolved: Gelöst
925 925 default_issue_status_feedback: Feedback
926 926 default_issue_status_closed: Erledigt
927 927 default_issue_status_rejected: Abgewiesen
928 928 default_doc_category_user: Benutzerdokumentation
929 929 default_doc_category_tech: Technische Dokumentation
930 930 default_priority_low: Niedrig
931 931 default_priority_normal: Normal
932 932 default_priority_high: Hoch
933 933 default_priority_urgent: Dringend
934 934 default_priority_immediate: Sofort
935 935 default_activity_design: Design
936 936 default_activity_development: Entwicklung
937 937
938 938 enumeration_issue_priorities: Ticket-Prioritäten
939 939 enumeration_doc_categories: Dokumentenkategorien
940 940 enumeration_activities: Aktivitäten (Zeiterfassung)
941 941 enumeration_system_activity: System-Aktivität
942 942
943 943 field_text: Textfeld
944 944 label_user_mail_option_only_owner: Nur für Aufgaben die ich angelegt habe
945 945 setting_default_notification_option: Standard Benachrichtigungsoptionen
946 946 label_user_mail_option_only_my_events: Nur für Aufgaben die ich beobachte oder an welchen ich mitarbeite
947 947 label_user_mail_option_only_assigned: Nur für Aufgaben für die ich zuständig bin.
948 948 notice_not_authorized_archived_project: Das Projekt wurde archiviert und ist daher nicht nicht verfügbar.
949 949 label_user_mail_option_none: keine Ereignisse
950 950 field_member_of_group: Zuständigkeitsgruppe
951 951 field_assigned_to_role: Zuständigkeitsrolle
952 952 field_visible: Sichtbar
953 953 setting_emails_header: Emailkopf
954 954 setting_commit_logtime_activity_id: Aktivität für die Zeiterfassung
955 955 text_time_logged_by_changeset: Angewendet in Changeset %{value}.
956 956 setting_commit_logtime_enabled: Aktiviere Zeitlogging
957 957 notice_gantt_chart_truncated: Die Grafik ist unvollständig, da das Maximum der anzeigbaren Aufgaben überschritten wurde (%{max})
958 958 setting_gantt_items_limit: Maximale Anzahl von Aufgaben die im Gantt-Chart angezeigt werden.
959 959 field_warn_on_leaving_unsaved: 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).
@@ -1,965 +1,965
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_days:
55 55 one: "1 ημέρα"
56 56 other: "%{count} ημέρες"
57 57 about_x_months:
58 58 one: "περίπου 1 μήνα"
59 59 other: "περίπου %{count} μήνες"
60 60 x_months:
61 61 one: "1 μήνα"
62 62 other: "%{count} μήνες"
63 63 about_x_years:
64 64 one: "περίπου 1 χρόνο"
65 65 other: "περίπου %{count} χρόνια"
66 66 over_x_years:
67 67 one: "πάνω από 1 χρόνο"
68 68 other: "πάνω από %{count} χρόνια"
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 human:
79 79 format:
80 80 precision: 1
81 81 delimiter: ""
82 82 storage_units:
83 83 format: "%n %u"
84 84 units:
85 85 kb: KB
86 86 tb: TB
87 87 gb: GB
88 88 byte:
89 89 one: Byte
90 90 other: Bytes
91 91 mb: MB
92 92
93 93 # Used in array.to_sentence.
94 94 support:
95 95 array:
96 96 sentence_connector: "and"
97 97 skip_last_comma: false
98 98
99 99 activerecord:
100 100 errors:
101 101 template:
102 102 header:
103 103 one: "1 error prohibited this %{model} from being saved"
104 104 other: "%{count} errors prohibited this %{model} from being saved"
105 105 messages:
106 106 inclusion: "δεν περιέχεται στη λίστα"
107 107 exclusion: "έχει κατοχυρωθεί"
108 108 invalid: "είναι άκυρο"
109 109 confirmation: "δεν αντιστοιχεί με την επιβεβαίωση"
110 110 accepted: "πρέπει να γίνει αποδοχή"
111 111 empty: "δε μπορεί να είναι άδειο"
112 112 blank: "δε μπορεί να είναι κενό"
113 113 too_long: "έχει πολλούς (μέγ.επιτρ. %{count} χαρακτήρες)"
114 114 too_short: "έχει λίγους (ελάχ.επιτρ. %{count} χαρακτήρες)"
115 115 wrong_length: "δεν είναι σωστός ο αριθμός χαρακτήρων (πρέπει να έχει %{count} χαρακτήρες)"
116 116 taken: "έχει ήδη κατοχυρωθεί"
117 117 not_a_number: "δεν είναι αριθμός"
118 118 not_a_date: "δεν είναι σωστή ημερομηνία"
119 119 greater_than: "πρέπει να είναι μεγαλύτερο από %{count}"
120 120 greater_than_or_equal_to: "πρέπει να είναι μεγαλύτερο από ή ίσο με %{count}"
121 121 equal_to: "πρέπει να είναι ίσον με %{count}"
122 122 less_than: "πρέπει να είναι μικρότερη από %{count}"
123 123 less_than_or_equal_to: "πρέπει να είναι μικρότερο από ή ίσο με %{count}"
124 124 odd: "πρέπει να είναι μονός"
125 125 even: "πρέπει να είναι ζυγός"
126 126 greater_than_start_date: "πρέπει να είναι αργότερα από την ημερομηνία έναρξης"
127 127 not_same_project: "δεν ανήκει στο ίδιο έργο"
128 128 circular_dependency: "Αυτή η σχέση θα δημιουργήσει κυκλικές εξαρτήσεις"
129 129 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
130 130
131 131 actionview_instancetag_blank_option: Παρακαλώ επιλέξτε
132 132
133 133 general_text_No: 'Όχι'
134 134 general_text_Yes: 'Ναι'
135 135 general_text_no: 'όχι'
136 136 general_text_yes: 'ναι'
137 137 general_lang_name: 'Ελληνικά'
138 138 general_csv_separator: ','
139 139 general_csv_decimal_separator: '.'
140 140 general_csv_encoding: UTF-8
141 141 general_pdf_encoding: UTF-8
142 142 general_first_day_of_week: '7'
143 143
144 144 notice_account_updated: Ο λογαριασμός ενημερώθηκε επιτυχώς.
145 145 notice_account_invalid_creditentials: Άκυρο όνομα χρήστη ή κωδικού πρόσβασης
146 146 notice_account_password_updated: Ο κωδικός πρόσβασης ενημερώθηκε επιτυχώς.
147 147 notice_account_wrong_password: Λάθος κωδικός πρόσβασης
148 148 notice_account_register_done: Ο λογαριασμός δημιουργήθηκε επιτυχώς. Για να ενεργοποιήσετε το λογαριασμό σας, πατήστε το σύνδεσμο που σας έχει αποσταλεί με email.
149 149 notice_account_unknown_email: Άγνωστος χρήστης.
150 150 notice_can_t_change_password: Αυτός ο λογαριασμός χρησιμοποιεί εξωτερική πηγή πιστοποίησης. Δεν είναι δυνατόν να αλλάξετε τον κωδικό πρόσβασης.
151 151 notice_account_lost_email_sent: Σας έχει αποσταλεί email με οδηγίες για την επιλογή νέου κωδικού πρόσβασης.
152 152 notice_account_activated: Ο λογαριασμός σας έχει ενεργοποιηθεί. Τώρα μπορείτε να συνδεθείτε.
153 153 notice_successful_create: Επιτυχής δημιουργία.
154 154 notice_successful_update: Επιτυχής ενημέρωση.
155 155 notice_successful_delete: Επιτυχής διαγραφή.
156 156 notice_successful_connection: Επιτυχής σύνδεση.
157 157 notice_file_not_found: Η σελίδα που ζητήσατε δεν υπάρχει ή έχει αφαιρεθεί.
158 158 notice_locking_conflict: Τα δεδομένα έχουν ενημερωθεί από άλλο χρήστη.
159 159 notice_not_authorized: Δεν έχετε δικαίωμα πρόσβασης σε αυτή τη σελίδα.
160 160 notice_email_sent: "Ένα μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη στο %{value}"
161 161 notice_email_error: "Σφάλμα κατά την αποστολή του μηνύματος στο (%{value})"
162 162 notice_feeds_access_key_reseted: Έγινε επαναφορά στο κλειδί πρόσβασης RSS.
163 163 notice_failed_to_save_issues: "Αποτυχία αποθήκευσης %{count} θεμα(των) από τα %{total} επιλεγμένα: %{ids}."
164 164 notice_no_issue_selected: "Κανένα θέμα δεν είναι επιλεγμένο! Παρακαλούμε, ελέγξτε τα θέματα που θέλετε να επεξεργαστείτε."
165 165 notice_account_pending: λογαριασμός σας έχει δημιουργηθεί και είναι σε στάδιο έγκρισης από τον διαχειριστή."
166 166 notice_default_data_loaded: Οι προεπιλεγμένες ρυθμίσεις φορτώθηκαν επιτυχώς.
167 167 notice_unable_delete_version: Αδύνατον να διαγραφεί η έκδοση.
168 168
169 169 error_can_t_load_default_data: "Οι προεπιλεγμένες ρυθμίσεις δεν μπόρεσαν να φορτωθούν:: %{value}"
170 170 error_scm_not_found: εγγραφή ή η αναθεώρηση δεν βρέθηκε στο αποθετήριο."
171 171 error_scm_command_failed: "Παρουσιάστηκε σφάλμα κατά την προσπάθεια πρόσβασης στο αποθετήριο: %{value}"
172 172 error_scm_annotate: καταχώριση δεν υπάρχει ή δεν μπορεί να σχολιαστεί."
173 173 error_issue_not_found_in_project: 'Το θέμα δεν βρέθηκε ή δεν ανήκει σε αυτό το έργο'
174 174 error_no_tracker_in_project: 'Δεν υπάρχει ανιχνευτής για αυτό το έργο. Παρακαλώ ελέγξτε τις ρυθμίσεις του έργου.'
175 175 error_no_default_issue_status: 'Δεν έχει οριστεί η προεπιλογή κατάστασης θεμάτων. Παρακαλώ ελέγξτε τις ρυθμίσεις σας (Μεταβείτε στην "Διαχείριση -> Κατάσταση θεμάτων").'
176 176
177 177 warning_attachments_not_saved: "%{count} αρχείο(α) δε μπορούν να αποθηκευτούν."
178 178
179 179 mail_subject_lost_password: κωδικός σας %{value}"
180 180 mail_body_lost_password: 'Για να αλλάξετε τον κωδικό πρόσβασης, πατήστε τον ακόλουθο σύνδεσμο:'
181 181 mail_subject_register: "Ενεργοποίηση του λογαριασμού χρήστη %{value} "
182 182 mail_body_register: 'Για να ενεργοποιήσετε το λογαριασμό σας, επιλέξτε τον ακόλουθο σύνδεσμο:'
183 183 mail_body_account_information_external: "Μπορείτε να χρησιμοποιήσετε τον λογαριασμό %{value} για να συνδεθείτε."
184 184 mail_body_account_information: Πληροφορίες του λογαριασμού σας
185 185 mail_subject_account_activation_request: "αίτημα ενεργοποίησης λογαριασμού %{value}"
186 186 mail_body_account_activation_request: "'Ένας νέος χρήστης (%{value}) έχει εγγραφεί. Ο λογαριασμός είναι σε στάδιο αναμονής της έγκρισης σας:"
187 187 mail_subject_reminder: "%{count} θέμα(τα) με προθεσμία στις επόμενες %{days} ημέρες"
188 188 mail_body_reminder: "%{count}θέμα(τα) που έχουν ανατεθεί σε σας, με προθεσμία στις επόμενες %{days} ημέρες:"
189 189 mail_subject_wiki_content_added: "'προστέθηκε η σελίδα wiki %{id}' "
190 190 mail_body_wiki_content_added: σελίδα wiki '%{id}' προστέθηκε από τον %{author}."
191 191 mail_subject_wiki_content_updated: "'ενημερώθηκε η σελίδα wiki %{id}' "
192 192 mail_body_wiki_content_updated: σελίδα wiki '%{id}' ενημερώθηκε από τον %{author}."
193 193
194 194 gui_validation_error: 1 σφάλμα
195 195 gui_validation_error_plural: "%{count} σφάλματα"
196 196
197 197 field_name: Όνομα
198 198 field_description: Περιγραφή
199 199 field_summary: Συνοπτικά
200 200 field_is_required: Απαιτείται
201 201 field_firstname: Όνομα
202 202 field_lastname: Επώνυμο
203 203 field_mail: Email
204 204 field_filename: Αρχείο
205 205 field_filesize: Μέγεθος
206 206 field_downloads: Μεταφορτώσεις
207 207 field_author: Συγγραφέας
208 208 field_created_on: Δημιουργήθηκε
209 209 field_updated_on: Ενημερώθηκε
210 210 field_field_format: Μορφοποίηση
211 211 field_is_for_all: Για όλα τα έργα
212 212 field_possible_values: Πιθανές τιμές
213 213 field_regexp: Κανονική παράσταση
214 214 field_min_length: Ελάχιστο μήκος
215 215 field_max_length: Μέγιστο μήκος
216 216 field_value: Τιμή
217 217 field_category: Κατηγορία
218 218 field_title: Τίτλος
219 219 field_project: Έργο
220 220 field_issue: Θέμα
221 221 field_status: Κατάσταση
222 222 field_notes: Σημειώσεις
223 223 field_is_closed: Κλειστά θέματα
224 224 field_is_default: Προεπιλεγμένη τιμή
225 225 field_tracker: Ανιχνευτής
226 226 field_subject: Θέμα
227 227 field_due_date: Προθεσμία
228 228 field_assigned_to: Ανάθεση σε
229 229 field_priority: Προτεραιότητα
230 230 field_fixed_version: Στόχος έκδοσης
231 231 field_user: Χρήστης
232 232 field_role: Ρόλος
233 233 field_homepage: Αρχική σελίδα
234 234 field_is_public: Δημόσιο
235 235 field_parent: Επιμέρους έργο του
236 236 field_is_in_roadmap: Προβολή θεμάτων στο χάρτη πορείας
237 237 field_login: Όνομα χρήστη
238 238 field_mail_notification: Ειδοποιήσεις email
239 239 field_admin: Διαχειριστής
240 240 field_last_login_on: Τελευταία σύνδεση
241 241 field_language: Γλώσσα
242 242 field_effective_date: Ημερομηνία
243 243 field_password: Κωδικός πρόσβασης
244 244 field_new_password: Νέος κωδικός πρόσβασης
245 245 field_password_confirmation: Επιβεβαίωση
246 246 field_version: Έκδοση
247 247 field_type: Τύπος
248 248 field_host: Κόμβος
249 249 field_port: Θύρα
250 250 field_account: Λογαριασμός
251 251 field_base_dn: Βάση DN
252 252 field_attr_login: Ιδιότητα εισόδου
253 253 field_attr_firstname: Ιδιότητα ονόματος
254 254 field_attr_lastname: Ιδιότητα επωνύμου
255 255 field_attr_mail: Ιδιότητα email
256 256 field_onthefly: Άμεση δημιουργία χρήστη
257 257 field_start_date: Εκκίνηση
258 field_done_ratio: % επιτεύχθη
258 field_done_ratio: "% επιτεύχθη"
259 259 field_auth_source: Τρόπος πιστοποίησης
260 260 field_hide_mail: Απόκρυψη διεύθυνσης email
261 261 field_comments: Σχόλιο
262 262 field_url: URL
263 263 field_start_page: Πρώτη σελίδα
264 264 field_subproject: Επιμέρους έργο
265 265 field_hours: Ώρες
266 266 field_activity: Δραστηριότητα
267 267 field_spent_on: Ημερομηνία
268 268 field_identifier: Στοιχείο αναγνώρισης
269 269 field_is_filter: Χρήση ως φίλτρο
270 270 field_issue_to: Σχετικά θέματα
271 271 field_delay: Καθυστέρηση
272 272 field_assignable: Θέματα που μπορούν να ανατεθούν σε αυτό το ρόλο
273 273 field_redirect_existing_links: Ανακατεύθυνση των τρεχόντων συνδέσμων
274 274 field_estimated_hours: Εκτιμώμενος χρόνος
275 275 field_column_names: Στήλες
276 276 field_time_zone: Ωριαία ζώνη
277 277 field_searchable: Ερευνήσιμο
278 278 field_default_value: Προκαθορισμένη τιμή
279 279 field_comments_sorting: Προβολή σχολίων
280 280 field_parent_title: Γονική σελίδα
281 281 field_editable: Επεξεργάσιμο
282 282 field_watcher: Παρατηρητής
283 283 field_identity_url: OpenID URL
284 284 field_content: Περιεχόμενο
285 285 field_group_by: Ομαδικά αποτελέσματα από
286 286
287 287 setting_app_title: Τίτλος εφαρμογής
288 288 setting_app_subtitle: Υπότιτλος εφαρμογής
289 289 setting_welcome_text: Κείμενο υποδοχής
290 290 setting_default_language: Προεπιλεγμένη γλώσσα
291 291 setting_login_required: Απαιτείται πιστοποίηση
292 292 setting_self_registration: Αυτο-εγγραφή
293 293 setting_attachment_max_size: Μέγ. μέγεθος συνημμένου
294 294 setting_issues_export_limit: Θέματα περιορισμού εξαγωγής
295 295 setting_mail_from: Μετάδοση διεύθυνσης email
296 296 setting_bcc_recipients: Αποδέκτες κρυφής κοινοποίησης (bcc)
297 297 setting_plain_text_mail: Email απλού κειμένου (όχι HTML)
298 298 setting_host_name: Όνομα κόμβου και διαδρομή
299 299 setting_text_formatting: Μορφοποίηση κειμένου
300 300 setting_wiki_compression: Συμπίεση ιστορικού wiki
301 301 setting_feeds_limit: Feed περιορισμού περιεχομένου
302 302 setting_default_projects_public: Τα νέα έργα έχουν προεπιλεγεί ως δημόσια
303 303 setting_autofetch_changesets: Αυτόματη λήψη commits
304 304 setting_sys_api_enabled: Ενεργοποίηση WS για διαχείριση αποθετηρίου
305 305 setting_commit_ref_keywords: Αναφορά σε λέξεις-κλειδιά
306 306 setting_commit_fix_keywords: Καθορισμός σε λέξεις-κλειδιά
307 307 setting_autologin: Αυτόματη σύνδεση
308 308 setting_date_format: Μορφή ημερομηνίας
309 309 setting_time_format: Μορφή ώρας
310 310 setting_cross_project_issue_relations: Επιτρέψτε συσχετισμό θεμάτων σε διασταύρωση-έργων
311 311 setting_issue_list_default_columns: Προκαθορισμένες εμφανιζόμενες στήλες στη λίστα θεμάτων
312 312 setting_repositories_encodings: Κωδικοποίηση χαρακτήρων αποθετηρίου
313 313 setting_commit_logs_encoding: Κωδικοποίηση μηνυμάτων commit
314 314 setting_emails_footer: Υποσέλιδο στα email
315 315 setting_protocol: Πρωτόκολο
316 316 setting_per_page_options: Αντικείμενα ανά σελίδα επιλογών
317 317 setting_user_format: Μορφή εμφάνισης χρηστών
318 318 setting_activity_days_default: Ημέρες που εμφανίζεται στη δραστηριότητα έργου
319 319 setting_display_subprojects_issues: Εμφάνιση από προεπιλογή θεμάτων επιμέρους έργων στα κύρια έργα
320 320 setting_enabled_scm: Ενεργοποίηση SCM
321 321 setting_mail_handler_api_enabled: Ενεργοποίηση WS για εισερχόμενα email
322 322 setting_mail_handler_api_key: κλειδί API
323 323 setting_sequential_project_identifiers: Δημιουργία διαδοχικών αναγνωριστικών έργου
324 324 setting_gravatar_enabled: Χρήση Gravatar εικονιδίων χρηστών
325 325 setting_diff_max_lines_displayed: Μεγ.αριθμός εμφάνισης γραμμών diff
326 326 setting_file_max_size_displayed: Μεγ.μέγεθος των αρχείων απλού κειμένου που εμφανίζονται σε σειρά
327 327 setting_repository_log_display_limit: Μέγιστος αριθμός αναθεωρήσεων που εμφανίζονται στο ιστορικό αρχείου
328 328 setting_openid: Επιτρέψτε συνδέσεις OpenID και εγγραφή
329 329 setting_password_min_length: Ελάχιστο μήκος κωδικού πρόσβασης
330 330 setting_new_project_user_role_id: Απόδοση ρόλου σε χρήστη μη-διαχειριστή όταν δημιουργεί ένα έργο
331 331
332 332 permission_add_project: Δημιουργία έργου
333 333 permission_edit_project: Επεξεργασία έργου
334 334 permission_select_project_modules: Επιλογή μονάδων έργου
335 335 permission_manage_members: Διαχείριση μελών
336 336 permission_manage_versions: Διαχείριση εκδόσεων
337 337 permission_manage_categories: Διαχείριση κατηγοριών θεμάτων
338 338 permission_add_issues: Προσθήκη θεμάτων
339 339 permission_edit_issues: Επεξεργασία θεμάτων
340 340 permission_manage_issue_relations: Διαχείριση συσχετισμών θεμάτων
341 341 permission_add_issue_notes: Προσθήκη σημειώσεων
342 342 permission_edit_issue_notes: Επεξεργασία σημειώσεων
343 343 permission_edit_own_issue_notes: Επεξεργασία δικών μου σημειώσεων
344 344 permission_move_issues: Μεταφορά θεμάτων
345 345 permission_delete_issues: Διαγραφή θεμάτων
346 346 permission_manage_public_queries: Διαχείριση δημόσιων αναζητήσεων
347 347 permission_save_queries: Αποθήκευση αναζητήσεων
348 348 permission_view_gantt: Προβολή διαγράμματος gantt
349 349 permission_view_calendar: Προβολή ημερολογίου
350 350 permission_view_issue_watchers: Προβολή λίστας παρατηρητών
351 351 permission_add_issue_watchers: Προσθήκη παρατηρητών
352 352 permission_log_time: Ιστορικό χρόνου που δαπανήθηκε
353 353 permission_view_time_entries: Προβολή χρόνου που δαπανήθηκε
354 354 permission_edit_time_entries: Επεξεργασία ιστορικού χρόνου
355 355 permission_edit_own_time_entries: Επεξεργασία δικού μου ιστορικού χρόνου
356 356 permission_manage_news: Διαχείριση νέων
357 357 permission_comment_news: Σχολιασμός νέων
358 358 permission_manage_documents: Διαχείριση εγγράφων
359 359 permission_view_documents: Προβολή εγγράφων
360 360 permission_manage_files: Διαχείριση αρχείων
361 361 permission_view_files: Προβολή αρχείων
362 362 permission_manage_wiki: Διαχείριση wiki
363 363 permission_rename_wiki_pages: Μετονομασία σελίδων wiki
364 364 permission_delete_wiki_pages: Διαγραφή σελίδων wiki
365 365 permission_view_wiki_pages: Προβολή wiki
366 366 permission_view_wiki_edits: Προβολή ιστορικού wiki
367 367 permission_edit_wiki_pages: Επεξεργασία σελίδων wiki
368 368 permission_delete_wiki_pages_attachments: Διαγραφή συνημμένων
369 369 permission_protect_wiki_pages: Προστασία σελίδων wiki
370 370 permission_manage_repository: Διαχείριση αποθετηρίου
371 371 permission_browse_repository: Διαχείριση εγγράφων
372 372 permission_view_changesets: Προβολή changesets
373 373 permission_commit_access: Πρόσβαση commit
374 374 permission_manage_boards: Διαχείριση πινάκων συζητήσεων
375 375 permission_view_messages: Προβολή μηνυμάτων
376 376 permission_add_messages: Αποστολή μηνυμάτων
377 377 permission_edit_messages: Επεξεργασία μηνυμάτων
378 378 permission_edit_own_messages: Επεξεργασία δικών μου μηνυμάτων
379 379 permission_delete_messages: Διαγραφή μηνυμάτων
380 380 permission_delete_own_messages: Διαγραφή δικών μου μηνυμάτων
381 381
382 382 project_module_issue_tracking: Ανίχνευση θεμάτων
383 383 project_module_time_tracking: Ανίχνευση χρόνου
384 384 project_module_news: Νέα
385 385 project_module_documents: Έγγραφα
386 386 project_module_files: Αρχεία
387 387 project_module_wiki: Wiki
388 388 project_module_repository: Αποθετήριο
389 389 project_module_boards: Πίνακες συζητήσεων
390 390
391 391 label_user: Χρήστης
392 392 label_user_plural: Χρήστες
393 393 label_user_new: Νέος Χρήστης
394 394 label_project: Έργο
395 395 label_project_new: Νέο έργο
396 396 label_project_plural: Έργα
397 397 label_x_projects:
398 398 zero: κανένα έργο
399 399 one: 1 έργο
400 400 other: "%{count} έργα"
401 401 label_project_all: Όλα τα έργα
402 402 label_project_latest: Τελευταία έργα
403 403 label_issue: Θέμα
404 404 label_issue_new: Νέο θέμα
405 405 label_issue_plural: Θέματα
406 406 label_issue_view_all: Προβολή όλων των θεμάτων
407 407 label_issues_by: "Θέματα του %{value}"
408 408 label_issue_added: Το θέμα προστέθηκε
409 409 label_issue_updated: Το θέμα ενημερώθηκε
410 410 label_document: Έγγραφο
411 411 label_document_new: Νέο έγγραφο
412 412 label_document_plural: Έγγραφα
413 413 label_document_added: Έγγραφο προστέθηκε
414 414 label_role: Ρόλος
415 415 label_role_plural: Ρόλοι
416 416 label_role_new: Νέος ρόλος
417 417 label_role_and_permissions: Ρόλοι και άδειες
418 418 label_member: Μέλος
419 419 label_member_new: Νέο μέλος
420 420 label_member_plural: Μέλη
421 421 label_tracker: Ανιχνευτής
422 422 label_tracker_plural: Ανιχνευτές
423 423 label_tracker_new: Νέος Ανιχνευτής
424 424 label_workflow: Ροή εργασίας
425 425 label_issue_status: Κατάσταση θέματος
426 426 label_issue_status_plural: Κατάσταση θέματος
427 427 label_issue_status_new: Νέα κατάσταση
428 428 label_issue_category: Κατηγορία θέματος
429 429 label_issue_category_plural: Κατηγορίες θεμάτων
430 430 label_issue_category_new: Νέα κατηγορία
431 431 label_custom_field: Προσαρμοσμένο πεδίο
432 432 label_custom_field_plural: Προσαρμοσμένα πεδία
433 433 label_custom_field_new: Νέο προσαρμοσμένο πεδίο
434 434 label_enumerations: Απαριθμήσεις
435 435 label_enumeration_new: Νέα τιμή
436 436 label_information: Πληροφορία
437 437 label_information_plural: Πληροφορίες
438 438 label_please_login: Παρακαλώ συνδεθείτε
439 439 label_register: Εγγραφή
440 440 label_login_with_open_id_option: ή συνδεθείτε με OpenID
441 441 label_password_lost: Ανάκτηση κωδικού πρόσβασης
442 442 label_home: Αρχική σελίδα
443 443 label_my_page: Η σελίδα μου
444 444 label_my_account: Ο λογαριασμός μου
445 445 label_my_projects: Τα έργα μου
446 446 label_administration: Διαχείριση
447 447 label_login: Σύνδεση
448 448 label_logout: Αποσύνδεση
449 449 label_help: Βοήθεια
450 450 label_reported_issues: Εισηγμένα θέματα
451 451 label_assigned_to_me_issues: Θέματα που έχουν ανατεθεί σε μένα
452 452 label_last_login: Τελευταία σύνδεση
453 453 label_registered_on: Εγγράφηκε την
454 454 label_activity: Δραστηριότητα
455 455 label_overall_activity: Συνολική δραστηριότητα
456 456 label_user_activity: "δραστηριότητα του %{value}"
457 457 label_new: Νέο
458 458 label_logged_as: Σύνδεδεμένος ως
459 459 label_environment: Περιβάλλον
460 460 label_authentication: Πιστοποίηση
461 461 label_auth_source: Τρόπος πιστοποίησης
462 462 label_auth_source_new: Νέος τρόπος πιστοποίησης
463 463 label_auth_source_plural: Τρόποι πιστοποίησης
464 464 label_subproject_plural: Επιμέρους έργα
465 465 label_and_its_subprojects: "%{value} και τα επιμέρους έργα του"
466 466 label_min_max_length: Ελάχ. - Μέγ. μήκος
467 467 label_list: Λίστα
468 468 label_date: Ημερομηνία
469 469 label_integer: Ακέραιος
470 470 label_float: Αριθμός κινητής υποδιαστολής
471 471 label_boolean: Λογικός
472 472 label_string: Κείμενο
473 473 label_text: Μακροσκελές κείμενο
474 474 label_attribute: Ιδιότητα
475 475 label_attribute_plural: Ιδιότητες
476 476 label_download: "%{count} Μεταφόρτωση"
477 477 label_download_plural: "%{count} Μεταφορτώσεις"
478 478 label_no_data: Δεν υπάρχουν δεδομένα
479 479 label_change_status: Αλλαγή κατάστασης
480 480 label_history: Ιστορικό
481 481 label_attachment: Αρχείο
482 482 label_attachment_new: Νέο αρχείο
483 483 label_attachment_delete: Διαγραφή αρχείου
484 484 label_attachment_plural: Αρχεία
485 485 label_file_added: Το αρχείο προστέθηκε
486 486 label_report: Αναφορά
487 487 label_report_plural: Αναφορές
488 488 label_news: Νέα
489 489 label_news_new: Προσθήκη νέων
490 490 label_news_plural: Νέα
491 491 label_news_latest: Τελευταία νέα
492 492 label_news_view_all: Προβολή όλων των νέων
493 493 label_news_added: Τα νέα προστέθηκαν
494 494 label_settings: Ρυθμίσεις
495 495 label_overview: Επισκόπηση
496 496 label_version: Έκδοση
497 497 label_version_new: Νέα έκδοση
498 498 label_version_plural: Εκδόσεις
499 499 label_confirmation: Επιβεβαίωση
500 500 label_export_to: 'Επίσης διαθέσιμο σε:'
501 501 label_read: Διάβασε...
502 502 label_public_projects: Δημόσια έργα
503 503 label_open_issues: Ανοικτό
504 504 label_open_issues_plural: Ανοικτά
505 505 label_closed_issues: Κλειστό
506 506 label_closed_issues_plural: Κλειστά
507 507 label_x_open_issues_abbr_on_total:
508 508 zero: 0 ανοικτά / %{total}
509 509 one: 1 ανοικτό / %{total}
510 510 other: "%{count} ανοικτά / %{total}"
511 511 label_x_open_issues_abbr:
512 512 zero: 0 ανοικτά
513 513 one: 1 ανοικτό
514 514 other: "%{count} ανοικτά"
515 515 label_x_closed_issues_abbr:
516 516 zero: 0 κλειστά
517 517 one: 1 κλειστό
518 518 other: "%{count} κλειστά"
519 519 label_total: Σύνολο
520 520 label_permissions: Άδειες
521 521 label_current_status: Τρέχουσα κατάσταση
522 522 label_new_statuses_allowed: Νέες καταστάσεις επιτρέπονται
523 523 label_all: όλα
524 524 label_none: κανένα
525 525 label_nobody: κανείς
526 526 label_next: Επόμενο
527 527 label_previous: Προηγούμενο
528 528 label_used_by: Χρησιμοποιήθηκε από
529 529 label_details: Λεπτομέρειες
530 530 label_add_note: Προσθήκη σημείωσης
531 531 label_per_page: Ανά σελίδα
532 532 label_calendar: Ημερολόγιο
533 533 label_months_from: μηνών από
534 534 label_gantt: Gantt
535 535 label_internal: Εσωτερικό
536 536 label_last_changes: "Τελευταίες %{count} αλλαγές"
537 537 label_change_view_all: Προβολή όλων των αλλαγών
538 538 label_personalize_page: Προσαρμογή σελίδας
539 539 label_comment: Σχόλιο
540 540 label_comment_plural: Σχόλια
541 541 label_x_comments:
542 542 zero: δεν υπάρχουν σχόλια
543 543 one: 1 σχόλιο
544 544 other: "%{count} σχόλια"
545 545 label_comment_add: Προσθήκη σχολίου
546 546 label_comment_added: Τα σχόλια προστέθηκαν
547 547 label_comment_delete: Διαγραφή σχολίων
548 548 label_query: Προσαρμοσμένη αναζήτηση
549 549 label_query_plural: Προσαρμοσμένες αναζητήσεις
550 550 label_query_new: Νέα αναζήτηση
551 551 label_filter_add: Προσθήκη φίλτρου
552 552 label_filter_plural: Φίλτρα
553 553 label_equals: είναι
554 554 label_not_equals: δεν είναι
555 555 label_in_less_than: μικρότερο από
556 556 label_in_more_than: περισσότερο από
557 557 label_greater_or_equal: '>='
558 558 label_less_or_equal: '<='
559 559 label_in: σε
560 560 label_today: σήμερα
561 561 label_all_time: συνέχεια
562 562 label_yesterday: χθες
563 563 label_this_week: αυτή την εβδομάδα
564 564 label_last_week: την προηγούμενη εβδομάδα
565 565 label_last_n_days: "τελευταίες %{count} μέρες"
566 566 label_this_month: αυτό το μήνα
567 567 label_last_month: τον προηγούμενο μήνα
568 568 label_this_year: αυτό το χρόνο
569 569 label_date_range: Χρονικό διάστημα
570 570 label_less_than_ago: σε λιγότερο από ημέρες πριν
571 571 label_more_than_ago: σε περισσότερο από ημέρες πριν
572 572 label_ago: ημέρες πριν
573 573 label_contains: περιέχει
574 574 label_not_contains: δεν περιέχει
575 575 label_day_plural: μέρες
576 576 label_repository: Αποθετήριο
577 577 label_repository_plural: Αποθετήρια
578 578 label_browse: Πλοήγηση
579 579 label_modification: "%{count} τροποποίηση"
580 580 label_modification_plural: "%{count} τροποποιήσεις"
581 581 label_branch: Branch
582 582 label_tag: Tag
583 583 label_revision: Αναθεώρηση
584 584 label_revision_plural: Αναθεωρήσεις
585 585 label_associated_revisions: Συνεταιρικές αναθεωρήσεις
586 586 label_added: προστέθηκε
587 587 label_modified: τροποποιήθηκε
588 588 label_copied: αντιγράφηκε
589 589 label_renamed: μετονομάστηκε
590 590 label_deleted: διαγράφηκε
591 591 label_latest_revision: Τελευταία αναθεώριση
592 592 label_latest_revision_plural: Τελευταίες αναθεωρήσεις
593 593 label_view_revisions: Προβολή αναθεωρήσεων
594 594 label_view_all_revisions: Προβολή όλων των αναθεωρήσεων
595 595 label_max_size: Μέγιστο μέγεθος
596 596 label_sort_highest: Μετακίνηση στην κορυφή
597 597 label_sort_higher: Μετακίνηση προς τα πάνω
598 598 label_sort_lower: Μετακίνηση προς τα κάτω
599 599 label_sort_lowest: Μετακίνηση στο κατώτατο μέρος
600 600 label_roadmap: Χάρτης πορείας
601 601 label_roadmap_due_in: "Προθεσμία σε %{value}"
602 602 label_roadmap_overdue: "%{value} καθυστερημένο"
603 603 label_roadmap_no_issues: Δεν υπάρχουν θέματα για αυτή την έκδοση
604 604 label_search: Αναζήτηση
605 605 label_result_plural: Αποτελέσματα
606 606 label_all_words: Όλες οι λέξεις
607 607 label_wiki: Wiki
608 608 label_wiki_edit: Επεξεργασία wiki
609 609 label_wiki_edit_plural: Επεξεργασία wiki
610 610 label_wiki_page: Σελίδα Wiki
611 611 label_wiki_page_plural: Σελίδες Wiki
612 612 label_index_by_title: Δείκτης ανά τίτλο
613 613 label_index_by_date: Δείκτης ανά ημερομηνία
614 614 label_current_version: Τρέχουσα έκδοση
615 615 label_preview: Προεπισκόπηση
616 616 label_feed_plural: Feeds
617 617 label_changes_details: Λεπτομέρειες όλων των αλλαγών
618 618 label_issue_tracking: Ανίχνευση θεμάτων
619 619 label_spent_time: Δαπανημένος χρόνος
620 620 label_f_hour: "%{value} ώρα"
621 621 label_f_hour_plural: "%{value} ώρες"
622 622 label_time_tracking: Ανίχνευση χρόνου
623 623 label_change_plural: Αλλαγές
624 624 label_statistics: Στατιστικά
625 625 label_commits_per_month: Commits ανά μήνα
626 626 label_commits_per_author: Commits ανά συγγραφέα
627 627 label_view_diff: Προβολή διαφορών
628 628 label_diff_inline: σε σειρά
629 629 label_diff_side_by_side: αντικρυστά
630 630 label_options: Επιλογές
631 631 label_copy_workflow_from: Αντιγραφή ροής εργασίας από
632 632 label_permissions_report: Συνοπτικός πίνακας αδειών
633 633 label_watched_issues: Θέματα υπό παρακολούθηση
634 634 label_related_issues: Σχετικά θέματα
635 635 label_applied_status: Εφαρμογή κατάστασης
636 636 label_loading: Φορτώνεται...
637 637 label_relation_new: Νέα συσχέτιση
638 638 label_relation_delete: Διαγραφή συσχέτισης
639 639 label_relates_to: σχετικό με
640 640 label_duplicates: αντίγραφα
641 641 label_duplicated_by: αντιγράφηκε από
642 642 label_blocks: φραγές
643 643 label_blocked_by: φραγή από τον
644 644 label_precedes: προηγείται
645 645 label_follows: ακολουθεί
646 646 label_end_to_start: από το τέλος στην αρχή
647 647 label_end_to_end: από το τέλος στο τέλος
648 648 label_start_to_start: από την αρχή στην αρχή
649 649 label_start_to_end: από την αρχή στο τέλος
650 650 label_stay_logged_in: Παραμονή σύνδεσης
651 651 label_disabled: απενεργοποιημένη
652 652 label_show_completed_versions: Προβολή ολοκληρωμένων εκδόσεων
653 653 label_me: εγώ
654 654 label_board: Φόρουμ
655 655 label_board_new: Νέο φόρουμ
656 656 label_board_plural: Φόρουμ
657 657 label_topic_plural: Θέματα
658 658 label_message_plural: Μηνύματα
659 659 label_message_last: Τελευταίο μήνυμα
660 660 label_message_new: Νέο μήνυμα
661 661 label_message_posted: Το μήνυμα προστέθηκε
662 662 label_reply_plural: Απαντήσεις
663 663 label_send_information: Αποστολή πληροφοριών λογαριασμού στο χρήστη
664 664 label_year: Έτος
665 665 label_month: Μήνας
666 666 label_week: Εβδομάδα
667 667 label_date_from: Από
668 668 label_date_to: Έως
669 669 label_language_based: Με βάση τη γλώσσα του χρήστη
670 670 label_sort_by: "Ταξινόμηση ανά %{value}"
671 671 label_send_test_email: Αποστολή δοκιμαστικού email
672 672 label_feeds_access_key_created_on: "το κλειδί πρόσβασης RSS δημιουργήθηκε πριν από %{value}"
673 673 label_module_plural: Μονάδες
674 674 label_added_time_by: "Προστέθηκε από τον %{author} πριν από %{age}"
675 675 label_updated_time_by: "Ενημερώθηκε από τον %{author} πριν από %{age}"
676 676 label_updated_time: "Ενημερώθηκε πριν από %{value}"
677 677 label_jump_to_a_project: Μεταβείτε σε ένα έργο...
678 678 label_file_plural: Αρχεία
679 679 label_changeset_plural: Changesets
680 680 label_default_columns: Προεπιλεγμένες στήλες
681 681 label_no_change_option: (Δεν υπάρχουν αλλαγές)
682 682 label_bulk_edit_selected_issues: Μαζική επεξεργασία επιλεγμένων θεμάτων
683 683 label_theme: Θέμα
684 684 label_default: Προεπιλογή
685 685 label_search_titles_only: Αναζήτηση τίτλων μόνο
686 686 label_user_mail_option_all: "Για όλες τις εξελίξεις σε όλα τα έργα μου"
687 687 label_user_mail_option_selected: "Για όλες τις εξελίξεις μόνο στα επιλεγμένα έργα..."
688 688 label_user_mail_no_self_notified: "Δεν θέλω να ειδοποιούμαι για τις δικές μου αλλαγές"
689 689 label_registration_activation_by_email: ενεργοποίηση λογαριασμού με email
690 690 label_registration_manual_activation: χειροκίνητη ενεργοποίηση λογαριασμού
691 691 label_registration_automatic_activation: αυτόματη ενεργοποίηση λογαριασμού
692 692 label_display_per_page: "Ανά σελίδα: %{value}"
693 693 label_age: Ηλικία
694 694 label_change_properties: Αλλαγή ιδιοτήτων
695 695 label_general: Γενικά
696 696 label_more: Περισσότερα
697 697 label_scm: SCM
698 698 label_plugins: Plugins
699 699 label_ldap_authentication: Πιστοποίηση LDAP
700 700 label_downloads_abbr: Μ/Φ
701 701 label_optional_description: Προαιρετική περιγραφή
702 702 label_add_another_file: Προσθήκη άλλου αρχείου
703 703 label_preferences: Προτιμήσεις
704 704 label_chronological_order: Κατά χρονολογική σειρά
705 705 label_reverse_chronological_order: Κατά αντίστροφη χρονολογική σειρά
706 706 label_planning: Σχεδιασμός
707 707 label_incoming_emails: Εισερχόμενα email
708 708 label_generate_key: Δημιουργία κλειδιού
709 709 label_issue_watchers: Παρατηρητές
710 710 label_example: Παράδειγμα
711 711 label_display: Προβολή
712 712 label_sort: Ταξινόμηση
713 713 label_ascending: Αύξουσα
714 714 label_descending: Φθίνουσα
715 715 label_date_from_to: Από %{start} έως %{end}
716 716 label_wiki_content_added: Η σελίδα Wiki προστέθηκε
717 717 label_wiki_content_updated: Η σελίδα Wiki ενημερώθηκε
718 718
719 719 button_login: Σύνδεση
720 720 button_submit: Αποστολή
721 721 button_save: Αποθήκευση
722 722 button_check_all: Επιλογή όλων
723 723 button_uncheck_all: Αποεπιλογή όλων
724 724 button_delete: Διαγραφή
725 725 button_create: Δημιουργία
726 726 button_create_and_continue: Δημιουργία και συνέχεια
727 727 button_test: Τεστ
728 728 button_edit: Επεξεργασία
729 729 button_add: Προσθήκη
730 730 button_change: Αλλαγή
731 731 button_apply: Εφαρμογή
732 732 button_clear: Καθαρισμός
733 733 button_lock: Κλείδωμα
734 734 button_unlock: Ξεκλείδωμα
735 735 button_download: Μεταφόρτωση
736 736 button_list: Λίστα
737 737 button_view: Προβολή
738 738 button_move: Μετακίνηση
739 739 button_back: Πίσω
740 740 button_cancel: Ακύρωση
741 741 button_activate: Ενεργοποίηση
742 742 button_sort: Ταξινόμηση
743 743 button_log_time: Ιστορικό χρόνου
744 744 button_rollback: Επαναφορά σε αυτή την έκδοση
745 745 button_watch: Παρακολούθηση
746 746 button_unwatch: Αναίρεση παρακολούθησης
747 747 button_reply: Απάντηση
748 748 button_archive: Αρχειοθέτηση
749 749 button_unarchive: Αναίρεση αρχειοθέτησης
750 750 button_reset: Επαναφορά
751 751 button_rename: Μετονομασία
752 752 button_change_password: Αλλαγή κωδικού πρόσβασης
753 753 button_copy: Αντιγραφή
754 754 button_annotate: Σχολιασμός
755 755 button_update: Ενημέρωση
756 756 button_configure: Ρύθμιση
757 757 button_quote: Παράθεση
758 758
759 759 status_active: ενεργό(ς)/ή
760 760 status_registered: εγεγγραμμένο(ς)/η
761 761 status_locked: κλειδωμένο(ς)/η
762 762
763 763 text_select_mail_notifications: Επιλογή ενεργειών για τις οποίες θα πρέπει να αποσταλεί ειδοποίηση με email.
764 764 text_regexp_info: eg. ^[A-Z0-9]+$
765 765 text_min_max_length_info: 0 σημαίνει ότι δεν υπάρχουν περιορισμοί
766 766 text_project_destroy_confirmation: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το έργο και τα σχετικά δεδομένα του;
767 767 text_subprojects_destroy_warning: "Επίσης το(α) επιμέρους έργο(α): %{value} θα διαγραφούν."
768 768 text_workflow_edit: Επιλέξτε ένα ρόλο και έναν ανιχνευτή για να επεξεργαστείτε τη ροή εργασίας
769 769 text_are_you_sure: Είστε σίγουρος ;
770 770 text_tip_issue_begin_day: καθήκοντα που ξεκινάνε σήμερα
771 771 text_tip_issue_end_day: καθήκοντα που τελειώνουν σήμερα
772 772 text_tip_issue_begin_end_day: καθήκοντα που ξεκινάνε και τελειώνουν σήμερα
773 773 text_project_identifier_info: 'Επιτρέπονται μόνο μικρά πεζά γράμματα (a-z), αριθμοί και παύλες. <br /> Μετά την αποθήκευση, το αναγνωριστικό δεν μπορεί να αλλάξει.'
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).
@@ -1,968 +1,968
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_days:
52 52 one: "1 day"
53 53 other: "%{count} days"
54 54 about_x_months:
55 55 one: "about 1 month"
56 56 other: "about %{count} months"
57 57 x_months:
58 58 one: "1 month"
59 59 other: "%{count} months"
60 60 about_x_years:
61 61 one: "about 1 year"
62 62 other: "about %{count} years"
63 63 over_x_years:
64 64 one: "over 1 year"
65 65 other: "over %{count} years"
66 66 almost_x_years:
67 67 one: "almost 1 year"
68 68 other: "almost %{count} years"
69 69
70 70 number:
71 71 format:
72 72 separator: "."
73 73 delimiter: " "
74 74 precision: 3
75 75
76 76 currency:
77 77 format:
78 78 format: "%u%n"
79 79 unit: "£"
80 80
81 81 human:
82 82 format:
83 83 delimiter: ""
84 84 precision: 1
85 85 storage_units:
86 86 format: "%n %u"
87 87 units:
88 88 byte:
89 89 one: "Byte"
90 90 other: "Bytes"
91 91 kb: "kB"
92 92 mb: "MB"
93 93 gb: "GB"
94 94 tb: "TB"
95 95
96 96
97 97 # Used in array.to_sentence.
98 98 support:
99 99 array:
100 100 sentence_connector: "and"
101 101 skip_last_comma: false
102 102
103 103 activerecord:
104 104 errors:
105 105 template:
106 106 header:
107 107 one: "1 error prohibited this %{model} from being saved"
108 108 other: "%{count} errors prohibited this %{model} from being saved"
109 109 messages:
110 110 inclusion: "is not included in the list"
111 111 exclusion: "is reserved"
112 112 invalid: "is invalid"
113 113 confirmation: "doesn't match confirmation"
114 114 accepted: "must be accepted"
115 115 empty: "can't be empty"
116 116 blank: "can't be blank"
117 117 too_long: "is too long (maximum is %{count} characters)"
118 118 too_short: "is too short (minimum is %{count} characters)"
119 119 wrong_length: "is the wrong length (should be %{count} characters)"
120 120 taken: "has already been taken"
121 121 not_a_number: "is not a number"
122 122 not_a_date: "is not a valid date"
123 123 greater_than: "must be greater than %{count}"
124 124 greater_than_or_equal_to: "must be greater than or equal to %{count}"
125 125 equal_to: "must be equal to %{count}"
126 126 less_than: "must be less than %{count}"
127 127 less_than_or_equal_to: "must be less than or equal to %{count}"
128 128 odd: "must be odd"
129 129 even: "must be even"
130 130 greater_than_start_date: "must be greater than start date"
131 131 not_same_project: "doesn't belong to the same project"
132 132 circular_dependency: "This relation would create a circular dependency"
133 133 cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks"
134 134
135 135 actionview_instancetag_blank_option: Please select
136 136
137 137 general_text_No: 'No'
138 138 general_text_Yes: 'Yes'
139 139 general_text_no: 'no'
140 140 general_text_yes: 'yes'
141 141 general_lang_name: 'English (British)'
142 142 general_csv_separator: ','
143 143 general_csv_decimal_separator: '.'
144 144 general_csv_encoding: ISO-8859-1
145 145 general_pdf_encoding: UTF-8
146 146 general_first_day_of_week: '1'
147 147
148 148 notice_account_updated: Account was successfully updated.
149 149 notice_account_invalid_creditentials: Invalid user or password
150 150 notice_account_password_updated: Password was successfully updated.
151 151 notice_account_wrong_password: Wrong password
152 152 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
153 153 notice_account_unknown_email: Unknown user.
154 154 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
155 155 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
156 156 notice_account_activated: Your account has been activated. You can now log in.
157 157 notice_successful_create: Successful creation.
158 158 notice_successful_update: Successful update.
159 159 notice_successful_delete: Successful deletion.
160 160 notice_successful_connection: Successful connection.
161 161 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
162 162 notice_locking_conflict: Data has been updated by another user.
163 163 notice_not_authorized: You are not authorised to access this page.
164 164 notice_not_authorized_archived_project: The project you're trying to access has been archived.
165 165 notice_email_sent: "An email was sent to %{value}"
166 166 notice_email_error: "An error occurred while sending mail (%{value})"
167 167 notice_feeds_access_key_reseted: Your RSS access key was reset.
168 168 notice_api_access_key_reseted: Your API access key was reset.
169 169 notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}."
170 170 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
171 171 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
172 172 notice_account_pending: "Your account was created and is now pending administrator approval."
173 173 notice_default_data_loaded: Default configuration successfully loaded.
174 174 notice_unable_delete_version: Unable to delete version.
175 175 notice_unable_delete_time_entry: Unable to delete time log entry.
176 176 notice_issue_done_ratios_updated: Issue done ratios updated.
177 177 notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})"
178 178
179 179 error_can_t_load_default_data: "Default configuration could not be loaded: %{value}"
180 180 error_scm_not_found: "The entry or revision was not found in the repository."
181 181 error_scm_command_failed: "An error occurred when trying to access the repository: %{value}"
182 182 error_scm_annotate: "The entry does not exist or cannot be annotated."
183 183 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
184 184 error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.'
185 185 error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").'
186 186 error_can_not_delete_custom_field: Unable to delete custom field
187 187 error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted."
188 188 error_can_not_remove_role: "This role is in use and cannot be deleted."
189 189 error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened'
190 190 error_can_not_archive_project: This project cannot be archived
191 191 error_issue_done_ratios_not_updated: "Issue done ratios not updated."
192 192 error_workflow_copy_source: 'Please select a source tracker or role'
193 193 error_workflow_copy_target: 'Please select target tracker(s) and role(s)'
194 194 error_unable_delete_issue_status: 'Unable to delete issue status'
195 195 error_unable_to_connect: "Unable to connect (%{value})"
196 196 warning_attachments_not_saved: "%{count} file(s) could not be saved."
197 197
198 198 mail_subject_lost_password: "Your %{value} password"
199 199 mail_body_lost_password: 'To change your password, click on the following link:'
200 200 mail_subject_register: "Your %{value} account activation"
201 201 mail_body_register: 'To activate your account, click on the following link:'
202 202 mail_body_account_information_external: "You can use your %{value} account to log in."
203 203 mail_body_account_information: Your account information
204 204 mail_subject_account_activation_request: "%{value} account activation request"
205 205 mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:"
206 206 mail_subject_reminder: "%{count} issue(s) due in the next %{days} days"
207 207 mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:"
208 208 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
209 209 mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}."
210 210 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
211 211 mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}."
212 212
213 213 gui_validation_error: 1 error
214 214 gui_validation_error_plural: "%{count} errors"
215 215
216 216 field_name: Name
217 217 field_description: Description
218 218 field_summary: Summary
219 219 field_is_required: Required
220 220 field_firstname: First name
221 221 field_lastname: Last name
222 222 field_mail: Email
223 223 field_filename: File
224 224 field_filesize: Size
225 225 field_downloads: Downloads
226 226 field_author: Author
227 227 field_created_on: Created
228 228 field_updated_on: Updated
229 229 field_field_format: Format
230 230 field_is_for_all: For all projects
231 231 field_possible_values: Possible values
232 232 field_regexp: Regular expression
233 233 field_min_length: Minimum length
234 234 field_max_length: Maximum length
235 235 field_value: Value
236 236 field_category: Category
237 237 field_title: Title
238 238 field_project: Project
239 239 field_issue: Issue
240 240 field_status: Status
241 241 field_notes: Notes
242 242 field_is_closed: Issue closed
243 243 field_is_default: Default value
244 244 field_tracker: Tracker
245 245 field_subject: Subject
246 246 field_due_date: Due date
247 247 field_assigned_to: Assignee
248 248 field_priority: Priority
249 249 field_fixed_version: Target version
250 250 field_user: User
251 251 field_principal: Principal
252 252 field_role: Role
253 253 field_homepage: Homepage
254 254 field_is_public: Public
255 255 field_parent: Subproject of
256 256 field_is_in_roadmap: Issues displayed in roadmap
257 257 field_login: Login
258 258 field_mail_notification: Email notifications
259 259 field_admin: Administrator
260 260 field_last_login_on: Last connection
261 261 field_language: Language
262 262 field_effective_date: Date
263 263 field_password: Password
264 264 field_new_password: New password
265 265 field_password_confirmation: Confirmation
266 266 field_version: Version
267 267 field_type: Type
268 268 field_host: Host
269 269 field_port: Port
270 270 field_account: Account
271 271 field_base_dn: Base DN
272 272 field_attr_login: Login attribute
273 273 field_attr_firstname: Firstname attribute
274 274 field_attr_lastname: Lastname attribute
275 275 field_attr_mail: Email attribute
276 276 field_onthefly: On-the-fly user creation
277 277 field_start_date: Start date
278 field_done_ratio: % Done
278 field_done_ratio: "% Done"
279 279 field_auth_source: Authentication mode
280 280 field_hide_mail: Hide my email address
281 281 field_comments: Comment
282 282 field_url: URL
283 283 field_start_page: Start page
284 284 field_subproject: Subproject
285 285 field_hours: Hours
286 286 field_activity: Activity
287 287 field_spent_on: Date
288 288 field_identifier: Identifier
289 289 field_is_filter: Used as a filter
290 290 field_issue_to: Related issue
291 291 field_delay: Delay
292 292 field_assignable: Issues can be assigned to this role
293 293 field_redirect_existing_links: Redirect existing links
294 294 field_estimated_hours: Estimated time
295 295 field_column_names: Columns
296 296 field_time_entries: Log time
297 297 field_time_zone: Time zone
298 298 field_searchable: Searchable
299 299 field_default_value: Default value
300 300 field_comments_sorting: Display comments
301 301 field_parent_title: Parent page
302 302 field_editable: Editable
303 303 field_watcher: Watcher
304 304 field_identity_url: OpenID URL
305 305 field_content: Content
306 306 field_group_by: Group results by
307 307 field_sharing: Sharing
308 308 field_parent_issue: Parent task
309 309 field_member_of_group: "Assignee's group"
310 310 field_assigned_to_role: "Assignee's role"
311 311 field_text: Text field
312 312 field_visible: Visible
313 313 field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text"
314 314
315 315 setting_app_title: Application title
316 316 setting_app_subtitle: Application subtitle
317 317 setting_welcome_text: Welcome text
318 318 setting_default_language: Default language
319 319 setting_login_required: Authentication required
320 320 setting_self_registration: Self-registration
321 321 setting_attachment_max_size: Attachment max. size
322 322 setting_issues_export_limit: Issues export limit
323 323 setting_mail_from: Emission email address
324 324 setting_bcc_recipients: Blind carbon copy recipients (bcc)
325 325 setting_plain_text_mail: Plain text mail (no HTML)
326 326 setting_host_name: Host name and path
327 327 setting_text_formatting: Text formatting
328 328 setting_wiki_compression: Wiki history compression
329 329 setting_feeds_limit: Feed content limit
330 330 setting_default_projects_public: New projects are public by default
331 331 setting_autofetch_changesets: Autofetch commits
332 332 setting_sys_api_enabled: Enable WS for repository management
333 333 setting_commit_ref_keywords: Referencing keywords
334 334 setting_commit_fix_keywords: Fixing keywords
335 335 setting_autologin: Autologin
336 336 setting_date_format: Date format
337 337 setting_time_format: Time format
338 338 setting_cross_project_issue_relations: Allow cross-project issue relations
339 339 setting_issue_list_default_columns: Default columns displayed on the issue list
340 340 setting_repositories_encodings: Repositories encodings
341 341 setting_commit_logs_encoding: Commit messages encoding
342 342 setting_emails_header: Emails header
343 343 setting_emails_footer: Emails footer
344 344 setting_protocol: Protocol
345 345 setting_per_page_options: Objects per page options
346 346 setting_user_format: Users display format
347 347 setting_activity_days_default: Days displayed on project activity
348 348 setting_display_subprojects_issues: Display subprojects issues on main projects by default
349 349 setting_enabled_scm: Enabled SCM
350 350 setting_mail_handler_body_delimiters: "Truncate emails after one of these lines"
351 351 setting_mail_handler_api_enabled: Enable WS for incoming emails
352 352 setting_mail_handler_api_key: API key
353 353 setting_sequential_project_identifiers: Generate sequential project identifiers
354 354 setting_gravatar_enabled: Use Gravatar user icons
355 355 setting_gravatar_default: Default Gravatar image
356 356 setting_diff_max_lines_displayed: Max number of diff lines displayed
357 357 setting_file_max_size_displayed: Max size of text files displayed inline
358 358 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
359 359 setting_openid: Allow OpenID login and registration
360 360 setting_password_min_length: Minimum password length
361 361 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
362 362 setting_default_projects_modules: Default enabled modules for new projects
363 363 setting_issue_done_ratio: Calculate the issue done ratio with
364 364 setting_issue_done_ratio_issue_field: Use the issue field
365 365 setting_issue_done_ratio_issue_status: Use the issue status
366 366 setting_start_of_week: Start calendars on
367 367 setting_rest_api_enabled: Enable REST web service
368 368 setting_cache_formatted_text: Cache formatted text
369 369 setting_default_notification_option: Default notification option
370 370 setting_commit_logtime_enabled: Enable time logging
371 371 setting_commit_logtime_activity_id: Activity for logged time
372 372 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
373 373
374 374 permission_add_project: Create project
375 375 permission_add_subprojects: Create subprojects
376 376 permission_edit_project: Edit project
377 377 permission_select_project_modules: Select project modules
378 378 permission_manage_members: Manage members
379 379 permission_manage_project_activities: Manage project activities
380 380 permission_manage_versions: Manage versions
381 381 permission_manage_categories: Manage issue categories
382 382 permission_view_issues: View Issues
383 383 permission_add_issues: Add issues
384 384 permission_edit_issues: Edit issues
385 385 permission_manage_issue_relations: Manage issue relations
386 386 permission_add_issue_notes: Add notes
387 387 permission_edit_issue_notes: Edit notes
388 388 permission_edit_own_issue_notes: Edit own notes
389 389 permission_move_issues: Move issues
390 390 permission_delete_issues: Delete issues
391 391 permission_manage_public_queries: Manage public queries
392 392 permission_save_queries: Save queries
393 393 permission_view_gantt: View gantt chart
394 394 permission_view_calendar: View calendar
395 395 permission_view_issue_watchers: View watchers list
396 396 permission_add_issue_watchers: Add watchers
397 397 permission_delete_issue_watchers: Delete watchers
398 398 permission_log_time: Log spent time
399 399 permission_view_time_entries: View spent time
400 400 permission_edit_time_entries: Edit time logs
401 401 permission_edit_own_time_entries: Edit own time logs
402 402 permission_manage_news: Manage news
403 403 permission_comment_news: Comment news
404 404 permission_manage_documents: Manage documents
405 405 permission_view_documents: View documents
406 406 permission_manage_files: Manage files
407 407 permission_view_files: View files
408 408 permission_manage_wiki: Manage wiki
409 409 permission_rename_wiki_pages: Rename wiki pages
410 410 permission_delete_wiki_pages: Delete wiki pages
411 411 permission_view_wiki_pages: View wiki
412 412 permission_view_wiki_edits: View wiki history
413 413 permission_edit_wiki_pages: Edit wiki pages
414 414 permission_delete_wiki_pages_attachments: Delete attachments
415 415 permission_protect_wiki_pages: Protect wiki pages
416 416 permission_manage_repository: Manage repository
417 417 permission_browse_repository: Browse repository
418 418 permission_view_changesets: View changesets
419 419 permission_commit_access: Commit access
420 420 permission_manage_boards: Manage forums
421 421 permission_view_messages: View messages
422 422 permission_add_messages: Post messages
423 423 permission_edit_messages: Edit messages
424 424 permission_edit_own_messages: Edit own messages
425 425 permission_delete_messages: Delete messages
426 426 permission_delete_own_messages: Delete own messages
427 427 permission_export_wiki_pages: Export wiki pages
428 428 permission_manage_subtasks: Manage subtasks
429 429
430 430 project_module_issue_tracking: Issue tracking
431 431 project_module_time_tracking: Time tracking
432 432 project_module_news: News
433 433 project_module_documents: Documents
434 434 project_module_files: Files
435 435 project_module_wiki: Wiki
436 436 project_module_repository: Repository
437 437 project_module_boards: Forums
438 438 project_module_calendar: Calendar
439 439 project_module_gantt: Gantt
440 440
441 441 label_user: User
442 442 label_user_plural: Users
443 443 label_user_new: New user
444 444 label_user_anonymous: Anonymous
445 445 label_project: Project
446 446 label_project_new: New project
447 447 label_project_plural: Projects
448 448 label_x_projects:
449 449 zero: no projects
450 450 one: 1 project
451 451 other: "%{count} projects"
452 452 label_project_all: All Projects
453 453 label_project_latest: Latest projects
454 454 label_issue: Issue
455 455 label_issue_new: New issue
456 456 label_issue_plural: Issues
457 457 label_issue_view_all: View all issues
458 458 label_issues_by: "Issues by %{value}"
459 459 label_issue_added: Issue added
460 460 label_issue_updated: Issue updated
461 461 label_document: Document
462 462 label_document_new: New document
463 463 label_document_plural: Documents
464 464 label_document_added: Document added
465 465 label_role: Role
466 466 label_role_plural: Roles
467 467 label_role_new: New role
468 468 label_role_and_permissions: Roles and permissions
469 469 label_role_anonymous: Anonymous
470 470 label_role_non_member: Non member
471 471 label_member: Member
472 472 label_member_new: New member
473 473 label_member_plural: Members
474 474 label_tracker: Tracker
475 475 label_tracker_plural: Trackers
476 476 label_tracker_new: New tracker
477 477 label_workflow: Workflow
478 478 label_issue_status: Issue status
479 479 label_issue_status_plural: Issue statuses
480 480 label_issue_status_new: New status
481 481 label_issue_category: Issue category
482 482 label_issue_category_plural: Issue categories
483 483 label_issue_category_new: New category
484 484 label_custom_field: Custom field
485 485 label_custom_field_plural: Custom fields
486 486 label_custom_field_new: New custom field
487 487 label_enumerations: Enumerations
488 488 label_enumeration_new: New value
489 489 label_information: Information
490 490 label_information_plural: Information
491 491 label_please_login: Please log in
492 492 label_register: Register
493 493 label_login_with_open_id_option: or login with OpenID
494 494 label_password_lost: Lost password
495 495 label_home: Home
496 496 label_my_page: My page
497 497 label_my_account: My account
498 498 label_my_projects: My projects
499 499 label_my_page_block: My page block
500 500 label_administration: Administration
501 501 label_login: Sign in
502 502 label_logout: Sign out
503 503 label_help: Help
504 504 label_reported_issues: Reported issues
505 505 label_assigned_to_me_issues: Issues assigned to me
506 506 label_last_login: Last connection
507 507 label_registered_on: Registered on
508 508 label_activity: Activity
509 509 label_overall_activity: Overall activity
510 510 label_user_activity: "%{value}'s activity"
511 511 label_new: New
512 512 label_logged_as: Logged in as
513 513 label_environment: Environment
514 514 label_authentication: Authentication
515 515 label_auth_source: Authentication mode
516 516 label_auth_source_new: New authentication mode
517 517 label_auth_source_plural: Authentication modes
518 518 label_subproject_plural: Subprojects
519 519 label_subproject_new: New subproject
520 520 label_and_its_subprojects: "%{value} and its subprojects"
521 521 label_min_max_length: Min - Max length
522 522 label_list: List
523 523 label_date: Date
524 524 label_integer: Integer
525 525 label_float: Float
526 526 label_boolean: Boolean
527 527 label_string: Text
528 528 label_text: Long text
529 529 label_attribute: Attribute
530 530 label_attribute_plural: Attributes
531 531 label_download: "%{count} Download"
532 532 label_download_plural: "%{count} Downloads"
533 533 label_no_data: No data to display
534 534 label_change_status: Change status
535 535 label_history: History
536 536 label_attachment: File
537 537 label_attachment_new: New file
538 538 label_attachment_delete: Delete file
539 539 label_attachment_plural: Files
540 540 label_file_added: File added
541 541 label_report: Report
542 542 label_report_plural: Reports
543 543 label_news: News
544 544 label_news_new: Add news
545 545 label_news_plural: News
546 546 label_news_latest: Latest news
547 547 label_news_view_all: View all news
548 548 label_news_added: News added
549 549 label_news_comment_added: Comment added to a news
550 550 label_settings: Settings
551 551 label_overview: Overview
552 552 label_version: Version
553 553 label_version_new: New version
554 554 label_version_plural: Versions
555 555 label_close_versions: Close completed versions
556 556 label_confirmation: Confirmation
557 557 label_export_to: 'Also available in:'
558 558 label_read: Read...
559 559 label_public_projects: Public projects
560 560 label_open_issues: open
561 561 label_open_issues_plural: open
562 562 label_closed_issues: closed
563 563 label_closed_issues_plural: closed
564 564 label_x_open_issues_abbr_on_total:
565 565 zero: 0 open / %{total}
566 566 one: 1 open / %{total}
567 567 other: "%{count} open / %{total}"
568 568 label_x_open_issues_abbr:
569 569 zero: 0 open
570 570 one: 1 open
571 571 other: "%{count} open"
572 572 label_x_closed_issues_abbr:
573 573 zero: 0 closed
574 574 one: 1 closed
575 575 other: "%{count} closed"
576 576 label_total: Total
577 577 label_permissions: Permissions
578 578 label_current_status: Current status
579 579 label_new_statuses_allowed: New statuses allowed
580 580 label_all: all
581 581 label_none: none
582 582 label_nobody: nobody
583 583 label_next: Next
584 584 label_previous: Previous
585 585 label_used_by: Used by
586 586 label_details: Details
587 587 label_add_note: Add a note
588 588 label_per_page: Per page
589 589 label_calendar: Calendar
590 590 label_months_from: months from
591 591 label_gantt: Gantt
592 592 label_internal: Internal
593 593 label_last_changes: "last %{count} changes"
594 594 label_change_view_all: View all changes
595 595 label_personalize_page: Personalise this page
596 596 label_comment: Comment
597 597 label_comment_plural: Comments
598 598 label_x_comments:
599 599 zero: no comments
600 600 one: 1 comment
601 601 other: "%{count} comments"
602 602 label_comment_add: Add a comment
603 603 label_comment_added: Comment added
604 604 label_comment_delete: Delete comments
605 605 label_query: Custom query
606 606 label_query_plural: Custom queries
607 607 label_query_new: New query
608 608 label_my_queries: My custom queries
609 609 label_filter_add: Add filter
610 610 label_filter_plural: Filters
611 611 label_equals: is
612 612 label_not_equals: is not
613 613 label_in_less_than: in less than
614 614 label_in_more_than: in more than
615 615 label_greater_or_equal: '>='
616 616 label_less_or_equal: '<='
617 617 label_in: in
618 618 label_today: today
619 619 label_all_time: all time
620 620 label_yesterday: yesterday
621 621 label_this_week: this week
622 622 label_last_week: last week
623 623 label_last_n_days: "last %{count} days"
624 624 label_this_month: this month
625 625 label_last_month: last month
626 626 label_this_year: this year
627 627 label_date_range: Date range
628 628 label_less_than_ago: less than days ago
629 629 label_more_than_ago: more than days ago
630 630 label_ago: days ago
631 631 label_contains: contains
632 632 label_not_contains: doesn't contain
633 633 label_day_plural: days
634 634 label_repository: Repository
635 635 label_repository_plural: Repositories
636 636 label_browse: Browse
637 637 label_modification: "%{count} change"
638 638 label_modification_plural: "%{count} changes"
639 639 label_branch: Branch
640 640 label_tag: Tag
641 641 label_revision: Revision
642 642 label_revision_plural: Revisions
643 643 label_revision_id: "Revision %{value}"
644 644 label_associated_revisions: Associated revisions
645 645 label_added: added
646 646 label_modified: modified
647 647 label_copied: copied
648 648 label_renamed: renamed
649 649 label_deleted: deleted
650 650 label_latest_revision: Latest revision
651 651 label_latest_revision_plural: Latest revisions
652 652 label_view_revisions: View revisions
653 653 label_view_all_revisions: View all revisions
654 654 label_max_size: Maximum size
655 655 label_sort_highest: Move to top
656 656 label_sort_higher: Move up
657 657 label_sort_lower: Move down
658 658 label_sort_lowest: Move to bottom
659 659 label_roadmap: Roadmap
660 660 label_roadmap_due_in: "Due in %{value}"
661 661 label_roadmap_overdue: "%{value} late"
662 662 label_roadmap_no_issues: No issues for this version
663 663 label_search: Search
664 664 label_result_plural: Results
665 665 label_all_words: All words
666 666 label_wiki: Wiki
667 667 label_wiki_edit: Wiki edit
668 668 label_wiki_edit_plural: Wiki edits
669 669 label_wiki_page: Wiki page
670 670 label_wiki_page_plural: Wiki pages
671 671 label_index_by_title: Index by title
672 672 label_index_by_date: Index by date
673 673 label_current_version: Current version
674 674 label_preview: Preview
675 675 label_feed_plural: Feeds
676 676 label_changes_details: Details of all changes
677 677 label_issue_tracking: Issue tracking
678 678 label_spent_time: Spent time
679 679 label_overall_spent_time: Overall spent time
680 680 label_f_hour: "%{value} hour"
681 681 label_f_hour_plural: "%{value} hours"
682 682 label_time_tracking: Time tracking
683 683 label_change_plural: Changes
684 684 label_statistics: Statistics
685 685 label_commits_per_month: Commits per month
686 686 label_commits_per_author: Commits per author
687 687 label_view_diff: View differences
688 688 label_diff_inline: inline
689 689 label_diff_side_by_side: side by side
690 690 label_options: Options
691 691 label_copy_workflow_from: Copy workflow from
692 692 label_permissions_report: Permissions report
693 693 label_watched_issues: Watched issues
694 694 label_related_issues: Related issues
695 695 label_applied_status: Applied status
696 696 label_loading: Loading...
697 697 label_relation_new: New relation
698 698 label_relation_delete: Delete relation
699 699 label_relates_to: related to
700 700 label_duplicates: duplicates
701 701 label_duplicated_by: duplicated by
702 702 label_blocks: blocks
703 703 label_blocked_by: blocked by
704 704 label_precedes: precedes
705 705 label_follows: follows
706 706 label_end_to_start: end to start
707 707 label_end_to_end: end to end
708 708 label_start_to_start: start to start
709 709 label_start_to_end: start to end
710 710 label_stay_logged_in: Stay logged in
711 711 label_disabled: disabled
712 712 label_show_completed_versions: Show completed versions
713 713 label_me: me
714 714 label_board: Forum
715 715 label_board_new: New forum
716 716 label_board_plural: Forums
717 717 label_board_locked: Locked
718 718 label_board_sticky: Sticky
719 719 label_topic_plural: Topics
720 720 label_message_plural: Messages
721 721 label_message_last: Last message
722 722 label_message_new: New message
723 723 label_message_posted: Message added
724 724 label_reply_plural: Replies
725 725 label_send_information: Send account information to the user
726 726 label_year: Year
727 727 label_month: Month
728 728 label_week: Week
729 729 label_date_from: From
730 730 label_date_to: To
731 731 label_language_based: Based on user's language
732 732 label_sort_by: "Sort by %{value}"
733 733 label_send_test_email: Send a test email
734 734 label_feeds_access_key: RSS access key
735 735 label_missing_feeds_access_key: Missing a RSS access key
736 736 label_feeds_access_key_created_on: "RSS access key created %{value} ago"
737 737 label_module_plural: Modules
738 738 label_added_time_by: "Added by %{author} %{age} ago"
739 739 label_updated_time_by: "Updated by %{author} %{age} ago"
740 740 label_updated_time: "Updated %{value} ago"
741 741 label_jump_to_a_project: Jump to a project...
742 742 label_file_plural: Files
743 743 label_changeset_plural: Changesets
744 744 label_default_columns: Default columns
745 745 label_no_change_option: (No change)
746 746 label_bulk_edit_selected_issues: Bulk edit selected issues
747 747 label_theme: Theme
748 748 label_default: Default
749 749 label_search_titles_only: Search titles only
750 750 label_user_mail_option_all: "For any event on all my projects"
751 751 label_user_mail_option_selected: "For any event on the selected projects only..."
752 752 label_user_mail_option_none: "No events"
753 753 label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in"
754 754 label_user_mail_option_only_assigned: "Only for things I am assigned to"
755 755 label_user_mail_option_only_owner: "Only for things I am the owner of"
756 756 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
757 757 label_registration_activation_by_email: account activation by email
758 758 label_registration_manual_activation: manual account activation
759 759 label_registration_automatic_activation: automatic account activation
760 760 label_display_per_page: "Per page: %{value}"
761 761 label_age: Age
762 762 label_change_properties: Change properties
763 763 label_general: General
764 764 label_more: More
765 765 label_scm: SCM
766 766 label_plugins: Plugins
767 767 label_ldap_authentication: LDAP authentication
768 768 label_downloads_abbr: D/L
769 769 label_optional_description: Optional description
770 770 label_add_another_file: Add another file
771 771 label_preferences: Preferences
772 772 label_chronological_order: In chronological order
773 773 label_reverse_chronological_order: In reverse chronological order
774 774 label_planning: Planning
775 775 label_incoming_emails: Incoming emails
776 776 label_generate_key: Generate a key
777 777 label_issue_watchers: Watchers
778 778 label_example: Example
779 779 label_display: Display
780 780 label_sort: Sort
781 781 label_ascending: Ascending
782 782 label_descending: Descending
783 783 label_date_from_to: From %{start} to %{end}
784 784 label_wiki_content_added: Wiki page added
785 785 label_wiki_content_updated: Wiki page updated
786 786 label_group: Group
787 787 label_group_plural: Groups
788 788 label_group_new: New group
789 789 label_time_entry_plural: Spent time
790 790 label_version_sharing_none: Not shared
791 791 label_version_sharing_descendants: With subprojects
792 792 label_version_sharing_hierarchy: With project hierarchy
793 793 label_version_sharing_tree: With project tree
794 794 label_version_sharing_system: With all projects
795 795 label_update_issue_done_ratios: Update issue done ratios
796 796 label_copy_source: Source
797 797 label_copy_target: Target
798 798 label_copy_same_as_target: Same as target
799 799 label_display_used_statuses_only: Only display statuses that are used by this tracker
800 800 label_api_access_key: API access key
801 801 label_missing_api_access_key: Missing an API access key
802 802 label_api_access_key_created_on: "API access key created %{value} ago"
803 803 label_profile: Profile
804 804 label_subtask_plural: Subtasks
805 805 label_project_copy_notifications: Send email notifications during the project copy
806 806 label_principal_search: "Search for user or group:"
807 807 label_user_search: "Search for user:"
808 808
809 809 button_login: Login
810 810 button_submit: Submit
811 811 button_save: Save
812 812 button_check_all: Check all
813 813 button_uncheck_all: Uncheck all
814 814 button_collapse_all: Collapse all
815 815 button_expand_all: Expand all
816 816 button_delete: Delete
817 817 button_create: Create
818 818 button_create_and_continue: Create and continue
819 819 button_test: Test
820 820 button_edit: Edit
821 821 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
822 822 button_add: Add
823 823 button_change: Change
824 824 button_apply: Apply
825 825 button_clear: Clear
826 826 button_lock: Lock
827 827 button_unlock: Unlock
828 828 button_download: Download
829 829 button_list: List
830 830 button_view: View
831 831 button_move: Move
832 832 button_move_and_follow: Move and follow
833 833 button_back: Back
834 834 button_cancel: Cancel
835 835 button_activate: Activate
836 836 button_sort: Sort
837 837 button_log_time: Log time
838 838 button_rollback: Rollback to this version
839 839 button_watch: Watch
840 840 button_unwatch: Unwatch
841 841 button_reply: Reply
842 842 button_archive: Archive
843 843 button_unarchive: Unarchive
844 844 button_reset: Reset
845 845 button_rename: Rename
846 846 button_change_password: Change password
847 847 button_copy: Copy
848 848 button_copy_and_follow: Copy and follow
849 849 button_annotate: Annotate
850 850 button_update: Update
851 851 button_configure: Configure
852 852 button_quote: Quote
853 853 button_duplicate: Duplicate
854 854 button_show: Show
855 855
856 856 status_active: active
857 857 status_registered: registered
858 858 status_locked: locked
859 859
860 860 version_status_open: open
861 861 version_status_locked: locked
862 862 version_status_closed: closed
863 863
864 864 field_active: Active
865 865
866 866 text_select_mail_notifications: Select actions for which email notifications should be sent.
867 867 text_regexp_info: eg. ^[A-Z0-9]+$
868 868 text_min_max_length_info: 0 means no restriction
869 869 text_project_destroy_confirmation: Are you sure you want to delete this project and related data?
870 870 text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted."
871 871 text_workflow_edit: Select a role and a tracker to edit the workflow
872 872 text_are_you_sure: Are you sure?
873 873 text_are_you_sure_with_children: "Delete issue and all child issues?"
874 874 text_journal_changed: "%{label} changed from %{old} to %{new}"
875 875 text_journal_changed_no_detail: "%{label} updated"
876 876 text_journal_set_to: "%{label} set to %{value}"
877 877 text_journal_deleted: "%{label} deleted (%{old})"
878 878 text_journal_added: "%{label} %{value} added"
879 879 text_tip_issue_begin_day: task beginning this day
880 880 text_tip_issue_end_day: task ending this day
881 881 text_tip_issue_begin_end_day: task beginning and ending this day
882 882 text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier cannot be changed.'
883 883 text_caracters_maximum: "%{count} characters maximum."
884 884 text_caracters_minimum: "Must be at least %{count} characters long."
885 885 text_length_between: "Length between %{min} and %{max} characters."
886 886 text_tracker_no_workflow: No workflow defined for this tracker
887 887 text_unallowed_characters: Unallowed characters
888 888 text_comma_separated: Multiple values allowed (comma separated).
889 889 text_line_separated: Multiple values allowed (one line for each value).
890 890 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
891 891 text_issue_added: "Issue %{id} has been reported by %{author}."
892 892 text_issue_updated: "Issue %{id} has been updated by %{author}."
893 893 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content?
894 894 text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?"
895 895 text_issue_category_destroy_assignments: Remove category assignments
896 896 text_issue_category_reassign_to: Reassign issues to this category
897 897 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)."
898 898 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."
899 899 text_load_default_configuration: Load the default configuration
900 900 text_status_changed_by_changeset: "Applied in changeset %{value}."
901 901 text_time_logged_by_changeset: "Applied in changeset %{value}."
902 902 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?'
903 903 text_select_project_modules: 'Select modules to enable for this project:'
904 904 text_default_administrator_account_changed: Default administrator account changed
905 905 text_file_repository_writable: Attachments directory writable
906 906 text_plugin_assets_writable: Plugin assets directory writable
907 907 text_rmagick_available: RMagick available (optional)
908 908 text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?"
909 909 text_destroy_time_entries: Delete reported hours
910 910 text_assign_time_entries_to_project: Assign reported hours to the project
911 911 text_reassign_time_entries: 'Reassign reported hours to this issue:'
912 912 text_user_wrote: "%{value} wrote:"
913 913 text_enumeration_destroy_question: "%{count} objects are assigned to this value."
914 914 text_enumeration_category_reassign_to: 'Reassign them to this value:'
915 915 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."
916 916 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."
917 917 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
918 918 text_custom_field_possible_values_info: 'One line for each value'
919 919 text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?"
920 920 text_wiki_page_nullify_children: "Keep child pages as root pages"
921 921 text_wiki_page_destroy_children: "Delete child pages and all their descendants"
922 922 text_wiki_page_reassign_children: "Reassign child pages to this parent page"
923 923 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?"
924 924 text_zoom_in: Zoom in
925 925 text_zoom_out: Zoom out
926 926 text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page."
927 927
928 928 default_role_manager: Manager
929 929 default_role_developer: Developer
930 930 default_role_reporter: Reporter
931 931 default_tracker_bug: Bug
932 932 default_tracker_feature: Feature
933 933 default_tracker_support: Support
934 934 default_issue_status_new: New
935 935 default_issue_status_in_progress: In Progress
936 936 default_issue_status_resolved: Resolved
937 937 default_issue_status_feedback: Feedback
938 938 default_issue_status_closed: Closed
939 939 default_issue_status_rejected: Rejected
940 940 default_doc_category_user: User documentation
941 941 default_doc_category_tech: Technical documentation
942 942 default_priority_low: Low
943 943 default_priority_normal: Normal
944 944 default_priority_high: High
945 945 default_priority_urgent: Urgent
946 946 default_priority_immediate: Immediate
947 947 default_activity_design: Design
948 948 default_activity_development: Development
949 949
950 950 enumeration_issue_priorities: Issue priorities
951 951 enumeration_doc_categories: Document categories
952 952 enumeration_activities: Activities (time tracking)
953 953 enumeration_system_activity: System Activity
954 954 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
955 955 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
956 956 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
957 957 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
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).
@@ -1,964 +1,964
1 1 en:
2 2 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
3 3 direction: ltr
4 4 date:
5 5 formats:
6 6 # Use the strftime parameters for formats.
7 7 # When no format has been given, it uses default.
8 8 # You can provide other formats here if you like!
9 9 default: "%m/%d/%Y"
10 10 short: "%b %d"
11 11 long: "%B %d, %Y"
12 12
13 13 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
14 14 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
15 15
16 16 # Don't forget the nil at the beginning; there's no such thing as a 0th month
17 17 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
18 18 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
19 19 # Used in date_select and datime_select.
20 20 order:
21 21 - :year
22 22 - :month
23 23 - :day
24 24
25 25 time:
26 26 formats:
27 27 default: "%m/%d/%Y %I:%M %p"
28 28 time: "%I:%M %p"
29 29 short: "%d %b %H:%M"
30 30 long: "%B %d, %Y %H:%M"
31 31 am: "am"
32 32 pm: "pm"
33 33
34 34 datetime:
35 35 distance_in_words:
36 36 half_a_minute: "half a minute"
37 37 less_than_x_seconds:
38 38 one: "less than 1 second"
39 39 other: "less than %{count} seconds"
40 40 x_seconds:
41 41 one: "1 second"
42 42 other: "%{count} seconds"
43 43 less_than_x_minutes:
44 44 one: "less than a minute"
45 45 other: "less than %{count} minutes"
46 46 x_minutes:
47 47 one: "1 minute"
48 48 other: "%{count} minutes"
49 49 about_x_hours:
50 50 one: "about 1 hour"
51 51 other: "about %{count} hours"
52 52 x_days:
53 53 one: "1 day"
54 54 other: "%{count} days"
55 55 about_x_months:
56 56 one: "about 1 month"
57 57 other: "about %{count} months"
58 58 x_months:
59 59 one: "1 month"
60 60 other: "%{count} months"
61 61 about_x_years:
62 62 one: "about 1 year"
63 63 other: "about %{count} years"
64 64 over_x_years:
65 65 one: "over 1 year"
66 66 other: "over %{count} years"
67 67 almost_x_years:
68 68 one: "almost 1 year"
69 69 other: "almost %{count} years"
70 70
71 71 number:
72 72 format:
73 73 separator: "."
74 74 delimiter: ""
75 75 precision: 3
76 76
77 77 human:
78 78 format:
79 79 delimiter: ""
80 80 precision: 1
81 81 storage_units:
82 82 format: "%n %u"
83 83 units:
84 84 byte:
85 85 one: "Byte"
86 86 other: "Bytes"
87 87 kb: "kB"
88 88 mb: "MB"
89 89 gb: "GB"
90 90 tb: "TB"
91 91
92 92
93 93 # Used in array.to_sentence.
94 94 support:
95 95 array:
96 96 sentence_connector: "and"
97 97 skip_last_comma: false
98 98
99 99 activerecord:
100 100 errors:
101 101 template:
102 102 header:
103 103 one: "1 error prohibited this %{model} from being saved"
104 104 other: "%{count} errors prohibited this %{model} from being saved"
105 105 messages:
106 106 inclusion: "is not included in the list"
107 107 exclusion: "is reserved"
108 108 invalid: "is invalid"
109 109 confirmation: "doesn't match confirmation"
110 110 accepted: "must be accepted"
111 111 empty: "can't be empty"
112 112 blank: "can't be blank"
113 113 too_long: "is too long (maximum is %{count} characters)"
114 114 too_short: "is too short (minimum is %{count} characters)"
115 115 wrong_length: "is the wrong length (should be %{count} characters)"
116 116 taken: "has already been taken"
117 117 not_a_number: "is not a number"
118 118 not_a_date: "is not a valid date"
119 119 greater_than: "must be greater than %{count}"
120 120 greater_than_or_equal_to: "must be greater than or equal to %{count}"
121 121 equal_to: "must be equal to %{count}"
122 122 less_than: "must be less than %{count}"
123 123 less_than_or_equal_to: "must be less than or equal to %{count}"
124 124 odd: "must be odd"
125 125 even: "must be even"
126 126 greater_than_start_date: "must be greater than start date"
127 127 not_same_project: "doesn't belong to the same project"
128 128 circular_dependency: "This relation would create a circular dependency"
129 129 cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks"
130 130
131 131 actionview_instancetag_blank_option: Please select
132 132
133 133 general_text_No: 'No'
134 134 general_text_Yes: 'Yes'
135 135 general_text_no: 'no'
136 136 general_text_yes: 'yes'
137 137 general_lang_name: 'English'
138 138 general_csv_separator: ','
139 139 general_csv_decimal_separator: '.'
140 140 general_csv_encoding: ISO-8859-1
141 141 general_pdf_encoding: UTF-8
142 142 general_first_day_of_week: '7'
143 143
144 144 notice_account_updated: Account was successfully updated.
145 145 notice_account_invalid_creditentials: Invalid user or password
146 146 notice_account_password_updated: Password was successfully updated.
147 147 notice_account_wrong_password: Wrong password
148 148 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
149 149 notice_account_unknown_email: Unknown user.
150 150 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
151 151 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
152 152 notice_account_activated: Your account has been activated. You can now log in.
153 153 notice_successful_create: Successful creation.
154 154 notice_successful_update: Successful update.
155 155 notice_successful_delete: Successful deletion.
156 156 notice_successful_connection: Successful connection.
157 157 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
158 158 notice_locking_conflict: Data has been updated by another user.
159 159 notice_not_authorized: You are not authorized to access this page.
160 160 notice_not_authorized_archived_project: The project you're trying to access has been archived.
161 161 notice_email_sent: "An email was sent to %{value}"
162 162 notice_email_error: "An error occurred while sending mail (%{value})"
163 163 notice_feeds_access_key_reseted: Your RSS access key was reset.
164 164 notice_api_access_key_reseted: Your API access key was reset.
165 165 notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}."
166 166 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
167 167 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
168 168 notice_account_pending: "Your account was created and is now pending administrator approval."
169 169 notice_default_data_loaded: Default configuration successfully loaded.
170 170 notice_unable_delete_version: Unable to delete version.
171 171 notice_unable_delete_time_entry: Unable to delete time log entry.
172 172 notice_issue_done_ratios_updated: Issue done ratios updated.
173 173 notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})"
174 174
175 175 error_can_t_load_default_data: "Default configuration could not be loaded: %{value}"
176 176 error_scm_not_found: "The entry or revision was not found in the repository."
177 177 error_scm_command_failed: "An error occurred when trying to access the repository: %{value}"
178 178 error_scm_annotate: "The entry does not exist or cannot be annotated."
179 179 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
180 180 error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.'
181 181 error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").'
182 182 error_can_not_delete_custom_field: Unable to delete custom field
183 183 error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted."
184 184 error_can_not_remove_role: "This role is in use and cannot be deleted."
185 185 error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version cannot be reopened'
186 186 error_can_not_archive_project: This project cannot be archived
187 187 error_issue_done_ratios_not_updated: "Issue done ratios not updated."
188 188 error_workflow_copy_source: 'Please select a source tracker or role'
189 189 error_workflow_copy_target: 'Please select target tracker(s) and role(s)'
190 190 error_unable_delete_issue_status: 'Unable to delete issue status'
191 191 error_unable_to_connect: "Unable to connect (%{value})"
192 192 warning_attachments_not_saved: "%{count} file(s) could not be saved."
193 193
194 194 mail_subject_lost_password: "Your %{value} password"
195 195 mail_body_lost_password: 'To change your password, click on the following link:'
196 196 mail_subject_register: "Your %{value} account activation"
197 197 mail_body_register: 'To activate your account, click on the following link:'
198 198 mail_body_account_information_external: "You can use your %{value} account to log in."
199 199 mail_body_account_information: Your account information
200 200 mail_subject_account_activation_request: "%{value} account activation request"
201 201 mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:"
202 202 mail_subject_reminder: "%{count} issue(s) due in the next %{days} days"
203 203 mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:"
204 204 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
205 205 mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}."
206 206 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
207 207 mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}."
208 208
209 209 gui_validation_error: 1 error
210 210 gui_validation_error_plural: "%{count} errors"
211 211
212 212 field_name: Name
213 213 field_description: Description
214 214 field_summary: Summary
215 215 field_is_required: Required
216 216 field_firstname: First name
217 217 field_lastname: Last name
218 218 field_mail: Email
219 219 field_filename: File
220 220 field_filesize: Size
221 221 field_downloads: Downloads
222 222 field_author: Author
223 223 field_created_on: Created
224 224 field_updated_on: Updated
225 225 field_field_format: Format
226 226 field_is_for_all: For all projects
227 227 field_possible_values: Possible values
228 228 field_regexp: Regular expression
229 229 field_min_length: Minimum length
230 230 field_max_length: Maximum length
231 231 field_value: Value
232 232 field_category: Category
233 233 field_title: Title
234 234 field_project: Project
235 235 field_issue: Issue
236 236 field_status: Status
237 237 field_notes: Notes
238 238 field_is_closed: Issue closed
239 239 field_is_default: Default value
240 240 field_tracker: Tracker
241 241 field_subject: Subject
242 242 field_due_date: Due date
243 243 field_assigned_to: Assignee
244 244 field_priority: Priority
245 245 field_fixed_version: Target version
246 246 field_user: User
247 247 field_principal: Principal
248 248 field_role: Role
249 249 field_homepage: Homepage
250 250 field_is_public: Public
251 251 field_parent: Subproject of
252 252 field_is_in_roadmap: Issues displayed in roadmap
253 253 field_login: Login
254 254 field_mail_notification: Email notifications
255 255 field_admin: Administrator
256 256 field_last_login_on: Last connection
257 257 field_language: Language
258 258 field_effective_date: Date
259 259 field_password: Password
260 260 field_new_password: New password
261 261 field_password_confirmation: Confirmation
262 262 field_version: Version
263 263 field_type: Type
264 264 field_host: Host
265 265 field_port: Port
266 266 field_account: Account
267 267 field_base_dn: Base DN
268 268 field_attr_login: Login attribute
269 269 field_attr_firstname: Firstname attribute
270 270 field_attr_lastname: Lastname attribute
271 271 field_attr_mail: Email attribute
272 272 field_onthefly: On-the-fly user creation
273 273 field_start_date: Start date
274 field_done_ratio: % Done
274 field_done_ratio: "% Done"
275 275 field_auth_source: Authentication mode
276 276 field_hide_mail: Hide my email address
277 277 field_comments: Comment
278 278 field_url: URL
279 279 field_start_page: Start page
280 280 field_subproject: Subproject
281 281 field_hours: Hours
282 282 field_activity: Activity
283 283 field_spent_on: Date
284 284 field_identifier: Identifier
285 285 field_is_filter: Used as a filter
286 286 field_issue_to: Related issue
287 287 field_delay: Delay
288 288 field_assignable: Issues can be assigned to this role
289 289 field_redirect_existing_links: Redirect existing links
290 290 field_estimated_hours: Estimated time
291 291 field_column_names: Columns
292 292 field_time_entries: Log time
293 293 field_time_zone: Time zone
294 294 field_searchable: Searchable
295 295 field_default_value: Default value
296 296 field_comments_sorting: Display comments
297 297 field_parent_title: Parent page
298 298 field_editable: Editable
299 299 field_watcher: Watcher
300 300 field_identity_url: OpenID URL
301 301 field_content: Content
302 302 field_group_by: Group results by
303 303 field_sharing: Sharing
304 304 field_parent_issue: Parent task
305 305 field_member_of_group: "Assignee's group"
306 306 field_assigned_to_role: "Assignee's role"
307 307 field_text: Text field
308 308 field_visible: Visible
309 309 field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text"
310 310 field_issues_visibility: Issues visibility
311 311 field_is_private: Private
312 312
313 313 setting_app_title: Application title
314 314 setting_app_subtitle: Application subtitle
315 315 setting_welcome_text: Welcome text
316 316 setting_default_language: Default language
317 317 setting_login_required: Authentication required
318 318 setting_self_registration: Self-registration
319 319 setting_attachment_max_size: Attachment max. size
320 320 setting_issues_export_limit: Issues export limit
321 321 setting_mail_from: Emission email address
322 322 setting_bcc_recipients: Blind carbon copy recipients (bcc)
323 323 setting_plain_text_mail: Plain text mail (no HTML)
324 324 setting_host_name: Host name and path
325 325 setting_text_formatting: Text formatting
326 326 setting_wiki_compression: Wiki history compression
327 327 setting_feeds_limit: Feed content limit
328 328 setting_default_projects_public: New projects are public by default
329 329 setting_autofetch_changesets: Autofetch commits
330 330 setting_sys_api_enabled: Enable WS for repository management
331 331 setting_commit_ref_keywords: Referencing keywords
332 332 setting_commit_fix_keywords: Fixing keywords
333 333 setting_autologin: Autologin
334 334 setting_date_format: Date format
335 335 setting_time_format: Time format
336 336 setting_cross_project_issue_relations: Allow cross-project issue relations
337 337 setting_issue_list_default_columns: Default columns displayed on the issue list
338 338 setting_repositories_encodings: Repositories encodings
339 339 setting_commit_logs_encoding: Commit messages encoding
340 340 setting_emails_header: Emails header
341 341 setting_emails_footer: Emails footer
342 342 setting_protocol: Protocol
343 343 setting_per_page_options: Objects per page options
344 344 setting_user_format: Users display format
345 345 setting_activity_days_default: Days displayed on project activity
346 346 setting_display_subprojects_issues: Display subprojects issues on main projects by default
347 347 setting_enabled_scm: Enabled SCM
348 348 setting_mail_handler_body_delimiters: "Truncate emails after one of these lines"
349 349 setting_mail_handler_api_enabled: Enable WS for incoming emails
350 350 setting_mail_handler_api_key: API key
351 351 setting_sequential_project_identifiers: Generate sequential project identifiers
352 352 setting_gravatar_enabled: Use Gravatar user icons
353 353 setting_gravatar_default: Default Gravatar image
354 354 setting_diff_max_lines_displayed: Max number of diff lines displayed
355 355 setting_file_max_size_displayed: Max size of text files displayed inline
356 356 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
357 357 setting_openid: Allow OpenID login and registration
358 358 setting_password_min_length: Minimum password length
359 359 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
360 360 setting_default_projects_modules: Default enabled modules for new projects
361 361 setting_issue_done_ratio: Calculate the issue done ratio with
362 362 setting_issue_done_ratio_issue_field: Use the issue field
363 363 setting_issue_done_ratio_issue_status: Use the issue status
364 364 setting_start_of_week: Start calendars on
365 365 setting_rest_api_enabled: Enable REST web service
366 366 setting_cache_formatted_text: Cache formatted text
367 367 setting_default_notification_option: Default notification option
368 368 setting_commit_logtime_enabled: Enable time logging
369 369 setting_commit_logtime_activity_id: Activity for logged time
370 370 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
371 371
372 372 permission_add_project: Create project
373 373 permission_add_subprojects: Create subprojects
374 374 permission_edit_project: Edit project
375 375 permission_select_project_modules: Select project modules
376 376 permission_manage_members: Manage members
377 377 permission_manage_project_activities: Manage project activities
378 378 permission_manage_versions: Manage versions
379 379 permission_manage_categories: Manage issue categories
380 380 permission_view_issues: View Issues
381 381 permission_add_issues: Add issues
382 382 permission_edit_issues: Edit issues
383 383 permission_manage_issue_relations: Manage issue relations
384 384 permission_set_issues_private: Set issues public or private
385 385 permission_set_own_issues_private: Set own issues public or private
386 386 permission_add_issue_notes: Add notes
387 387 permission_edit_issue_notes: Edit notes
388 388 permission_edit_own_issue_notes: Edit own notes
389 389 permission_move_issues: Move issues
390 390 permission_delete_issues: Delete issues
391 391 permission_manage_public_queries: Manage public queries
392 392 permission_save_queries: Save queries
393 393 permission_view_gantt: View gantt chart
394 394 permission_view_calendar: View calendar
395 395 permission_view_issue_watchers: View watchers list
396 396 permission_add_issue_watchers: Add watchers
397 397 permission_delete_issue_watchers: Delete watchers
398 398 permission_log_time: Log spent time
399 399 permission_view_time_entries: View spent time
400 400 permission_edit_time_entries: Edit time logs
401 401 permission_edit_own_time_entries: Edit own time logs
402 402 permission_manage_news: Manage news
403 403 permission_comment_news: Comment news
404 404 permission_manage_documents: Manage documents
405 405 permission_view_documents: View documents
406 406 permission_manage_files: Manage files
407 407 permission_view_files: View files
408 408 permission_manage_wiki: Manage wiki
409 409 permission_rename_wiki_pages: Rename wiki pages
410 410 permission_delete_wiki_pages: Delete wiki pages
411 411 permission_view_wiki_pages: View wiki
412 412 permission_view_wiki_edits: View wiki history
413 413 permission_edit_wiki_pages: Edit wiki pages
414 414 permission_delete_wiki_pages_attachments: Delete attachments
415 415 permission_protect_wiki_pages: Protect wiki pages
416 416 permission_manage_repository: Manage repository
417 417 permission_browse_repository: Browse repository
418 418 permission_view_changesets: View changesets
419 419 permission_commit_access: Commit access
420 420 permission_manage_boards: Manage forums
421 421 permission_view_messages: View messages
422 422 permission_add_messages: Post messages
423 423 permission_edit_messages: Edit messages
424 424 permission_edit_own_messages: Edit own messages
425 425 permission_delete_messages: Delete messages
426 426 permission_delete_own_messages: Delete own messages
427 427 permission_export_wiki_pages: Export wiki pages
428 428 permission_manage_subtasks: Manage subtasks
429 429
430 430 project_module_issue_tracking: Issue tracking
431 431 project_module_time_tracking: Time tracking
432 432 project_module_news: News
433 433 project_module_documents: Documents
434 434 project_module_files: Files
435 435 project_module_wiki: Wiki
436 436 project_module_repository: Repository
437 437 project_module_boards: Forums
438 438 project_module_calendar: Calendar
439 439 project_module_gantt: Gantt
440 440
441 441 label_user: User
442 442 label_user_plural: Users
443 443 label_user_new: New user
444 444 label_user_anonymous: Anonymous
445 445 label_project: Project
446 446 label_project_new: New project
447 447 label_project_plural: Projects
448 448 label_x_projects:
449 449 zero: no projects
450 450 one: 1 project
451 451 other: "%{count} projects"
452 452 label_project_all: All Projects
453 453 label_project_latest: Latest projects
454 454 label_issue: Issue
455 455 label_issue_new: New issue
456 456 label_issue_plural: Issues
457 457 label_issue_view_all: View all issues
458 458 label_issues_by: "Issues by %{value}"
459 459 label_issue_added: Issue added
460 460 label_issue_updated: Issue updated
461 461 label_issue_note_added: Note added
462 462 label_issue_status_updated: Status updated
463 463 label_issue_priority_updated: Priority 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: Personalize 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_bulk_edit_selected_time_entries: Bulk edit selected time entries
751 751 label_theme: Theme
752 752 label_default: Default
753 753 label_search_titles_only: Search titles only
754 754 label_user_mail_option_all: "For any event on all my projects"
755 755 label_user_mail_option_selected: "For any event on the selected projects only..."
756 756 label_user_mail_option_none: "No events"
757 757 label_user_mail_option_only_my_events: "Only for things I watch or I'm involved in"
758 758 label_user_mail_option_only_assigned: "Only for things I am assigned to"
759 759 label_user_mail_option_only_owner: "Only for things I am the owner of"
760 760 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
761 761 label_registration_activation_by_email: account activation by email
762 762 label_registration_manual_activation: manual account activation
763 763 label_registration_automatic_activation: automatic account activation
764 764 label_display_per_page: "Per page: %{value}"
765 765 label_age: Age
766 766 label_change_properties: Change properties
767 767 label_general: General
768 768 label_more: More
769 769 label_scm: SCM
770 770 label_plugins: Plugins
771 771 label_ldap_authentication: LDAP authentication
772 772 label_downloads_abbr: D/L
773 773 label_optional_description: Optional description
774 774 label_add_another_file: Add another file
775 775 label_preferences: Preferences
776 776 label_chronological_order: In chronological order
777 777 label_reverse_chronological_order: In reverse chronological order
778 778 label_planning: Planning
779 779 label_incoming_emails: Incoming emails
780 780 label_generate_key: Generate a key
781 781 label_issue_watchers: Watchers
782 782 label_example: Example
783 783 label_display: Display
784 784 label_sort: Sort
785 785 label_ascending: Ascending
786 786 label_descending: Descending
787 787 label_date_from_to: From %{start} to %{end}
788 788 label_wiki_content_added: Wiki page added
789 789 label_wiki_content_updated: Wiki page updated
790 790 label_group: Group
791 791 label_group_plural: Groups
792 792 label_group_new: New group
793 793 label_time_entry_plural: Spent time
794 794 label_version_sharing_none: Not shared
795 795 label_version_sharing_descendants: With subprojects
796 796 label_version_sharing_hierarchy: With project hierarchy
797 797 label_version_sharing_tree: With project tree
798 798 label_version_sharing_system: With all projects
799 799 label_update_issue_done_ratios: Update issue done ratios
800 800 label_copy_source: Source
801 801 label_copy_target: Target
802 802 label_copy_same_as_target: Same as target
803 803 label_display_used_statuses_only: Only display statuses that are used by this tracker
804 804 label_api_access_key: API access key
805 805 label_missing_api_access_key: Missing an API access key
806 806 label_api_access_key_created_on: "API access key created %{value} ago"
807 807 label_profile: Profile
808 808 label_subtask_plural: Subtasks
809 809 label_project_copy_notifications: Send email notifications during the project copy
810 810 label_principal_search: "Search for user or group:"
811 811 label_user_search: "Search for user:"
812 812 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
813 813 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
814 814 label_issues_visibility_all: All issues
815 815 label_issues_visibility_public: All non private issues
816 816 label_issues_visibility_own: Issues created by or assigned to the user
817 817
818 818 button_login: Login
819 819 button_submit: Submit
820 820 button_save: Save
821 821 button_check_all: Check all
822 822 button_uncheck_all: Uncheck all
823 823 button_collapse_all: Collapse all
824 824 button_expand_all: Expand all
825 825 button_delete: Delete
826 826 button_create: Create
827 827 button_create_and_continue: Create and continue
828 828 button_test: Test
829 829 button_edit: Edit
830 830 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
831 831 button_add: Add
832 832 button_change: Change
833 833 button_apply: Apply
834 834 button_clear: Clear
835 835 button_lock: Lock
836 836 button_unlock: Unlock
837 837 button_download: Download
838 838 button_list: List
839 839 button_view: View
840 840 button_move: Move
841 841 button_move_and_follow: Move and follow
842 842 button_back: Back
843 843 button_cancel: Cancel
844 844 button_activate: Activate
845 845 button_sort: Sort
846 846 button_log_time: Log time
847 847 button_rollback: Rollback to this version
848 848 button_watch: Watch
849 849 button_unwatch: Unwatch
850 850 button_reply: Reply
851 851 button_archive: Archive
852 852 button_unarchive: Unarchive
853 853 button_reset: Reset
854 854 button_rename: Rename
855 855 button_change_password: Change password
856 856 button_copy: Copy
857 857 button_copy_and_follow: Copy and follow
858 858 button_annotate: Annotate
859 859 button_update: Update
860 860 button_configure: Configure
861 861 button_quote: Quote
862 862 button_duplicate: Duplicate
863 863 button_show: Show
864 864
865 865 status_active: active
866 866 status_registered: registered
867 867 status_locked: locked
868 868
869 869 version_status_open: open
870 870 version_status_locked: locked
871 871 version_status_closed: closed
872 872
873 873 field_active: Active
874 874
875 875 text_select_mail_notifications: Select actions for which email notifications should be sent.
876 876 text_regexp_info: eg. ^[A-Z0-9]+$
877 877 text_min_max_length_info: 0 means no restriction
878 878 text_project_destroy_confirmation: Are you sure you want to delete this project and related data?
879 879 text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted."
880 880 text_workflow_edit: Select a role and a tracker to edit the workflow
881 881 text_are_you_sure: Are you sure?
882 882 text_are_you_sure_with_children: "Delete issue and all child issues?"
883 883 text_journal_changed: "%{label} changed from %{old} to %{new}"
884 884 text_journal_changed_no_detail: "%{label} updated"
885 885 text_journal_set_to: "%{label} set to %{value}"
886 886 text_journal_deleted: "%{label} deleted (%{old})"
887 887 text_journal_added: "%{label} %{value} added"
888 888 text_tip_issue_begin_day: issue beginning this day
889 889 text_tip_issue_end_day: issue ending this day
890 890 text_tip_issue_begin_end_day: issue beginning and ending this day
891 891 text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier cannot be changed.'
892 892 text_caracters_maximum: "%{count} characters maximum."
893 893 text_caracters_minimum: "Must be at least %{count} characters long."
894 894 text_length_between: "Length between %{min} and %{max} characters."
895 895 text_tracker_no_workflow: No workflow defined for this tracker
896 896 text_unallowed_characters: Unallowed characters
897 897 text_comma_separated: Multiple values allowed (comma separated).
898 898 text_line_separated: Multiple values allowed (one line for each value).
899 899 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
900 900 text_issue_added: "Issue %{id} has been reported by %{author}."
901 901 text_issue_updated: "Issue %{id} has been updated by %{author}."
902 902 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content?
903 903 text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?"
904 904 text_issue_category_destroy_assignments: Remove category assignments
905 905 text_issue_category_reassign_to: Reassign issues to this category
906 906 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)."
907 907 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."
908 908 text_load_default_configuration: Load the default configuration
909 909 text_status_changed_by_changeset: "Applied in changeset %{value}."
910 910 text_time_logged_by_changeset: "Applied in changeset %{value}."
911 911 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?'
912 912 text_issues_destroy_descendants_confirmation: "This will also delete %{count} subtask(s)."
913 913 text_time_entries_destroy_confirmation: 'Are you sure you want to delete the selected time entr(y/ies)?'
914 914 text_select_project_modules: 'Select modules to enable for this project:'
915 915 text_default_administrator_account_changed: Default administrator account changed
916 916 text_file_repository_writable: Attachments directory writable
917 917 text_plugin_assets_writable: Plugin assets directory writable
918 918 text_rmagick_available: RMagick available (optional)
919 919 text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?"
920 920 text_destroy_time_entries: Delete reported hours
921 921 text_assign_time_entries_to_project: Assign reported hours to the project
922 922 text_reassign_time_entries: 'Reassign reported hours to this issue:'
923 923 text_user_wrote: "%{value} wrote:"
924 924 text_enumeration_destroy_question: "%{count} objects are assigned to this value."
925 925 text_enumeration_category_reassign_to: 'Reassign them to this value:'
926 926 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."
927 927 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."
928 928 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
929 929 text_custom_field_possible_values_info: 'One line for each value'
930 930 text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?"
931 931 text_wiki_page_nullify_children: "Keep child pages as root pages"
932 932 text_wiki_page_destroy_children: "Delete child pages and all their descendants"
933 933 text_wiki_page_reassign_children: "Reassign child pages to this parent page"
934 934 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?"
935 935 text_zoom_in: Zoom in
936 936 text_zoom_out: Zoom out
937 937 text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page."
938 938
939 939 default_role_manager: Manager
940 940 default_role_developer: Developer
941 941 default_role_reporter: Reporter
942 942 default_tracker_bug: Bug
943 943 default_tracker_feature: Feature
944 944 default_tracker_support: Support
945 945 default_issue_status_new: New
946 946 default_issue_status_in_progress: In Progress
947 947 default_issue_status_resolved: Resolved
948 948 default_issue_status_feedback: Feedback
949 949 default_issue_status_closed: Closed
950 950 default_issue_status_rejected: Rejected
951 951 default_doc_category_user: User documentation
952 952 default_doc_category_tech: Technical documentation
953 953 default_priority_low: Low
954 954 default_priority_normal: Normal
955 955 default_priority_high: High
956 956 default_priority_urgent: Urgent
957 957 default_priority_immediate: Immediate
958 958 default_activity_design: Design
959 959 default_activity_development: Development
960 960
961 961 enumeration_issue_priorities: Issue priorities
962 962 enumeration_doc_categories: Document categories
963 963 enumeration_activities: Activities (time tracking)
964 964 enumeration_system_activity: System Activity
@@ -1,1002 +1,1002
1 1 # Spanish translations for Rails
2 2 # by Francisco Fernando García Nieto (ffgarcianieto@gmail.com)
3 3 # Redmine spanish translation:
4 4 # by J. Cayetano Delgado (Cayetano _dot_ Delgado _at_ ioko _dot_ com)
5 5
6 6 es:
7 7 number:
8 8 # Used in number_with_delimiter()
9 9 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
10 10 format:
11 11 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
12 12 separator: ","
13 13 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
14 14 delimiter: "."
15 15 # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
16 16 precision: 3
17 17
18 18 # Used in number_to_currency()
19 19 currency:
20 20 format:
21 21 # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
22 22 format: "%n %u"
23 23 unit: "€"
24 24 # These three are to override number.format and are optional
25 25 separator: ","
26 26 delimiter: "."
27 27 precision: 2
28 28
29 29 # Used in number_to_percentage()
30 30 percentage:
31 31 format:
32 32 # These three are to override number.format and are optional
33 33 # separator:
34 34 delimiter: ""
35 35 # precision:
36 36
37 37 # Used in number_to_precision()
38 38 precision:
39 39 format:
40 40 # These three are to override number.format and are optional
41 41 # separator:
42 42 delimiter: ""
43 43 # precision:
44 44
45 45 # Used in number_to_human_size()
46 46 human:
47 47 format:
48 48 # These three are to override number.format and are optional
49 49 # separator:
50 50 delimiter: ""
51 51 precision: 1
52 52 storage_units:
53 53 format: "%n %u"
54 54 units:
55 55 byte:
56 56 one: "Byte"
57 57 other: "Bytes"
58 58 kb: "KB"
59 59 mb: "MB"
60 60 gb: "GB"
61 61 tb: "TB"
62 62
63 63 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
64 64 datetime:
65 65 distance_in_words:
66 66 half_a_minute: "medio minuto"
67 67 less_than_x_seconds:
68 68 one: "menos de 1 segundo"
69 69 other: "menos de %{count} segundos"
70 70 x_seconds:
71 71 one: "1 segundo"
72 72 other: "%{count} segundos"
73 73 less_than_x_minutes:
74 74 one: "menos de 1 minuto"
75 75 other: "menos de %{count} minutos"
76 76 x_minutes:
77 77 one: "1 minuto"
78 78 other: "%{count} minutos"
79 79 about_x_hours:
80 80 one: "alrededor de 1 hora"
81 81 other: "alrededor de %{count} horas"
82 82 x_days:
83 83 one: "1 día"
84 84 other: "%{count} días"
85 85 about_x_months:
86 86 one: "alrededor de 1 mes"
87 87 other: "alrededor de %{count} meses"
88 88 x_months:
89 89 one: "1 mes"
90 90 other: "%{count} meses"
91 91 about_x_years:
92 92 one: "alrededor de 1 año"
93 93 other: "alrededor de %{count} años"
94 94 over_x_years:
95 95 one: "más de 1 año"
96 96 other: "más de %{count} años"
97 97 almost_x_years:
98 98 one: "casi 1 año"
99 99 other: "casi %{count} años"
100 100
101 101 activerecord:
102 102 errors:
103 103 template:
104 104 header:
105 105 one: "no se pudo guardar este %{model} porque se encontró 1 error"
106 106 other: "no se pudo guardar este %{model} porque se encontraron %{count} errores"
107 107 # The variable :count is also available
108 108 body: "Se encontraron problemas con los siguientes campos:"
109 109
110 110 # The values :model, :attribute and :value are always available for interpolation
111 111 # The value :count is available when applicable. Can be used for pluralization.
112 112 messages:
113 113 inclusion: "no está incluido en la lista"
114 114 exclusion: "está reservado"
115 115 invalid: "no es válido"
116 116 confirmation: "no coincide con la confirmación"
117 117 accepted: "debe ser aceptado"
118 118 empty: "no puede estar vacío"
119 119 blank: "no puede estar en blanco"
120 120 too_long: "es demasiado largo (%{count} caracteres máximo)"
121 121 too_short: "es demasiado corto (%{count} caracteres mínimo)"
122 122 wrong_length: "no tiene la longitud correcta (%{count} caracteres exactos)"
123 123 taken: "ya está en uso"
124 124 not_a_number: "no es un número"
125 125 greater_than: "debe ser mayor que %{count}"
126 126 greater_than_or_equal_to: "debe ser mayor que o igual a %{count}"
127 127 equal_to: "debe ser igual a %{count}"
128 128 less_than: "debe ser menor que %{count}"
129 129 less_than_or_equal_to: "debe ser menor que o igual a %{count}"
130 130 odd: "debe ser impar"
131 131 even: "debe ser par"
132 132 greater_than_start_date: "debe ser posterior a la fecha de comienzo"
133 133 not_same_project: "no pertenece al mismo proyecto"
134 134 circular_dependency: "Esta relación podría crear una dependencia circular"
135 135 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
136 136
137 137 # Append your own errors here or at the model/attributes scope.
138 138
139 139 models:
140 140 # Overrides default messages
141 141
142 142 attributes:
143 143 # Overrides model and default messages.
144 144
145 145 direction: ltr
146 146 date:
147 147 formats:
148 148 # Use the strftime parameters for formats.
149 149 # When no format has been given, it uses default.
150 150 # You can provide other formats here if you like!
151 151 default: "%Y-%m-%d"
152 152 short: "%d de %b"
153 153 long: "%d de %B de %Y"
154 154
155 155 day_names: [Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado]
156 156 abbr_day_names: [Dom, Lun, Mar, Mie, Jue, Vie, Sab]
157 157
158 158 # Don't forget the nil at the beginning; there's no such thing as a 0th month
159 159 month_names: [~, Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Setiembre, Octubre, Noviembre, Diciembre]
160 160 abbr_month_names: [~, Ene, Feb, Mar, Abr, May, Jun, Jul, Ago, Set, Oct, Nov, Dic]
161 161 # Used in date_select and datime_select.
162 162 order:
163 163 - :year
164 164 - :month
165 165 - :day
166 166
167 167 time:
168 168 formats:
169 169 default: "%A, %d de %B de %Y %H:%M:%S %z"
170 170 time: "%H:%M"
171 171 short: "%d de %b %H:%M"
172 172 long: "%d de %B de %Y %H:%M"
173 173 am: "am"
174 174 pm: "pm"
175 175
176 176 # Used in array.to_sentence.
177 177 support:
178 178 array:
179 179 sentence_connector: "y"
180 180
181 181 actionview_instancetag_blank_option: Por favor seleccione
182 182
183 183 button_activate: Activar
184 184 button_add: Añadir
185 185 button_annotate: Anotar
186 186 button_apply: Aceptar
187 187 button_archive: Archivar
188 188 button_back: Atrás
189 189 button_cancel: Cancelar
190 190 button_change: Cambiar
191 191 button_change_password: Cambiar contraseña
192 192 button_check_all: Seleccionar todo
193 193 button_clear: Anular
194 194 button_configure: Configurar
195 195 button_copy: Copiar
196 196 button_create: Crear
197 197 button_delete: Borrar
198 198 button_download: Descargar
199 199 button_edit: Modificar
200 200 button_list: Listar
201 201 button_lock: Bloquear
202 202 button_log_time: Tiempo dedicado
203 203 button_login: Conexión
204 204 button_move: Mover
205 205 button_quote: Citar
206 206 button_rename: Renombrar
207 207 button_reply: Responder
208 208 button_reset: Reestablecer
209 209 button_rollback: Volver a esta versión
210 210 button_save: Guardar
211 211 button_sort: Ordenar
212 212 button_submit: Aceptar
213 213 button_test: Probar
214 214 button_unarchive: Desarchivar
215 215 button_uncheck_all: No seleccionar nada
216 216 button_unlock: Desbloquear
217 217 button_unwatch: No monitorizar
218 218 button_update: Actualizar
219 219 button_view: Ver
220 220 button_watch: Monitorizar
221 221 default_activity_design: Diseño
222 222 default_activity_development: Desarrollo
223 223 default_doc_category_tech: Documentación técnica
224 224 default_doc_category_user: Documentación de usuario
225 225 default_issue_status_in_progress: En curso
226 226 default_issue_status_closed: Cerrada
227 227 default_issue_status_feedback: Comentarios
228 228 default_issue_status_new: Nueva
229 229 default_issue_status_rejected: Rechazada
230 230 default_issue_status_resolved: Resuelta
231 231 default_priority_high: Alta
232 232 default_priority_immediate: Inmediata
233 233 default_priority_low: Baja
234 234 default_priority_normal: Normal
235 235 default_priority_urgent: Urgente
236 236 default_role_developer: Desarrollador
237 237 default_role_manager: Jefe de proyecto
238 238 default_role_reporter: Informador
239 239 default_tracker_bug: Errores
240 240 default_tracker_feature: Tareas
241 241 default_tracker_support: Soporte
242 242 enumeration_activities: Actividades (tiempo dedicado)
243 243 enumeration_doc_categories: Categorías del documento
244 244 enumeration_issue_priorities: Prioridad de las peticiones
245 245 error_can_t_load_default_data: "No se ha podido cargar la configuración por defecto: %{value}"
246 246 error_issue_not_found_in_project: 'La petición no se encuentra o no está asociada a este proyecto'
247 247 error_scm_annotate: "No existe la entrada o no ha podido ser anotada"
248 248 error_scm_command_failed: "Se produjo un error al acceder al repositorio: %{value}"
249 249 error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio."
250 250 field_account: Cuenta
251 251 field_activity: Actividad
252 252 field_admin: Administrador
253 253 field_assignable: Se pueden asignar peticiones a este perfil
254 254 field_assigned_to: Asignado a
255 255 field_attr_firstname: Cualidad del nombre
256 256 field_attr_lastname: Cualidad del apellido
257 257 field_attr_login: Cualidad del identificador
258 258 field_attr_mail: Cualidad del Email
259 259 field_auth_source: Modo de identificación
260 260 field_author: Autor
261 261 field_base_dn: DN base
262 262 field_category: Categoría
263 263 field_column_names: Columnas
264 264 field_comments: Comentario
265 265 field_comments_sorting: Mostrar comentarios
266 266 field_created_on: Creado
267 267 field_default_value: Estado por defecto
268 268 field_delay: Retraso
269 269 field_description: Descripción
270 field_done_ratio: % Realizado
270 field_done_ratio: "% Realizado"
271 271 field_downloads: Descargas
272 272 field_due_date: Fecha fin
273 273 field_effective_date: Fecha
274 274 field_estimated_hours: Tiempo estimado
275 275 field_field_format: Formato
276 276 field_filename: Fichero
277 277 field_filesize: Tamaño
278 278 field_firstname: Nombre
279 279 field_fixed_version: Versión prevista
280 280 field_hide_mail: Ocultar mi dirección de correo
281 281 field_homepage: Sitio web
282 282 field_host: Anfitrión
283 283 field_hours: Horas
284 284 field_identifier: Identificador
285 285 field_is_closed: Petición resuelta
286 286 field_is_default: Estado por defecto
287 287 field_is_filter: Usado como filtro
288 288 field_is_for_all: Para todos los proyectos
289 289 field_is_in_roadmap: Consultar las peticiones en la planificación
290 290 field_is_public: Público
291 291 field_is_required: Obligatorio
292 292 field_issue: Petición
293 293 field_issue_to: Petición relacionada
294 294 field_language: Idioma
295 295 field_last_login_on: Última conexión
296 296 field_lastname: Apellido
297 297 field_login: Identificador
298 298 field_mail: Correo electrónico
299 299 field_mail_notification: Notificaciones por correo
300 300 field_max_length: Longitud máxima
301 301 field_min_length: Longitud mínima
302 302 field_name: Nombre
303 303 field_new_password: Nueva contraseña
304 304 field_notes: Notas
305 305 field_onthefly: Creación del usuario "al vuelo"
306 306 field_parent: Proyecto padre
307 307 field_parent_title: Página padre
308 308 field_password: Contraseña
309 309 field_password_confirmation: Confirmación
310 310 field_port: Puerto
311 311 field_possible_values: Valores posibles
312 312 field_priority: Prioridad
313 313 field_project: Proyecto
314 314 field_redirect_existing_links: Redireccionar enlaces existentes
315 315 field_regexp: Expresión regular
316 316 field_role: Perfil
317 317 field_searchable: Incluir en las búsquedas
318 318 field_spent_on: Fecha
319 319 field_start_date: Fecha de inicio
320 320 field_start_page: Página principal
321 321 field_status: Estado
322 322 field_subject: Tema
323 323 field_subproject: Proyecto secundario
324 324 field_summary: Resumen
325 325 field_time_zone: Zona horaria
326 326 field_title: Título
327 327 field_tracker: Tipo
328 328 field_type: Tipo
329 329 field_updated_on: Actualizado
330 330 field_url: URL
331 331 field_user: Usuario
332 332 field_value: Valor
333 333 field_version: Versión
334 334 general_csv_decimal_separator: ','
335 335 general_csv_encoding: ISO-8859-15
336 336 general_csv_separator: ';'
337 337 general_first_day_of_week: '1'
338 338 general_lang_name: 'Español'
339 339 general_pdf_encoding: UTF-8
340 340 general_text_No: 'No'
341 341 general_text_Yes: 'Sí'
342 342 general_text_no: 'no'
343 343 general_text_yes: 'sí'
344 344 gui_validation_error: 1 error
345 345 gui_validation_error_plural: "%{count} errores"
346 346 label_activity: Actividad
347 347 label_add_another_file: Añadir otro fichero
348 348 label_add_note: Añadir una nota
349 349 label_added: añadido
350 350 label_added_time_by: "Añadido por %{author} hace %{age}"
351 351 label_administration: Administración
352 352 label_age: Edad
353 353 label_ago: hace
354 354 label_all: todos
355 355 label_all_time: todo el tiempo
356 356 label_all_words: Todas las palabras
357 357 label_and_its_subprojects: "%{value} y proyectos secundarios"
358 358 label_applied_status: Aplicar estado
359 359 label_assigned_to_me_issues: Peticiones que me están asignadas
360 360 label_associated_revisions: Revisiones asociadas
361 361 label_attachment: Fichero
362 362 label_attachment_delete: Borrar el fichero
363 363 label_attachment_new: Nuevo fichero
364 364 label_attachment_plural: Ficheros
365 365 label_attribute: Cualidad
366 366 label_attribute_plural: Cualidades
367 367 label_auth_source: Modo de autenticación
368 368 label_auth_source_new: Nuevo modo de autenticación
369 369 label_auth_source_plural: Modos de autenticación
370 370 label_authentication: Autenticación
371 371 label_blocked_by: bloqueado por
372 372 label_blocks: bloquea a
373 373 label_board: Foro
374 374 label_board_new: Nuevo foro
375 375 label_board_plural: Foros
376 376 label_boolean: Booleano
377 377 label_browse: Hojear
378 378 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
379 379 label_calendar: Calendario
380 380 label_change_plural: Cambios
381 381 label_change_properties: Cambiar propiedades
382 382 label_change_status: Cambiar el estado
383 383 label_change_view_all: Ver todos los cambios
384 384 label_changes_details: Detalles de todos los cambios
385 385 label_changeset_plural: Cambios
386 386 label_chronological_order: En orden cronológico
387 387 label_closed_issues: cerrada
388 388 label_closed_issues_plural: cerradas
389 389 label_x_open_issues_abbr_on_total:
390 390 zero: 0 abiertas / %{total}
391 391 one: 1 abierta / %{total}
392 392 other: "%{count} abiertas / %{total}"
393 393 label_x_open_issues_abbr:
394 394 zero: 0 abiertas
395 395 one: 1 abierta
396 396 other: "%{count} abiertas"
397 397 label_x_closed_issues_abbr:
398 398 zero: 0 cerradas
399 399 one: 1 cerrada
400 400 other: "%{count} cerradas"
401 401 label_comment: Comentario
402 402 label_comment_add: Añadir un comentario
403 403 label_comment_added: Comentario añadido
404 404 label_comment_delete: Borrar comentarios
405 405 label_comment_plural: Comentarios
406 406 label_x_comments:
407 407 zero: sin comentarios
408 408 one: 1 comentario
409 409 other: "%{count} comentarios"
410 410 label_commits_per_author: Commits por autor
411 411 label_commits_per_month: Commits por mes
412 412 label_confirmation: Confirmación
413 413 label_contains: contiene
414 414 label_copied: copiado
415 415 label_copy_workflow_from: Copiar flujo de trabajo desde
416 416 label_current_status: Estado actual
417 417 label_current_version: Versión actual
418 418 label_custom_field: Campo personalizado
419 419 label_custom_field_new: Nuevo campo personalizado
420 420 label_custom_field_plural: Campos personalizados
421 421 label_date: Fecha
422 422 label_date_from: Desde
423 423 label_date_range: Rango de fechas
424 424 label_date_to: Hasta
425 425 label_day_plural: días
426 426 label_default: Por defecto
427 427 label_default_columns: Columnas por defecto
428 428 label_deleted: suprimido
429 429 label_details: Detalles
430 430 label_diff_inline: en línea
431 431 label_diff_side_by_side: cara a cara
432 432 label_disabled: deshabilitado
433 433 label_display_per_page: "Por página: %{value}"
434 434 label_document: Documento
435 435 label_document_added: Documento añadido
436 436 label_document_new: Nuevo documento
437 437 label_document_plural: Documentos
438 438 label_download: "%{count} Descarga"
439 439 label_download_plural: "%{count} Descargas"
440 440 label_downloads_abbr: D/L
441 441 label_duplicated_by: duplicada por
442 442 label_duplicates: duplicada de
443 443 label_end_to_end: fin a fin
444 444 label_end_to_start: fin a principio
445 445 label_enumeration_new: Nuevo valor
446 446 label_enumerations: Listas de valores
447 447 label_environment: Entorno
448 448 label_equals: igual
449 449 label_example: Ejemplo
450 450 label_export_to: 'Exportar a:'
451 451 label_f_hour: "%{value} hora"
452 452 label_f_hour_plural: "%{value} horas"
453 453 label_feed_plural: Feeds
454 454 label_feeds_access_key_created_on: "Clave de acceso por RSS creada hace %{value}"
455 455 label_file_added: Fichero añadido
456 456 label_file_plural: Archivos
457 457 label_filter_add: Añadir el filtro
458 458 label_filter_plural: Filtros
459 459 label_float: Flotante
460 460 label_follows: posterior a
461 461 label_gantt: Gantt
462 462 label_general: General
463 463 label_generate_key: Generar clave
464 464 label_help: Ayuda
465 465 label_history: Histórico
466 466 label_home: Inicio
467 467 label_in: en
468 468 label_in_less_than: en menos que
469 469 label_in_more_than: en más que
470 470 label_incoming_emails: Correos entrantes
471 471 label_index_by_date: Índice por fecha
472 472 label_index_by_title: Índice por título
473 473 label_information: Información
474 474 label_information_plural: Información
475 475 label_integer: Número
476 476 label_internal: Interno
477 477 label_issue: Petición
478 478 label_issue_added: Petición añadida
479 479 label_issue_category: Categoría de las peticiones
480 480 label_issue_category_new: Nueva categoría
481 481 label_issue_category_plural: Categorías de las peticiones
482 482 label_issue_new: Nueva petición
483 483 label_issue_plural: Peticiones
484 484 label_issue_status: Estado de la petición
485 485 label_issue_status_new: Nuevo estado
486 486 label_issue_status_plural: Estados de las peticiones
487 487 label_issue_tracking: Peticiones
488 488 label_issue_updated: Petición actualizada
489 489 label_issue_view_all: Ver todas las peticiones
490 490 label_issue_watchers: Seguidores
491 491 label_issues_by: "Peticiones por %{value}"
492 492 label_jump_to_a_project: Ir al proyecto...
493 493 label_language_based: Basado en el idioma
494 494 label_last_changes: "últimos %{count} cambios"
495 495 label_last_login: Última conexión
496 496 label_last_month: último mes
497 497 label_last_n_days: "últimos %{count} días"
498 498 label_last_week: última semana
499 499 label_latest_revision: Última revisión
500 500 label_latest_revision_plural: Últimas revisiones
501 501 label_ldap_authentication: Autenticación LDAP
502 502 label_less_than_ago: hace menos de
503 503 label_list: Lista
504 504 label_loading: Cargando...
505 505 label_logged_as: Conectado como
506 506 label_login: Conexión
507 507 label_logout: Desconexión
508 508 label_max_size: Tamaño máximo
509 509 label_me: yo mismo
510 510 label_member: Miembro
511 511 label_member_new: Nuevo miembro
512 512 label_member_plural: Miembros
513 513 label_message_last: Último mensaje
514 514 label_message_new: Nuevo mensaje
515 515 label_message_plural: Mensajes
516 516 label_message_posted: Mensaje añadido
517 517 label_min_max_length: Longitud mín - máx
518 518 label_modification: "%{count} modificación"
519 519 label_modification_plural: "%{count} modificaciones"
520 520 label_modified: modificado
521 521 label_module_plural: Módulos
522 522 label_month: Mes
523 523 label_months_from: meses de
524 524 label_more: Más
525 525 label_more_than_ago: hace más de
526 526 label_my_account: Mi cuenta
527 527 label_my_page: Mi página
528 528 label_my_projects: Mis proyectos
529 529 label_new: Nuevo
530 530 label_new_statuses_allowed: Nuevos estados autorizados
531 531 label_news: Noticia
532 532 label_news_added: Noticia añadida
533 533 label_news_latest: Últimas noticias
534 534 label_news_new: Nueva noticia
535 535 label_news_plural: Noticias
536 536 label_news_view_all: Ver todas las noticias
537 537 label_next: Siguiente
538 538 label_no_change_option: (Sin cambios)
539 539 label_no_data: Ningún dato disponible
540 540 label_nobody: nadie
541 541 label_none: ninguno
542 542 label_not_contains: no contiene
543 543 label_not_equals: no igual
544 544 label_open_issues: abierta
545 545 label_open_issues_plural: abiertas
546 546 label_optional_description: Descripción opcional
547 547 label_options: Opciones
548 548 label_overall_activity: Actividad global
549 549 label_overview: Vistazo
550 550 label_password_lost: ¿Olvidaste la contraseña?
551 551 label_per_page: Por página
552 552 label_permissions: Permisos
553 553 label_permissions_report: Informe de permisos
554 554 label_personalize_page: Personalizar esta página
555 555 label_planning: Planificación
556 556 label_please_login: Conexión
557 557 label_plugins: Extensiones
558 558 label_precedes: anterior a
559 559 label_preferences: Preferencias
560 560 label_preview: Previsualizar
561 561 label_previous: Anterior
562 562 label_project: Proyecto
563 563 label_project_all: Todos los proyectos
564 564 label_project_latest: Últimos proyectos
565 565 label_project_new: Nuevo proyecto
566 566 label_project_plural: Proyectos
567 567 label_x_projects:
568 568 zero: sin proyectos
569 569 one: 1 proyecto
570 570 other: "%{count} proyectos"
571 571 label_public_projects: Proyectos públicos
572 572 label_query: Consulta personalizada
573 573 label_query_new: Nueva consulta
574 574 label_query_plural: Consultas personalizadas
575 575 label_read: Leer...
576 576 label_register: Registrar
577 577 label_registered_on: Inscrito el
578 578 label_registration_activation_by_email: activación de cuenta por correo
579 579 label_registration_automatic_activation: activación automática de cuenta
580 580 label_registration_manual_activation: activación manual de cuenta
581 581 label_related_issues: Peticiones relacionadas
582 582 label_relates_to: relacionada con
583 583 label_relation_delete: Eliminar relación
584 584 label_relation_new: Nueva relación
585 585 label_renamed: renombrado
586 586 label_reply_plural: Respuestas
587 587 label_report: Informe
588 588 label_report_plural: Informes
589 589 label_reported_issues: Peticiones registradas por mí
590 590 label_repository: Repositorio
591 591 label_repository_plural: Repositorios
592 592 label_result_plural: Resultados
593 593 label_reverse_chronological_order: En orden cronológico inverso
594 594 label_revision: Revisión
595 595 label_revision_plural: Revisiones
596 596 label_roadmap: Planificación
597 597 label_roadmap_due_in: "Finaliza en %{value}"
598 598 label_roadmap_no_issues: No hay peticiones para esta versión
599 599 label_roadmap_overdue: "%{value} tarde"
600 600 label_role: Perfil
601 601 label_role_and_permissions: Perfiles y permisos
602 602 label_role_new: Nuevo perfil
603 603 label_role_plural: Perfiles
604 604 label_scm: SCM
605 605 label_search: Búsqueda
606 606 label_search_titles_only: Buscar sólo en títulos
607 607 label_send_information: Enviar información de la cuenta al usuario
608 608 label_send_test_email: Enviar un correo de prueba
609 609 label_settings: Configuración
610 610 label_show_completed_versions: Muestra las versiones terminadas
611 611 label_sort_by: "Ordenar por %{value}"
612 612 label_sort_higher: Subir
613 613 label_sort_highest: Primero
614 614 label_sort_lower: Bajar
615 615 label_sort_lowest: Último
616 616 label_spent_time: Tiempo dedicado
617 617 label_start_to_end: principio a fin
618 618 label_start_to_start: principio a principio
619 619 label_statistics: Estadísticas
620 620 label_stay_logged_in: Recordar conexión
621 621 label_string: Texto
622 622 label_subproject_plural: Proyectos secundarios
623 623 label_text: Texto largo
624 624 label_theme: Tema
625 625 label_this_month: este mes
626 626 label_this_week: esta semana
627 627 label_this_year: este año
628 628 label_time_tracking: Control de tiempo
629 629 label_today: hoy
630 630 label_topic_plural: Temas
631 631 label_total: Total
632 632 label_tracker: Tipo
633 633 label_tracker_new: Nuevo tipo
634 634 label_tracker_plural: Tipos de peticiones
635 635 label_updated_time: "Actualizado hace %{value}"
636 636 label_updated_time_by: "Actualizado por %{author} hace %{age}"
637 637 label_used_by: Utilizado por
638 638 label_user: Usuario
639 639 label_user_activity: "Actividad de %{value}"
640 640 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
641 641 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
642 642 label_user_mail_option_selected: "Para cualquier evento de los proyectos seleccionados..."
643 643 label_user_new: Nuevo usuario
644 644 label_user_plural: Usuarios
645 645 label_version: Versión
646 646 label_version_new: Nueva versión
647 647 label_version_plural: Versiones
648 648 label_view_diff: Ver diferencias
649 649 label_view_revisions: Ver las revisiones
650 650 label_watched_issues: Peticiones monitorizadas
651 651 label_week: Semana
652 652 label_wiki: Wiki
653 653 label_wiki_edit: Modificación Wiki
654 654 label_wiki_edit_plural: Modificaciones Wiki
655 655 label_wiki_page: Página Wiki
656 656 label_wiki_page_plural: Páginas Wiki
657 657 label_workflow: Flujo de trabajo
658 658 label_year: Año
659 659 label_yesterday: ayer
660 660 mail_body_account_activation_request: "Se ha inscrito un nuevo usuario (%{value}). La cuenta está pendiende de aprobación:"
661 661 mail_body_account_information: Información sobre su cuenta
662 662 mail_body_account_information_external: "Puede usar su cuenta %{value} para conectarse."
663 663 mail_body_lost_password: 'Para cambiar su contraseña, haga clic en el siguiente enlace:'
664 664 mail_body_register: 'Para activar su cuenta, haga clic en el siguiente enlace:'
665 665 mail_body_reminder: "%{count} peticion(es) asignadas a finalizan en los próximos %{days} días:"
666 666 mail_subject_account_activation_request: "Petición de activación de cuenta %{value}"
667 667 mail_subject_lost_password: "Tu contraseña del %{value}"
668 668 mail_subject_register: "Activación de la cuenta del %{value}"
669 669 mail_subject_reminder: "%{count} peticion(es) finalizan en los próximos %{days} días"
670 670 notice_account_activated: Su cuenta ha sido activada. Ya puede conectarse.
671 671 notice_account_invalid_creditentials: Usuario o contraseña inválido.
672 672 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
673 673 notice_account_password_updated: Contraseña modificada correctamente.
674 674 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte del administrador."
675 675 notice_account_register_done: Cuenta creada correctamente. Para activarla, haga clic sobre el enlace que le ha sido enviado por correo.
676 676 notice_account_unknown_email: Usuario desconocido.
677 677 notice_account_updated: Cuenta actualizada correctamente.
678 678 notice_account_wrong_password: Contraseña incorrecta.
679 679 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
680 680 notice_default_data_loaded: Configuración por defecto cargada correctamente.
681 681 notice_email_error: "Ha ocurrido un error mientras enviando el correo (%{value})"
682 682 notice_email_sent: "Se ha enviado un correo a %{value}"
683 683 notice_failed_to_save_issues: "Imposible grabar %s peticion(es) en %{count} seleccionado: %{ids}."
684 684 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada.
685 685 notice_file_not_found: La página a la que intenta acceder no existe.
686 686 notice_locking_conflict: Los datos han sido modificados por otro usuario.
687 687 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
688 688 notice_not_authorized: No tiene autorización para acceder a esta página.
689 689 notice_successful_connection: Conexión correcta.
690 690 notice_successful_create: Creación correcta.
691 691 notice_successful_delete: Borrado correcto.
692 692 notice_successful_update: Modificación correcta.
693 693 notice_unable_delete_version: No se puede borrar la versión
694 694 permission_add_issue_notes: Añadir notas
695 695 permission_add_issue_watchers: Añadir seguidores
696 696 permission_add_issues: Añadir peticiones
697 697 permission_add_messages: Enviar mensajes
698 698 permission_browse_repository: Hojear repositiorio
699 699 permission_comment_news: Comentar noticias
700 700 permission_commit_access: Acceso de escritura
701 701 permission_delete_issues: Borrar peticiones
702 702 permission_delete_messages: Borrar mensajes
703 703 permission_delete_own_messages: Borrar mensajes propios
704 704 permission_delete_wiki_pages: Borrar páginas wiki
705 705 permission_delete_wiki_pages_attachments: Borrar ficheros
706 706 permission_edit_issue_notes: Modificar notas
707 707 permission_edit_issues: Modificar peticiones
708 708 permission_edit_messages: Modificar mensajes
709 709 permission_edit_own_issue_notes: Modificar notas propias
710 710 permission_edit_own_messages: Editar mensajes propios
711 711 permission_edit_own_time_entries: Modificar tiempos dedicados propios
712 712 permission_edit_project: Modificar proyecto
713 713 permission_edit_time_entries: Modificar tiempos dedicados
714 714 permission_edit_wiki_pages: Modificar páginas wiki
715 715 permission_log_time: Anotar tiempo dedicado
716 716 permission_manage_boards: Administrar foros
717 717 permission_manage_categories: Administrar categorías de peticiones
718 718 permission_manage_documents: Administrar documentos
719 719 permission_manage_files: Administrar ficheros
720 720 permission_manage_issue_relations: Administrar relación con otras peticiones
721 721 permission_manage_members: Administrar miembros
722 722 permission_manage_news: Administrar noticias
723 723 permission_manage_public_queries: Administrar consultas públicas
724 724 permission_manage_repository: Administrar repositorio
725 725 permission_manage_versions: Administrar versiones
726 726 permission_manage_wiki: Administrar wiki
727 727 permission_move_issues: Mover peticiones
728 728 permission_protect_wiki_pages: Proteger páginas wiki
729 729 permission_rename_wiki_pages: Renombrar páginas wiki
730 730 permission_save_queries: Grabar consultas
731 731 permission_select_project_modules: Seleccionar módulos del proyecto
732 732 permission_view_calendar: Ver calendario
733 733 permission_view_changesets: Ver cambios
734 734 permission_view_documents: Ver documentos
735 735 permission_view_files: Ver ficheros
736 736 permission_view_gantt: Ver diagrama de Gantt
737 737 permission_view_issue_watchers: Ver lista de seguidores
738 738 permission_view_messages: Ver mensajes
739 739 permission_view_time_entries: Ver tiempo dedicado
740 740 permission_view_wiki_edits: Ver histórico del wiki
741 741 permission_view_wiki_pages: Ver wiki
742 742 project_module_boards: Foros
743 743 project_module_documents: Documentos
744 744 project_module_files: Ficheros
745 745 project_module_issue_tracking: Peticiones
746 746 project_module_news: Noticias
747 747 project_module_repository: Repositorio
748 748 project_module_time_tracking: Control de tiempo
749 749 project_module_wiki: Wiki
750 750 setting_activity_days_default: Días a mostrar en la actividad de proyecto
751 751 setting_app_subtitle: Subtítulo de la aplicación
752 752 setting_app_title: Título de la aplicación
753 753 setting_attachment_max_size: Tamaño máximo del fichero
754 754 setting_autofetch_changesets: Autorellenar los commits del repositorio
755 755 setting_autologin: Conexión automática
756 756 setting_bcc_recipients: Ocultar las copias de carbón (bcc)
757 757 setting_commit_fix_keywords: Palabras clave para la corrección
758 758 setting_commit_logs_encoding: Codificación de los mensajes de commit
759 759 setting_commit_ref_keywords: Palabras clave para la referencia
760 760 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
761 761 setting_date_format: Formato de fecha
762 762 setting_default_language: Idioma por defecto
763 763 setting_default_projects_public: Los proyectos nuevos son públicos por defecto
764 764 setting_diff_max_lines_displayed: Número máximo de diferencias mostradas
765 765 setting_display_subprojects_issues: Mostrar por defecto peticiones de proy. secundarios en el principal
766 766 setting_emails_footer: Pie de mensajes
767 767 setting_enabled_scm: Activar SCM
768 768 setting_feeds_limit: Límite de contenido para sindicación
769 769 setting_gravatar_enabled: Usar iconos de usuario (Gravatar)
770 770 setting_host_name: Nombre y ruta del servidor
771 771 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
772 772 setting_issues_export_limit: Límite de exportación de peticiones
773 773 setting_login_required: Se requiere identificación
774 774 setting_mail_from: Correo desde el que enviar mensajes
775 775 setting_mail_handler_api_enabled: Activar SW para mensajes entrantes
776 776 setting_mail_handler_api_key: Clave de la API
777 777 setting_per_page_options: Objetos por página
778 778 setting_plain_text_mail: sólo texto plano (no HTML)
779 779 setting_protocol: Protocolo
780 780 setting_repositories_encodings: Codificaciones del repositorio
781 781 setting_self_registration: Registro permitido
782 782 setting_sequential_project_identifiers: Generar identificadores de proyecto
783 783 setting_sys_api_enabled: Habilitar SW para la gestión del repositorio
784 784 setting_text_formatting: Formato de texto
785 785 setting_time_format: Formato de hora
786 786 setting_user_format: Formato de nombre de usuario
787 787 setting_welcome_text: Texto de bienvenida
788 788 setting_wiki_compression: Compresión del historial del Wiki
789 789 status_active: activo
790 790 status_locked: bloqueado
791 791 status_registered: registrado
792 792 text_are_you_sure: ¿Está seguro?
793 793 text_assign_time_entries_to_project: Asignar las horas al proyecto
794 794 text_caracters_maximum: "%{count} caracteres como máximo."
795 795 text_caracters_minimum: "%{count} caracteres como mínimo."
796 796 text_comma_separated: Múltiples valores permitidos (separados por coma).
797 797 text_default_administrator_account_changed: Cuenta de administrador por defecto modificada
798 798 text_destroy_time_entries: Borrar las horas
799 799 text_destroy_time_entries_question: Existen %{hours} horas asignadas a la petición que quiere borrar. ¿Qué quiere hacer?
800 800 text_diff_truncated: '... Diferencia truncada por exceder el máximo tamaño visualizable.'
801 801 text_email_delivery_not_configured: "Las notificaciones están desactivadas porque el servidor de correo no está configurado.\nConfigure el servidor de SMTP en config/configuration.yml y reinicie la aplicación para activar los cambios."
802 802 text_enumeration_category_reassign_to: 'Reasignar al siguiente valor:'
803 803 text_enumeration_destroy_question: "%{count} objetos con este valor asignado."
804 804 text_file_repository_writable: Se puede escribir en el repositorio
805 805 text_issue_added: "Petición %{id} añadida por %{author}."
806 806 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
807 807 text_issue_category_destroy_question: "Algunas peticiones (%{count}) están asignadas a esta categoría. ¿Qué desea hacer?"
808 808 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
809 809 text_issue_updated: "La petición %{id} ha sido actualizada por %{author}."
810 810 text_issues_destroy_confirmation: '¿Seguro que quiere borrar las peticiones seleccionadas?'
811 811 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
812 812 text_length_between: "Longitud entre %{min} y %{max} caracteres."
813 813 text_load_default_configuration: Cargar la configuración por defecto
814 814 text_min_max_length_info: 0 para ninguna restricción
815 815 text_no_configuration_data: "Todavía no se han configurado perfiles, ni tipos, estados y flujo de trabajo asociado a peticiones. Se recomiendo encarecidamente cargar la configuración por defecto. Una vez cargada, podrá modificarla."
816 816 text_project_destroy_confirmation: ¿Estás seguro de querer eliminar el proyecto?
817 817 text_project_identifier_info: 'Letras minúsculas (a-z), números y signos de puntuación permitidos.<br />Una vez guardado, el identificador no puede modificarse.'
818 818 text_reassign_time_entries: 'Reasignar las horas a esta petición:'
819 819 text_regexp_info: ej. ^[A-Z0-9]+$
820 820 text_repository_usernames_mapping: "Establezca la correspondencia entre los usuarios de Redmine y los presentes en el log del repositorio.\nLos usuarios con el mismo nombre o correo en Redmine y en el repositorio serán asociados automáticamente."
821 821 text_rmagick_available: RMagick disponible (opcional)
822 822 text_select_mail_notifications: Seleccionar los eventos a notificar
823 823 text_select_project_modules: 'Seleccione los módulos a activar para este proyecto:'
824 824 text_status_changed_by_changeset: "Aplicado en los cambios %{value}"
825 825 text_subprojects_destroy_warning: "Los proyectos secundarios: %{value} también se eliminarán"
826 826 text_tip_issue_begin_day: tarea que comienza este día
827 827 text_tip_issue_begin_end_day: tarea que comienza y termina este día
828 828 text_tip_issue_end_day: tarea que termina este día
829 829 text_tracker_no_workflow: No hay ningún flujo de trabajo definido para este tipo de petición
830 830 text_unallowed_characters: Caracteres no permitidos
831 831 text_user_mail_option: "De los proyectos no seleccionados, sólo recibirá notificaciones sobre elementos monitorizados o elementos en los que esté involucrado (por ejemplo, peticiones de las que usted sea autor o asignadas a usted)."
832 832 text_user_wrote: "%{value} escribió:"
833 833 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
834 834 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
835 835 text_plugin_assets_writable: Se puede escribir en el directorio público de las extensiones
836 836 warning_attachments_not_saved: "No se han podido grabar %{count} ficheros."
837 837 button_create_and_continue: Crear y continuar
838 838 text_custom_field_possible_values_info: 'Un valor en cada línea'
839 839 label_display: Mostrar
840 840 field_editable: Modificable
841 841 setting_repository_log_display_limit: Número máximo de revisiones mostradas en el fichero de trazas
842 842 setting_file_max_size_displayed: Tamaño máximo de los ficheros de texto mostrados
843 843 field_watcher: Seguidor
844 844 setting_openid: Permitir identificación y registro por OpenID
845 845 field_identity_url: URL de OpenID
846 846 label_login_with_open_id_option: o identifíquese con OpenID
847 847 field_content: Contenido
848 848 label_descending: Descendente
849 849 label_sort: Ordenar
850 850 label_ascending: Ascendente
851 851 label_date_from_to: Desde %{start} hasta %{end}
852 852 label_greater_or_equal: ">="
853 853 label_less_or_equal: <=
854 854 text_wiki_page_destroy_question: Esta página tiene %{descendants} página(s) hija(s) y descendiente(s). ¿Qué desea hacer?
855 855 text_wiki_page_reassign_children: Reasignar páginas hijas a esta página
856 856 text_wiki_page_nullify_children: Dejar páginas hijas como páginas raíz
857 857 text_wiki_page_destroy_children: Eliminar páginas hijas y todos sus descendientes
858 858 setting_password_min_length: Longitud mínima de la contraseña
859 859 field_group_by: Agrupar resultados por
860 860 mail_subject_wiki_content_updated: "La página wiki '%{id}' ha sido actualizada"
861 861 label_wiki_content_added: Página wiki añadida
862 862 mail_subject_wiki_content_added: "Se ha añadido la página wiki '%{id}'."
863 863 mail_body_wiki_content_added: "%{author} ha añadido la página wiki '%{id}'."
864 864 label_wiki_content_updated: Página wiki actualizada
865 865 mail_body_wiki_content_updated: La página wiki '%{id}' ha sido actualizada por %{author}.
866 866 permission_add_project: Crear proyecto
867 867 setting_new_project_user_role_id: Permiso asignado a un usuario no-administrador para crear proyectos
868 868 label_view_all_revisions: Ver todas las revisiones
869 869 label_tag: Etiqueta
870 870 label_branch: Rama
871 871 error_no_tracker_in_project: Este proyecto no tiene asociados tipos de peticiones. Por favor, revise la configuración.
872 872 error_no_default_issue_status: No se ha definido un estado de petición por defecto. Por favor, revise la configuración (en "Administración" -> "Estados de las peticiones").
873 873 text_journal_changed: "%{label} cambiado %{old} por %{new}"
874 874 text_journal_set_to: "%{label} establecido a %{value}"
875 875 text_journal_deleted: "%{label} eliminado (%{old})"
876 876 label_group_plural: Grupos
877 877 label_group: Grupo
878 878 label_group_new: Nuevo grupo
879 879 label_time_entry_plural: Tiempo dedicado
880 880 text_journal_added: "Añadido %{label} %{value}"
881 881 field_active: Activo
882 882 enumeration_system_activity: Actividad del sistema
883 883 permission_delete_issue_watchers: Borrar seguidores
884 884 version_status_closed: cerrado
885 885 version_status_locked: bloqueado
886 886 version_status_open: abierto
887 887 error_can_not_reopen_issue_on_closed_version: No se puede reabrir una petición asignada a una versión cerrada
888 888
889 889 label_user_anonymous: Anónimo
890 890 button_move_and_follow: Mover y seguir
891 891 setting_default_projects_modules: Módulos activados por defecto en proyectos nuevos
892 892 setting_gravatar_default: Imagen Gravatar por defecto
893 893 field_sharing: Compartir
894 894 button_copy_and_follow: Copiar y seguir
895 895 label_version_sharing_hierarchy: Con la jerarquía del proyecto
896 896 label_version_sharing_tree: Con el árbol del proyecto
897 897 label_version_sharing_descendants: Con proyectos hijo
898 898 label_version_sharing_system: Con todos los proyectos
899 899 label_version_sharing_none: No compartir
900 900 button_duplicate: Duplicar
901 901 error_can_not_archive_project: Este proyecto no puede ser archivado
902 902 label_copy_source: Fuente
903 903 setting_issue_done_ratio: Calcular el ratio de tareas realizadas con
904 904 setting_issue_done_ratio_issue_status: Usar el estado de tareas
905 905 error_issue_done_ratios_not_updated: Ratios de tareas realizadas no actualizado.
906 906 error_workflow_copy_target: Por favor, elija categoría(s) y perfil(es) destino
907 907 setting_issue_done_ratio_issue_field: Utilizar el campo de petición
908 908 label_copy_same_as_target: El mismo que el destino
909 909 label_copy_target: Destino
910 910 notice_issue_done_ratios_updated: Ratios de tareas realizadas actualizados.
911 911 error_workflow_copy_source: Por favor, elija una categoría o rol de origen
912 912 label_update_issue_done_ratios: Actualizar ratios de tareas realizadas
913 913 setting_start_of_week: Comenzar las semanas en
914 914 permission_view_issues: Ver peticiones
915 915 label_display_used_statuses_only: Sólo mostrar los estados usados por este tipo de petición
916 916 label_revision_id: Revisión %{value}
917 917 label_api_access_key: Clave de acceso de la API
918 918 label_api_access_key_created_on: Clave de acceso de la API creada hace %{value}
919 919 label_feeds_access_key: Clave de acceso RSS
920 920 notice_api_access_key_reseted: Clave de acceso a la API regenerada.
921 921 setting_rest_api_enabled: Activar servicio web REST
922 922 label_missing_api_access_key: Clave de acceso a la API ausente
923 923 label_missing_feeds_access_key: Clave de accesso RSS ausente
924 924 button_show: Mostrar
925 925 text_line_separated: Múltiples valores permitidos (un valor en cada línea).
926 926 setting_mail_handler_body_delimiters: Truncar correos tras una de estas líneas
927 927 permission_add_subprojects: Crear subproyectos
928 928 label_subproject_new: Nuevo subproyecto
929 929 text_own_membership_delete_confirmation: |-
930 930 Está a punto de eliminar algún o todos sus permisos y podría perder la posibilidad de modificar este proyecto tras hacerlo.
931 931 ¿Está seguro de querer continuar?
932 932 label_close_versions: Cerrar versiones completadas
933 933 label_board_sticky: Pegajoso
934 934 label_board_locked: Bloqueado
935 935 permission_export_wiki_pages: Exportar páginas wiki
936 936 setting_cache_formatted_text: Cachear texto formateado
937 937 permission_manage_project_activities: Gestionar actividades del proyecto
938 938 error_unable_delete_issue_status: Fue imposible eliminar el estado de la petición
939 939 label_profile: Perfil
940 940 permission_manage_subtasks: Gestionar subtareas
941 941 field_parent_issue: Tarea padre
942 942 label_subtask_plural: Subtareas
943 943 label_project_copy_notifications: Enviar notificaciones por correo electrónico durante la copia del proyecto
944 944 error_can_not_delete_custom_field: Fue imposible eliminar el campo personalizado
945 945 error_unable_to_connect: Fue imposible conectar con (%{value})
946 946 error_can_not_remove_role: Este rol está en uso y no puede ser eliminado.
947 947 error_can_not_delete_tracker: Este tipo contiene peticiones y no puede ser eliminado.
948 948 field_principal: Principal
949 949 label_my_page_block: Bloque Mi página
950 950 notice_failed_to_save_members: "Fallo al guardar miembro(s): %{errors}."
951 951 text_zoom_out: Alejar
952 952 text_zoom_in: Acercar
953 953 notice_unable_delete_time_entry: Fue imposible eliminar la entrada de tiempo dedicado.
954 954 label_overall_spent_time: Tiempo total dedicado
955 955 field_time_entries: Log time
956 956 project_module_gantt: Gantt
957 957 project_module_calendar: Calendario
958 958 button_edit_associated_wikipage: "Editar paginas Wiki asociadas: %{page_title}"
959 959 text_are_you_sure_with_children: ¿Borrar peticiones y todas sus peticiones hijas?
960 960 field_text: Campo de texto
961 961 label_user_mail_option_only_owner: Solo para objetos que soy propietario
962 962 setting_default_notification_option: Opcion de notificacion por defecto
963 963 label_user_mail_option_only_my_events: Solo para objetos que soy seguidor o estoy involucrado
964 964 label_user_mail_option_only_assigned: Solo para objetos que estoy asignado
965 965 label_user_mail_option_none: Sin eventos
966 966 field_member_of_group: Asignado al grupo
967 967 field_assigned_to_role: Asignado al perfil
968 968 notice_not_authorized_archived_project: El proyecto al que intenta acceder ha sido archivado.
969 969 label_principal_search: "Buscar por usuario o grupo:"
970 970 label_user_search: "Buscar por usuario:"
971 971 field_visible: Visible
972 972 setting_emails_header: Encabezado de Correos
973 973
974 974 setting_commit_logtime_activity_id: Activity for logged time
975 975 text_time_logged_by_changeset: Applied in changeset %{value}.
976 976 setting_commit_logtime_enabled: Enable time logging
977 977 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
978 978 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
979 979 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
980 980 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
981 981 label_my_queries: My custom queries
982 982 text_journal_changed_no_detail: "%{label} updated"
983 983 label_news_comment_added: Comment added to a news
984 984 button_expand_all: Expand all
985 985 button_collapse_all: Collapse all
986 986 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
987 987 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
988 988 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
989 989 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
990 990 label_role_anonymous: Anonymous
991 991 label_role_non_member: Non member
992 992 label_issue_note_added: Note added
993 993 label_issue_status_updated: Status updated
994 994 label_issue_priority_updated: Priority updated
995 995 label_issues_visibility_own: Issues created by or assigned to the user
996 996 field_issues_visibility: Issues visibility
997 997 label_issues_visibility_all: All issues
998 998 permission_set_own_issues_private: Set own issues public or private
999 999 field_is_private: Private
1000 1000 permission_set_issues_private: Set issues public or private
1001 1001 label_issues_visibility_public: All non private issues
1002 1002 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
@@ -1,986 +1,986
1 1 # Finnish translations for Ruby on Rails
2 2 # by Marko Seppä (marko.seppa@gmail.com)
3 3
4 4 fi:
5 5 direction: ltr
6 6 date:
7 7 formats:
8 8 default: "%e. %Bta %Y"
9 9 long: "%A%e. %Bta %Y"
10 10 short: "%e.%m.%Y"
11 11
12 12 day_names: [Sunnuntai, Maanantai, Tiistai, Keskiviikko, Torstai, Perjantai, Lauantai]
13 13 abbr_day_names: [Su, Ma, Ti, Ke, To, Pe, La]
14 14 month_names: [~, Tammikuu, Helmikuu, Maaliskuu, Huhtikuu, Toukokuu, Kesäkuu, Heinäkuu, Elokuu, Syyskuu, Lokakuu, Marraskuu, Joulukuu]
15 15 abbr_month_names: [~, Tammi, Helmi, Maalis, Huhti, Touko, Kesä, Heinä, Elo, Syys, Loka, Marras, Joulu]
16 16 order:
17 17 - :day
18 18 - :month
19 19 - :year
20 20
21 21 time:
22 22 formats:
23 23 default: "%a, %e. %b %Y %H:%M:%S %z"
24 24 time: "%H:%M"
25 25 short: "%e. %b %H:%M"
26 26 long: "%B %d, %Y %H:%M"
27 27 am: "aamupäivä"
28 28 pm: "iltapäivä"
29 29
30 30 support:
31 31 array:
32 32 words_connector: ", "
33 33 two_words_connector: " ja "
34 34 last_word_connector: " ja "
35 35
36 36
37 37
38 38 number:
39 39 format:
40 40 separator: ","
41 41 delimiter: "."
42 42 precision: 3
43 43
44 44 currency:
45 45 format:
46 46 format: "%n %u"
47 47 unit: "€"
48 48 separator: ","
49 49 delimiter: "."
50 50 precision: 2
51 51
52 52 percentage:
53 53 format:
54 54 # separator:
55 55 delimiter: ""
56 56 # precision:
57 57
58 58 precision:
59 59 format:
60 60 # separator:
61 61 delimiter: ""
62 62 # precision:
63 63
64 64 human:
65 65 format:
66 66 delimiter: ""
67 67 precision: 1
68 68 storage_units:
69 69 format: "%n %u"
70 70 units:
71 71 byte:
72 72 one: "Tavua"
73 73 other: "Tavua"
74 74 kb: "KB"
75 75 mb: "MB"
76 76 gb: "GB"
77 77 tb: "TB"
78 78
79 79 datetime:
80 80 distance_in_words:
81 81 half_a_minute: "puoli minuuttia"
82 82 less_than_x_seconds:
83 83 one: "aiemmin kuin sekunti"
84 84 other: "aiemmin kuin %{count} sekuntia"
85 85 x_seconds:
86 86 one: "sekunti"
87 87 other: "%{count} sekuntia"
88 88 less_than_x_minutes:
89 89 one: "aiemmin kuin minuutti"
90 90 other: "aiemmin kuin %{count} minuuttia"
91 91 x_minutes:
92 92 one: "minuutti"
93 93 other: "%{count} minuuttia"
94 94 about_x_hours:
95 95 one: "noin tunti"
96 96 other: "noin %{count} tuntia"
97 97 x_days:
98 98 one: "päivä"
99 99 other: "%{count} päivää"
100 100 about_x_months:
101 101 one: "noin kuukausi"
102 102 other: "noin %{count} kuukautta"
103 103 x_months:
104 104 one: "kuukausi"
105 105 other: "%{count} kuukautta"
106 106 about_x_years:
107 107 one: "vuosi"
108 108 other: "noin %{count} vuotta"
109 109 over_x_years:
110 110 one: "yli vuosi"
111 111 other: "yli %{count} vuotta"
112 112 almost_x_years:
113 113 one: "almost 1 year"
114 114 other: "almost %{count} years"
115 115 prompts:
116 116 year: "Vuosi"
117 117 month: "Kuukausi"
118 118 day: "Päivä"
119 119 hour: "Tunti"
120 120 minute: "Minuutti"
121 121 second: "Sekuntia"
122 122
123 123 activerecord:
124 124 errors:
125 125 template:
126 126 header:
127 127 one: "1 virhe esti tämän %{model} mallinteen tallentamisen"
128 128 other: "%{count} virhettä esti tämän %{model} mallinteen tallentamisen"
129 129 body: "Seuraavat kentät aiheuttivat ongelmia:"
130 130 messages:
131 131 inclusion: "ei löydy listauksesta"
132 132 exclusion: "on jo varattu"
133 133 invalid: "on kelvoton"
134 134 confirmation: "ei vastaa varmennusta"
135 135 accepted: "täytyy olla hyväksytty"
136 136 empty: "ei voi olla tyhjä"
137 137 blank: "ei voi olla sisällötön"
138 138 too_long: "on liian pitkä (maksimi on %{count} merkkiä)"
139 139 too_short: "on liian lyhyt (minimi on %{count} merkkiä)"
140 140 wrong_length: "on väärän pituinen (täytyy olla täsmälleen %{count} merkkiä)"
141 141 taken: "on jo käytössä"
142 142 not_a_number: "ei ole numero"
143 143 greater_than: "täytyy olla suurempi kuin %{count}"
144 144 greater_than_or_equal_to: "täytyy olla suurempi tai yhtä suuri kuin%{count}"
145 145 equal_to: "täytyy olla yhtä suuri kuin %{count}"
146 146 less_than: "täytyy olla pienempi kuin %{count}"
147 147 less_than_or_equal_to: "täytyy olla pienempi tai yhtä suuri kuin %{count}"
148 148 odd: "täytyy olla pariton"
149 149 even: "täytyy olla parillinen"
150 150 greater_than_start_date: "tulee olla aloituspäivän jälkeinen"
151 151 not_same_project: "ei kuulu samaan projektiin"
152 152 circular_dependency: "Tämä suhde loisi kehän."
153 153 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
154 154
155 155 actionview_instancetag_blank_option: Valitse, ole hyvä
156 156
157 157 general_text_No: 'Ei'
158 158 general_text_Yes: 'Kyllä'
159 159 general_text_no: 'ei'
160 160 general_text_yes: 'kyllä'
161 161 general_lang_name: 'Finnish (Suomi)'
162 162 general_csv_separator: ','
163 163 general_csv_decimal_separator: '.'
164 164 general_csv_encoding: ISO-8859-15
165 165 general_pdf_encoding: UTF-8
166 166 general_first_day_of_week: '1'
167 167
168 168 notice_account_updated: Tilin päivitys onnistui.
169 169 notice_account_invalid_creditentials: Virheellinen käyttäjätunnus tai salasana
170 170 notice_account_password_updated: Salasanan päivitys onnistui.
171 171 notice_account_wrong_password: Väärä salasana
172 172 notice_account_register_done: Tilin luonti onnistui. Aktivoidaksesi tilin seuraa linkkiä joka välitettiin sähköpostiisi.
173 173 notice_account_unknown_email: Tuntematon käyttäjä.
174 174 notice_can_t_change_password: Tämä tili käyttää ulkoista tunnistautumisjärjestelmää. Salasanaa ei voi muuttaa.
175 175 notice_account_lost_email_sent: Sinulle on lähetetty sähköposti jossa on ohje kuinka vaihdat salasanasi.
176 176 notice_account_activated: Tilisi on nyt aktivoitu, voit kirjautua sisälle.
177 177 notice_successful_create: Luonti onnistui.
178 178 notice_successful_update: Päivitys onnistui.
179 179 notice_successful_delete: Poisto onnistui.
180 180 notice_successful_connection: Yhteyden muodostus onnistui.
181 181 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
182 182 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
183 183 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
184 184 notice_email_sent: "Sähköposti on lähetty osoitteeseen %{value}"
185 185 notice_email_error: "Sähköpostilähetyksessä tapahtui virhe (%{value})"
186 186 notice_feeds_access_key_reseted: RSS salasana on nollaantunut.
187 187 notice_failed_to_save_issues: "%{count} Tapahtum(an/ien) tallennus epäonnistui %{total} valitut: %{ids}."
188 188 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
189 189 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
190 190 notice_default_data_loaded: Vakioasetusten palautus onnistui.
191 191
192 192 error_can_t_load_default_data: "Vakioasetuksia ei voitu ladata: %{value}"
193 193 error_scm_not_found: "Syötettä ja/tai versiota ei löydy tietovarastosta."
194 194 error_scm_command_failed: "Tietovarastoon pääsyssä tapahtui virhe: %{value}"
195 195
196 196 mail_subject_lost_password: "Sinun %{value} salasanasi"
197 197 mail_body_lost_password: 'Vaihtaaksesi salasanasi, napsauta seuraavaa linkkiä:'
198 198 mail_subject_register: "%{value} tilin aktivointi"
199 199 mail_body_register: 'Aktivoidaksesi tilisi, napsauta seuraavaa linkkiä:'
200 200 mail_body_account_information_external: "Voit nyt käyttää %{value} tiliäsi kirjautuaksesi järjestelmään."
201 201 mail_body_account_information: Sinun tilin tiedot
202 202 mail_subject_account_activation_request: "%{value} tilin aktivointi pyyntö"
203 203 mail_body_account_activation_request: "Uusi käyttäjä (%{value}) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:"
204 204
205 205 gui_validation_error: 1 virhe
206 206 gui_validation_error_plural: "%{count} virhettä"
207 207
208 208 field_name: Nimi
209 209 field_description: Kuvaus
210 210 field_summary: Yhteenveto
211 211 field_is_required: Vaaditaan
212 212 field_firstname: Etunimi
213 213 field_lastname: Sukunimi
214 214 field_mail: Sähköposti
215 215 field_filename: Tiedosto
216 216 field_filesize: Koko
217 217 field_downloads: Latausta
218 218 field_author: Tekijä
219 219 field_created_on: Luotu
220 220 field_updated_on: Päivitetty
221 221 field_field_format: Muoto
222 222 field_is_for_all: Kaikille projekteille
223 223 field_possible_values: Mahdolliset arvot
224 224 field_regexp: Säännöllinen lauseke (reg exp)
225 225 field_min_length: Minimipituus
226 226 field_max_length: Maksimipituus
227 227 field_value: Arvo
228 228 field_category: Luokka
229 229 field_title: Otsikko
230 230 field_project: Projekti
231 231 field_issue: Tapahtuma
232 232 field_status: Tila
233 233 field_notes: Muistiinpanot
234 234 field_is_closed: Tapahtuma suljettu
235 235 field_is_default: Vakioarvo
236 236 field_tracker: Tapahtuma
237 237 field_subject: Aihe
238 238 field_due_date: Määräaika
239 239 field_assigned_to: Nimetty
240 240 field_priority: Prioriteetti
241 241 field_fixed_version: Kohdeversio
242 242 field_user: Käyttäjä
243 243 field_role: Rooli
244 244 field_homepage: Kotisivu
245 245 field_is_public: Julkinen
246 246 field_parent: Aliprojekti
247 247 field_is_in_roadmap: Tapahtumat näytetään roadmap näkymässä
248 248 field_login: Kirjautuminen
249 249 field_mail_notification: Sähköposti muistutukset
250 250 field_admin: Ylläpitäjä
251 251 field_last_login_on: Viimeinen yhteys
252 252 field_language: Kieli
253 253 field_effective_date: Päivä
254 254 field_password: Salasana
255 255 field_new_password: Uusi salasana
256 256 field_password_confirmation: Vahvistus
257 257 field_version: Versio
258 258 field_type: Tyyppi
259 259 field_host: Verkko-osoite
260 260 field_port: Portti
261 261 field_account: Tili
262 262 field_base_dn: Base DN
263 263 field_attr_login: Kirjautumismääre
264 264 field_attr_firstname: Etuminenmääre
265 265 field_attr_lastname: Sukunimenmääre
266 266 field_attr_mail: Sähköpostinmääre
267 267 field_onthefly: Automaattinen käyttäjien luonti
268 268 field_start_date: Alku
269 field_done_ratio: % Tehty
269 field_done_ratio: "% Tehty"
270 270 field_auth_source: Varmennusmuoto
271 271 field_hide_mail: Piiloita sähköpostiosoitteeni
272 272 field_comments: Kommentti
273 273 field_url: URL
274 274 field_start_page: Aloitussivu
275 275 field_subproject: Aliprojekti
276 276 field_hours: Tuntia
277 277 field_activity: Historia
278 278 field_spent_on: Päivä
279 279 field_identifier: Tunniste
280 280 field_is_filter: Käytetään suodattimena
281 281 field_issue_to: Liittyvä tapahtuma
282 282 field_delay: Viive
283 283 field_assignable: Tapahtumia voidaan nimetä tälle roolille
284 284 field_redirect_existing_links: Uudelleenohjaa olemassa olevat linkit
285 285 field_estimated_hours: Arvioitu aika
286 286 field_column_names: Saraketta
287 287 field_time_zone: Aikavyöhyke
288 288 field_searchable: Haettava
289 289 field_default_value: Vakioarvo
290 290
291 291 setting_app_title: Ohjelman otsikko
292 292 setting_app_subtitle: Ohjelman alaotsikko
293 293 setting_welcome_text: Tervehdysteksti
294 294 setting_default_language: Vakiokieli
295 295 setting_login_required: Pakollinen kirjautuminen
296 296 setting_self_registration: Itserekisteröinti
297 297 setting_attachment_max_size: Liitteen maksimikoko
298 298 setting_issues_export_limit: Tapahtumien vientirajoite
299 299 setting_mail_from: Lähettäjän sähköpostiosoite
300 300 setting_bcc_recipients: Vastaanottajat piilokopiona (bcc)
301 301 setting_host_name: Verkko-osoite
302 302 setting_text_formatting: Tekstin muotoilu
303 303 setting_wiki_compression: Wiki historian pakkaus
304 304 setting_feeds_limit: Syötteen sisällön raja
305 305 setting_autofetch_changesets: Automaattisten muutosjoukkojen haku
306 306 setting_sys_api_enabled: Salli WS tietovaraston hallintaan
307 307 setting_commit_ref_keywords: Viittaavat hakusanat
308 308 setting_commit_fix_keywords: Korjaavat hakusanat
309 309 setting_autologin: Automaatinen kirjautuminen
310 310 setting_date_format: Päivän muoto
311 311 setting_time_format: Ajan muoto
312 312 setting_cross_project_issue_relations: Salli projektien väliset tapahtuminen suhteet
313 313 setting_issue_list_default_columns: Vakiosarakkeiden näyttö tapahtumalistauksessa
314 314 setting_repositories_encodings: Tietovaraston koodaus
315 315 setting_emails_footer: Sähköpostin alatunniste
316 316 setting_protocol: Protokolla
317 317 setting_per_page_options: Sivun objektien määrän asetukset
318 318
319 319 label_user: Käyttäjä
320 320 label_user_plural: Käyttäjät
321 321 label_user_new: Uusi käyttäjä
322 322 label_project: Projekti
323 323 label_project_new: Uusi projekti
324 324 label_project_plural: Projektit
325 325 label_x_projects:
326 326 zero: no projects
327 327 one: 1 project
328 328 other: "%{count} projects"
329 329 label_project_all: Kaikki projektit
330 330 label_project_latest: Uusimmat projektit
331 331 label_issue: Tapahtuma
332 332 label_issue_new: Uusi tapahtuma
333 333 label_issue_plural: Tapahtumat
334 334 label_issue_view_all: Näytä kaikki tapahtumat
335 335 label_issues_by: "Tapahtumat %{value}"
336 336 label_document: Dokumentti
337 337 label_document_new: Uusi dokumentti
338 338 label_document_plural: Dokumentit
339 339 label_role: Rooli
340 340 label_role_plural: Roolit
341 341 label_role_new: Uusi rooli
342 342 label_role_and_permissions: Roolit ja oikeudet
343 343 label_member: Jäsen
344 344 label_member_new: Uusi jäsen
345 345 label_member_plural: Jäsenet
346 346 label_tracker: Tapahtuma
347 347 label_tracker_plural: Tapahtumat
348 348 label_tracker_new: Uusi tapahtuma
349 349 label_workflow: Työnkulku
350 350 label_issue_status: Tapahtuman tila
351 351 label_issue_status_plural: Tapahtumien tilat
352 352 label_issue_status_new: Uusi tila
353 353 label_issue_category: Tapahtumaluokka
354 354 label_issue_category_plural: Tapahtumaluokat
355 355 label_issue_category_new: Uusi luokka
356 356 label_custom_field: Räätälöity kenttä
357 357 label_custom_field_plural: Räätälöidyt kentät
358 358 label_custom_field_new: Uusi räätälöity kenttä
359 359 label_enumerations: Lista
360 360 label_enumeration_new: Uusi arvo
361 361 label_information: Tieto
362 362 label_information_plural: Tiedot
363 363 label_please_login: Kirjaudu ole hyvä
364 364 label_register: Rekisteröidy
365 365 label_password_lost: Hukattu salasana
366 366 label_home: Koti
367 367 label_my_page: Omasivu
368 368 label_my_account: Oma tili
369 369 label_my_projects: Omat projektit
370 370 label_administration: Ylläpito
371 371 label_login: Kirjaudu sisään
372 372 label_logout: Kirjaudu ulos
373 373 label_help: Ohjeet
374 374 label_reported_issues: Raportoidut tapahtumat
375 375 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
376 376 label_last_login: Viimeinen yhteys
377 377 label_registered_on: Rekisteröity
378 378 label_activity: Historia
379 379 label_new: Uusi
380 380 label_logged_as: Kirjauduttu nimellä
381 381 label_environment: Ympäristö
382 382 label_authentication: Varmennus
383 383 label_auth_source: Varmennustapa
384 384 label_auth_source_new: Uusi varmennustapa
385 385 label_auth_source_plural: Varmennustavat
386 386 label_subproject_plural: Aliprojektit
387 387 label_min_max_length: Min - Max pituudet
388 388 label_list: Lista
389 389 label_date: Päivä
390 390 label_integer: Kokonaisluku
391 391 label_float: Liukuluku
392 392 label_boolean: Totuusarvomuuttuja
393 393 label_string: Merkkijono
394 394 label_text: Pitkä merkkijono
395 395 label_attribute: Määre
396 396 label_attribute_plural: Määreet
397 397 label_download: "%{count} Lataus"
398 398 label_download_plural: "%{count} Lataukset"
399 399 label_no_data: Ei tietoa näytettäväksi
400 400 label_change_status: Muutos tila
401 401 label_history: Historia
402 402 label_attachment: Tiedosto
403 403 label_attachment_new: Uusi tiedosto
404 404 label_attachment_delete: Poista tiedosto
405 405 label_attachment_plural: Tiedostot
406 406 label_report: Raportti
407 407 label_report_plural: Raportit
408 408 label_news: Uutinen
409 409 label_news_new: Lisää uutinen
410 410 label_news_plural: Uutiset
411 411 label_news_latest: Viimeisimmät uutiset
412 412 label_news_view_all: Näytä kaikki uutiset
413 413 label_settings: Asetukset
414 414 label_overview: Yleiskatsaus
415 415 label_version: Versio
416 416 label_version_new: Uusi versio
417 417 label_version_plural: Versiot
418 418 label_confirmation: Vahvistus
419 419 label_export_to: Vie
420 420 label_read: Lukee...
421 421 label_public_projects: Julkiset projektit
422 422 label_open_issues: avoin, yhteensä
423 423 label_open_issues_plural: avointa, yhteensä
424 424 label_closed_issues: suljettu
425 425 label_closed_issues_plural: suljettua
426 426 label_x_open_issues_abbr_on_total:
427 427 zero: 0 open / %{total}
428 428 one: 1 open / %{total}
429 429 other: "%{count} open / %{total}"
430 430 label_x_open_issues_abbr:
431 431 zero: 0 open
432 432 one: 1 open
433 433 other: "%{count} open"
434 434 label_x_closed_issues_abbr:
435 435 zero: 0 closed
436 436 one: 1 closed
437 437 other: "%{count} closed"
438 438 label_total: Yhteensä
439 439 label_permissions: Oikeudet
440 440 label_current_status: Nykyinen tila
441 441 label_new_statuses_allowed: Uudet tilat sallittu
442 442 label_all: kaikki
443 443 label_none: ei mitään
444 444 label_nobody: ei kukaan
445 445 label_next: Seuraava
446 446 label_previous: Edellinen
447 447 label_used_by: Käytetty
448 448 label_details: Yksityiskohdat
449 449 label_add_note: Lisää muistiinpano
450 450 label_per_page: Per sivu
451 451 label_calendar: Kalenteri
452 452 label_months_from: kuukauden päässä
453 453 label_gantt: Gantt
454 454 label_internal: Sisäinen
455 455 label_last_changes: "viimeiset %{count} muutokset"
456 456 label_change_view_all: Näytä kaikki muutokset
457 457 label_personalize_page: Personoi tämä sivu
458 458 label_comment: Kommentti
459 459 label_comment_plural: Kommentit
460 460 label_x_comments:
461 461 zero: no comments
462 462 one: 1 comment
463 463 other: "%{count} comments"
464 464 label_comment_add: Lisää kommentti
465 465 label_comment_added: Kommentti lisätty
466 466 label_comment_delete: Poista kommentti
467 467 label_query: Räätälöity haku
468 468 label_query_plural: Räätälöidyt haut
469 469 label_query_new: Uusi haku
470 470 label_filter_add: Lisää suodatin
471 471 label_filter_plural: Suodattimet
472 472 label_equals: sama kuin
473 473 label_not_equals: eri kuin
474 474 label_in_less_than: pienempi kuin
475 475 label_in_more_than: suurempi kuin
476 476 label_today: tänään
477 477 label_this_week: tällä viikolla
478 478 label_less_than_ago: vähemmän kuin päivää sitten
479 479 label_more_than_ago: enemän kuin päivää sitten
480 480 label_ago: päiviä sitten
481 481 label_contains: sisältää
482 482 label_not_contains: ei sisällä
483 483 label_day_plural: päivää
484 484 label_repository: Tietovarasto
485 485 label_repository_plural: Tietovarastot
486 486 label_browse: Selaus
487 487 label_modification: "%{count} muutos"
488 488 label_modification_plural: "%{count} muutettu"
489 489 label_revision: Versio
490 490 label_revision_plural: Versiot
491 491 label_added: lisätty
492 492 label_modified: muokattu
493 493 label_deleted: poistettu
494 494 label_latest_revision: Viimeisin versio
495 495 label_latest_revision_plural: Viimeisimmät versiot
496 496 label_view_revisions: Näytä versiot
497 497 label_max_size: Suurin koko
498 498 label_sort_highest: Siirrä ylimmäiseksi
499 499 label_sort_higher: Siirrä ylös
500 500 label_sort_lower: Siirrä alas
501 501 label_sort_lowest: Siirrä alimmaiseksi
502 502 label_roadmap: Roadmap
503 503 label_roadmap_due_in: "Määräaika %{value}"
504 504 label_roadmap_overdue: "%{value} myöhässä"
505 505 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
506 506 label_search: Haku
507 507 label_result_plural: Tulokset
508 508 label_all_words: kaikki sanat
509 509 label_wiki: Wiki
510 510 label_wiki_edit: Wiki muokkaus
511 511 label_wiki_edit_plural: Wiki muokkaukset
512 512 label_wiki_page: Wiki sivu
513 513 label_wiki_page_plural: Wiki sivut
514 514 label_index_by_title: Hakemisto otsikoittain
515 515 label_index_by_date: Hakemisto päivittäin
516 516 label_current_version: Nykyinen versio
517 517 label_preview: Esikatselu
518 518 label_feed_plural: Syötteet
519 519 label_changes_details: Kaikkien muutosten yksityiskohdat
520 520 label_issue_tracking: Tapahtumien seuranta
521 521 label_spent_time: Käytetty aika
522 522 label_f_hour: "%{value} tunti"
523 523 label_f_hour_plural: "%{value} tuntia"
524 524 label_time_tracking: Ajan seuranta
525 525 label_change_plural: Muutokset
526 526 label_statistics: Tilastot
527 527 label_commits_per_month: Tapahtumaa per kuukausi
528 528 label_commits_per_author: Tapahtumaa per tekijä
529 529 label_view_diff: Näytä erot
530 530 label_diff_inline: sisällössä
531 531 label_diff_side_by_side: vierekkäin
532 532 label_options: Valinnat
533 533 label_copy_workflow_from: Kopioi työnkulku
534 534 label_permissions_report: Oikeuksien raportti
535 535 label_watched_issues: Seurattavat tapahtumat
536 536 label_related_issues: Liittyvät tapahtumat
537 537 label_applied_status: Lisätty tila
538 538 label_loading: Lataa...
539 539 label_relation_new: Uusi suhde
540 540 label_relation_delete: Poista suhde
541 541 label_relates_to: liittyy
542 542 label_duplicates: kopio
543 543 label_blocks: estää
544 544 label_blocked_by: estetty
545 545 label_precedes: edeltää
546 546 label_follows: seuraa
547 547 label_end_to_start: lopusta alkuun
548 548 label_end_to_end: lopusta loppuun
549 549 label_start_to_start: alusta alkuun
550 550 label_start_to_end: alusta loppuun
551 551 label_stay_logged_in: Pysy kirjautuneena
552 552 label_disabled: poistettu käytöstä
553 553 label_show_completed_versions: Näytä valmiit versiot
554 554 label_me: minä
555 555 label_board: Keskustelupalsta
556 556 label_board_new: Uusi keskustelupalsta
557 557 label_board_plural: Keskustelupalstat
558 558 label_topic_plural: Aiheet
559 559 label_message_plural: Viestit
560 560 label_message_last: Viimeisin viesti
561 561 label_message_new: Uusi viesti
562 562 label_reply_plural: Vastaukset
563 563 label_send_information: Lähetä tilin tiedot käyttäjälle
564 564 label_year: Vuosi
565 565 label_month: Kuukausi
566 566 label_week: Viikko
567 567 label_language_based: Pohjautuen käyttäjän kieleen
568 568 label_sort_by: "Lajittele %{value}"
569 569 label_send_test_email: Lähetä testi sähköposti
570 570 label_feeds_access_key_created_on: "RSS salasana luotiin %{value} sitten"
571 571 label_module_plural: Moduulit
572 572 label_added_time_by: "Lisännyt %{author} %{age} sitten"
573 573 label_updated_time: "Päivitetty %{value} sitten"
574 574 label_jump_to_a_project: Siirry projektiin...
575 575 label_file_plural: Tiedostot
576 576 label_changeset_plural: Muutosryhmät
577 577 label_default_columns: Vakiosarakkeet
578 578 label_no_change_option: (Ei muutosta)
579 579 label_bulk_edit_selected_issues: Perusmuotoile valitut tapahtumat
580 580 label_theme: Teema
581 581 label_default: Vakio
582 582 label_search_titles_only: Hae vain otsikot
583 583 label_user_mail_option_all: "Kaikista tapahtumista kaikissa projekteistani"
584 584 label_user_mail_option_selected: "Kaikista tapahtumista vain valitsemistani projekteista..."
585 585 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse teen"
586 586 label_registration_activation_by_email: tilin aktivointi sähköpostitse
587 587 label_registration_manual_activation: tilin aktivointi käsin
588 588 label_registration_automatic_activation: tilin aktivointi automaattisesti
589 589 label_display_per_page: "Per sivu: %{value}"
590 590 label_age: Ikä
591 591 label_change_properties: Vaihda asetuksia
592 592 label_general: Yleinen
593 593
594 594 button_login: Kirjaudu
595 595 button_submit: Lähetä
596 596 button_save: Tallenna
597 597 button_check_all: Valitse kaikki
598 598 button_uncheck_all: Poista valinnat
599 599 button_delete: Poista
600 600 button_create: Luo
601 601 button_test: Testaa
602 602 button_edit: Muokkaa
603 603 button_add: Lisää
604 604 button_change: Muuta
605 605 button_apply: Ota käyttöön
606 606 button_clear: Tyhjää
607 607 button_lock: Lukitse
608 608 button_unlock: Vapauta
609 609 button_download: Lataa
610 610 button_list: Lista
611 611 button_view: Näytä
612 612 button_move: Siirrä
613 613 button_back: Takaisin
614 614 button_cancel: Peruuta
615 615 button_activate: Aktivoi
616 616 button_sort: Järjestä
617 617 button_log_time: Seuraa aikaa
618 618 button_rollback: Siirry takaisin tähän versioon
619 619 button_watch: Seuraa
620 620 button_unwatch: Älä seuraa
621 621 button_reply: Vastaa
622 622 button_archive: Arkistoi
623 623 button_unarchive: Palauta
624 624 button_reset: Nollaus
625 625 button_rename: Uudelleen nimeä
626 626 button_change_password: Vaihda salasana
627 627 button_copy: Kopioi
628 628 button_annotate: Lisää selitys
629 629 button_update: Päivitä
630 630
631 631 status_active: aktiivinen
632 632 status_registered: rekisteröity
633 633 status_locked: lukittu
634 634
635 635 text_select_mail_notifications: Valitse tapahtumat joista tulisi lähettää sähköpostimuistutus.
636 636 text_regexp_info: esim. ^[A-Z0-9]+$
637 637 text_min_max_length_info: 0 tarkoittaa, ei rajoitusta
638 638 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
639 639 text_workflow_edit: Valitse rooli ja tapahtuma muokataksesi työnkulkua
640 640 text_are_you_sure: Oletko varma?
641 641 text_tip_issue_begin_day: tehtävä joka alkaa tänä päivänä
642 642 text_tip_issue_end_day: tehtävä joka loppuu tänä päivänä
643 643 text_tip_issue_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
644 644 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
645 645 text_caracters_maximum: "%{count} merkkiä enintään."
646 646 text_caracters_minimum: "Täytyy olla vähintään %{count} merkkiä pitkä."
647 647 text_length_between: "Pituus välillä %{min} ja %{max} merkkiä."
648 648 text_tracker_no_workflow: Työnkulkua ei määritelty tälle tapahtumalle
649 649 text_unallowed_characters: Kiellettyjä merkkejä
650 650 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
651 651 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
652 652 text_issue_added: "Issue %{id} has been reported by %{author}."
653 653 text_issue_updated: "Issue %{id} has been updated by %{author}."
654 654 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
655 655 text_issue_category_destroy_question: "Jotkut tapahtumat (%{count}) ovat nimetty tälle luokalle. Mitä haluat tehdä?"
656 656 text_issue_category_destroy_assignments: Poista luokan tehtävät
657 657 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
658 658 text_user_mail_option: "Valitsemattomille projekteille, saat vain muistutuksen asioista joita seuraat tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
659 659 text_no_configuration_data: "Rooleja, tapahtumien tiloja ja työnkulkua ei vielä olla määritelty.\nOn erittäin suotavaa ladata vakioasetukset. Voit muuttaa sitä latauksen jälkeen."
660 660 text_load_default_configuration: Lataa vakioasetukset
661 661
662 662 default_role_manager: Päälikkö
663 663 default_role_developer: Kehittäjä
664 664 default_role_reporter: Tarkastelija
665 665 default_tracker_bug: Ohjelmointivirhe
666 666 default_tracker_feature: Ominaisuus
667 667 default_tracker_support: Tuki
668 668 default_issue_status_new: Uusi
669 669 default_issue_status_in_progress: In Progress
670 670 default_issue_status_resolved: Hyväksytty
671 671 default_issue_status_feedback: Palaute
672 672 default_issue_status_closed: Suljettu
673 673 default_issue_status_rejected: Hylätty
674 674 default_doc_category_user: Käyttäjä dokumentaatio
675 675 default_doc_category_tech: Tekninen dokumentaatio
676 676 default_priority_low: Matala
677 677 default_priority_normal: Normaali
678 678 default_priority_high: Korkea
679 679 default_priority_urgent: Kiireellinen
680 680 default_priority_immediate: Valitön
681 681 default_activity_design: Suunnittelu
682 682 default_activity_development: Kehitys
683 683
684 684 enumeration_issue_priorities: Tapahtuman tärkeysjärjestys
685 685 enumeration_doc_categories: Dokumentin luokat
686 686 enumeration_activities: Historia (ajan seuranta)
687 687 label_associated_revisions: Liittyvät versiot
688 688 setting_user_format: Käyttäjien esitysmuoto
689 689 text_status_changed_by_changeset: "Päivitetty muutosversioon %{value}."
690 690 text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?'
691 691 label_more: Lisää
692 692 label_issue_added: Tapahtuma lisätty
693 693 label_issue_updated: Tapahtuma päivitetty
694 694 label_document_added: Dokumentti lisätty
695 695 label_message_posted: Viesti lisätty
696 696 label_file_added: Tiedosto lisätty
697 697 label_scm: SCM
698 698 text_select_project_modules: 'Valitse modulit jotka haluat käyttöön tähän projektiin:'
699 699 label_news_added: Uutinen lisätty
700 700 project_module_boards: Keskustelupalsta
701 701 project_module_issue_tracking: Tapahtuman seuranta
702 702 project_module_wiki: Wiki
703 703 project_module_files: Tiedostot
704 704 project_module_documents: Dokumentit
705 705 project_module_repository: Tietovarasto
706 706 project_module_news: Uutiset
707 707 project_module_time_tracking: Ajan seuranta
708 708 text_file_repository_writable: Kirjoitettava tiedostovarasto
709 709 text_default_administrator_account_changed: Vakio hallinoijan tunnus muutettu
710 710 text_rmagick_available: RMagick saatavilla (valinnainen)
711 711 button_configure: Asetukset
712 712 label_plugins: Lisäosat
713 713 label_ldap_authentication: LDAP tunnistautuminen
714 714 label_downloads_abbr: D/L
715 715 label_add_another_file: Lisää uusi tiedosto
716 716 label_this_month: tässä kuussa
717 717 text_destroy_time_entries_question: "%{hours} tuntia on raportoitu tapahtumasta jonka aiot poistaa. Mitä haluat tehdä ?"
718 718 label_last_n_days: "viimeiset %{count} päivää"
719 719 label_all_time: koko ajalta
720 720 error_issue_not_found_in_project: 'Tapahtumaa ei löytynyt tai se ei kuulu tähän projektiin'
721 721 label_this_year: tänä vuonna
722 722 text_assign_time_entries_to_project: Määritä tunnit projektille
723 723 label_date_range: Aikaväli
724 724 label_last_week: viime viikolla
725 725 label_yesterday: eilen
726 726 label_optional_description: Lisäkuvaus
727 727 label_last_month: viime kuussa
728 728 text_destroy_time_entries: Poista raportoidut tunnit
729 729 text_reassign_time_entries: 'Siirrä raportoidut tunnit tälle tapahtumalle:'
730 730 label_chronological_order: Aikajärjestyksessä
731 731 label_date_to: ''
732 732 setting_activity_days_default: Päivien esittäminen projektien historiassa
733 733 label_date_from: ''
734 734 label_in: ''
735 735 setting_display_subprojects_issues: Näytä aliprojektien tapahtumat pääprojektissa oletusarvoisesti
736 736 field_comments_sorting: Näytä kommentit
737 737 label_reverse_chronological_order: Käänteisessä aikajärjestyksessä
738 738 label_preferences: Asetukset
739 739 setting_default_projects_public: Uudet projektit ovat oletuksena julkisia
740 740 label_overall_activity: Kokonaishistoria
741 741 error_scm_annotate: "Merkintää ei ole tai siihen ei voi lisätä selityksiä."
742 742 label_planning: Suunnittelu
743 743 text_subprojects_destroy_warning: "Tämän aliprojekti(t): %{value} tullaan myös poistamaan."
744 744 label_and_its_subprojects: "%{value} ja aliprojektit"
745 745 mail_body_reminder: "%{count} sinulle nimettyä tapahtuma(a) erääntyy %{days} päivä sisään:"
746 746 mail_subject_reminder: "%{count} tapahtuma(a) erääntyy %{days} lähipäivinä"
747 747 text_user_wrote: "%{value} kirjoitti:"
748 748 label_duplicated_by: kopioinut
749 749 setting_enabled_scm: Versionhallinta käytettävissä
750 750 text_enumeration_category_reassign_to: 'Siirrä täksi arvoksi:'
751 751 text_enumeration_destroy_question: "%{count} kohdetta on sijoitettu tälle arvolle."
752 752 label_incoming_emails: Saapuvat sähköpostiviestit
753 753 label_generate_key: Luo avain
754 754 setting_mail_handler_api_enabled: Ota käyttöön WS saapuville sähköposteille
755 755 setting_mail_handler_api_key: API avain
756 756 text_email_delivery_not_configured: "Sähköpostin jakelu ei ole määritelty ja sähköpostimuistutukset eivät ole käytössä.\nKonfiguroi sähköpostipalvelinasetukset (SMTP) config/configuration.yml tiedostosta ja uudelleenkäynnistä sovellus jotta asetukset astuvat voimaan."
757 757 field_parent_title: Aloitussivu
758 758 label_issue_watchers: Tapahtuman seuraajat
759 759 button_quote: Vastaa
760 760 setting_sequential_project_identifiers: Luo peräkkäiset projektien tunnisteet
761 761 setting_commit_logs_encoding: Tee viestien koodaus
762 762 notice_unable_delete_version: Version poisto epäonnistui
763 763 label_renamed: uudelleennimetty
764 764 label_copied: kopioitu
765 765 setting_plain_text_mail: vain muotoilematonta tekstiä (ei HTML)
766 766 permission_view_files: Näytä tiedostot
767 767 permission_edit_issues: Muokkaa tapahtumia
768 768 permission_edit_own_time_entries: Muokka omia aikamerkintöjä
769 769 permission_manage_public_queries: Hallinnoi julkisia hakuja
770 770 permission_add_issues: Lisää tapahtumia
771 771 permission_log_time: Lokita käytettyä aikaa
772 772 permission_view_changesets: Näytä muutosryhmät
773 773 permission_view_time_entries: Näytä käytetty aika
774 774 permission_manage_versions: Hallinnoi versioita
775 775 permission_manage_wiki: Hallinnoi wikiä
776 776 permission_manage_categories: Hallinnoi tapahtumien luokkia
777 777 permission_protect_wiki_pages: Suojaa wiki sivut
778 778 permission_comment_news: Kommentoi uutisia
779 779 permission_delete_messages: Poista viestit
780 780 permission_select_project_modules: Valitse projektin modulit
781 781 permission_manage_documents: Hallinnoi dokumentteja
782 782 permission_edit_wiki_pages: Muokkaa wiki sivuja
783 783 permission_add_issue_watchers: Lisää seuraajia
784 784 permission_view_gantt: Näytä gantt kaavio
785 785 permission_move_issues: Siirrä tapahtuma
786 786 permission_manage_issue_relations: Hallinoi tapahtuman suhteita
787 787 permission_delete_wiki_pages: Poista wiki sivuja
788 788 permission_manage_boards: Hallinnoi keskustelupalstaa
789 789 permission_delete_wiki_pages_attachments: Poista liitteitä
790 790 permission_view_wiki_edits: Näytä wiki historia
791 791 permission_add_messages: Jätä viesti
792 792 permission_view_messages: Näytä viestejä
793 793 permission_manage_files: Hallinnoi tiedostoja
794 794 permission_edit_issue_notes: Muokkaa muistiinpanoja
795 795 permission_manage_news: Hallinnoi uutisia
796 796 permission_view_calendar: Näytä kalenteri
797 797 permission_manage_members: Hallinnoi jäseniä
798 798 permission_edit_messages: Muokkaa viestejä
799 799 permission_delete_issues: Poista tapahtumia
800 800 permission_view_issue_watchers: Näytä seuraaja lista
801 801 permission_manage_repository: Hallinnoi tietovarastoa
802 802 permission_commit_access: Tee pääsyoikeus
803 803 permission_browse_repository: Selaa tietovarastoa
804 804 permission_view_documents: Näytä dokumentit
805 805 permission_edit_project: Muokkaa projektia
806 806 permission_add_issue_notes: Lisää muistiinpanoja
807 807 permission_save_queries: Tallenna hakuja
808 808 permission_view_wiki_pages: Näytä wiki
809 809 permission_rename_wiki_pages: Uudelleennimeä wiki sivuja
810 810 permission_edit_time_entries: Muokkaa aika lokeja
811 811 permission_edit_own_issue_notes: Muokkaa omia muistiinpanoja
812 812 setting_gravatar_enabled: Käytä Gravatar käyttäjä ikoneita
813 813 label_example: Esimerkki
814 814 text_repository_usernames_mapping: "Valitse päivittääksesi Redmine käyttäjä jokaiseen käyttäjään joka löytyy tietovaraston lokista.\nKäyttäjät joilla on sama Redmine ja tietovaraston käyttäjänimi tai sähköpostiosoite, yhdistetään automaattisesti."
815 815 permission_edit_own_messages: Muokkaa omia viestejä
816 816 permission_delete_own_messages: Poista omia viestejä
817 817 label_user_activity: "Käyttäjän %{value} historia"
818 818 label_updated_time_by: "Updated by %{author} %{age} ago"
819 819 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
820 820 setting_diff_max_lines_displayed: Max number of diff lines displayed
821 821 text_plugin_assets_writable: Plugin assets directory writable
822 822 warning_attachments_not_saved: "%{count} file(s) could not be saved."
823 823 button_create_and_continue: Create and continue
824 824 text_custom_field_possible_values_info: 'One line for each value'
825 825 label_display: Display
826 826 field_editable: Editable
827 827 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
828 828 setting_file_max_size_displayed: Max size of text files displayed inline
829 829 field_watcher: Watcher
830 830 setting_openid: Allow OpenID login and registration
831 831 field_identity_url: OpenID URL
832 832 label_login_with_open_id_option: or login with OpenID
833 833 field_content: Content
834 834 label_descending: Descending
835 835 label_sort: Sort
836 836 label_ascending: Ascending
837 837 label_date_from_to: From %{start} to %{end}
838 838 label_greater_or_equal: ">="
839 839 label_less_or_equal: <=
840 840 text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do?
841 841 text_wiki_page_reassign_children: Reassign child pages to this parent page
842 842 text_wiki_page_nullify_children: Keep child pages as root pages
843 843 text_wiki_page_destroy_children: Delete child pages and all their descendants
844 844 setting_password_min_length: Minimum password length
845 845 field_group_by: Group results by
846 846 mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
847 847 label_wiki_content_added: Wiki page added
848 848 mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
849 849 mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}.
850 850 label_wiki_content_updated: Wiki page updated
851 851 mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}.
852 852 permission_add_project: Create project
853 853 setting_new_project_user_role_id: Role given to a non-admin user who creates a project
854 854 label_view_all_revisions: View all revisions
855 855 label_tag: Tag
856 856 label_branch: Branch
857 857 error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings.
858 858 error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").
859 859 text_journal_changed: "%{label} changed from %{old} to %{new}"
860 860 text_journal_set_to: "%{label} set to %{value}"
861 861 text_journal_deleted: "%{label} deleted (%{old})"
862 862 label_group_plural: Groups
863 863 label_group: Group
864 864 label_group_new: New group
865 865 label_time_entry_plural: Spent time
866 866 text_journal_added: "%{label} %{value} added"
867 867 field_active: Active
868 868 enumeration_system_activity: System Activity
869 869 permission_delete_issue_watchers: Delete watchers
870 870 version_status_closed: closed
871 871 version_status_locked: locked
872 872 version_status_open: open
873 873 error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened
874 874 label_user_anonymous: Anonymous
875 875 button_move_and_follow: Move and follow
876 876 setting_default_projects_modules: Default enabled modules for new projects
877 877 setting_gravatar_default: Default Gravatar image
878 878 field_sharing: Sharing
879 879 label_version_sharing_hierarchy: With project hierarchy
880 880 label_version_sharing_system: With all projects
881 881 label_version_sharing_descendants: With subprojects
882 882 label_version_sharing_tree: With project tree
883 883 label_version_sharing_none: Not shared
884 884 error_can_not_archive_project: This project can not be archived
885 885 button_duplicate: Duplicate
886 886 button_copy_and_follow: Copy and follow
887 887 label_copy_source: Source
888 888 setting_issue_done_ratio: Calculate the issue done ratio with
889 889 setting_issue_done_ratio_issue_status: Use the issue status
890 890 error_issue_done_ratios_not_updated: Issue done ratios not updated.
891 891 error_workflow_copy_target: Please select target tracker(s) and role(s)
892 892 setting_issue_done_ratio_issue_field: Use the issue field
893 893 label_copy_same_as_target: Same as target
894 894 label_copy_target: Target
895 895 notice_issue_done_ratios_updated: Issue done ratios updated.
896 896 error_workflow_copy_source: Please select a source tracker or role
897 897 label_update_issue_done_ratios: Update issue done ratios
898 898 setting_start_of_week: Start calendars on
899 899 permission_view_issues: View Issues
900 900 label_display_used_statuses_only: Only display statuses that are used by this tracker
901 901 label_revision_id: Revision %{value}
902 902 label_api_access_key: API access key
903 903 label_api_access_key_created_on: API access key created %{value} ago
904 904 label_feeds_access_key: RSS access key
905 905 notice_api_access_key_reseted: Your API access key was reset.
906 906 setting_rest_api_enabled: Enable REST web service
907 907 label_missing_api_access_key: Missing an API access key
908 908 label_missing_feeds_access_key: Missing a RSS access key
909 909 button_show: Show
910 910 text_line_separated: Multiple values allowed (one line for each value).
911 911 setting_mail_handler_body_delimiters: Truncate emails after one of these lines
912 912 permission_add_subprojects: Create subprojects
913 913 label_subproject_new: New subproject
914 914 text_own_membership_delete_confirmation: |-
915 915 You are about to remove some or all of your permissions and may no longer be able to edit this project after that.
916 916 Are you sure you want to continue?
917 917 label_close_versions: Close completed versions
918 918 label_board_sticky: Sticky
919 919 label_board_locked: Locked
920 920 permission_export_wiki_pages: Export wiki pages
921 921 setting_cache_formatted_text: Cache formatted text
922 922 permission_manage_project_activities: Manage project activities
923 923 error_unable_delete_issue_status: Unable to delete issue status
924 924 label_profile: Profile
925 925 permission_manage_subtasks: Manage subtasks
926 926 field_parent_issue: Parent task
927 927 label_subtask_plural: Subtasks
928 928 label_project_copy_notifications: Send email notifications during the project copy
929 929 error_can_not_delete_custom_field: Unable to delete custom field
930 930 error_unable_to_connect: Unable to connect (%{value})
931 931 error_can_not_remove_role: This role is in use and can not be deleted.
932 932 error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
933 933 field_principal: Principal
934 934 label_my_page_block: My page block
935 935 notice_failed_to_save_members: "Failed to save member(s): %{errors}."
936 936 text_zoom_out: Zoom out
937 937 text_zoom_in: Zoom in
938 938 notice_unable_delete_time_entry: Unable to delete time log entry.
939 939 label_overall_spent_time: Overall spent time
940 940 field_time_entries: Log time
941 941 project_module_gantt: Gantt
942 942 project_module_calendar: Calendar
943 943 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
944 944 text_are_you_sure_with_children: Delete issue and all child issues?
945 945 field_text: Text field
946 946 label_user_mail_option_only_owner: Only for things I am the owner of
947 947 setting_default_notification_option: Default notification option
948 948 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
949 949 label_user_mail_option_only_assigned: Only for things I am assigned to
950 950 label_user_mail_option_none: No events
951 951 field_member_of_group: Assignee's group
952 952 field_assigned_to_role: Assignee's role
953 953 notice_not_authorized_archived_project: The project you're trying to access has been archived.
954 954 label_principal_search: "Search for user or group:"
955 955 label_user_search: "Search for user:"
956 956 field_visible: Visible
957 957 setting_emails_header: Emails header
958 958 setting_commit_logtime_activity_id: Activity for logged time
959 959 text_time_logged_by_changeset: Applied in changeset %{value}.
960 960 setting_commit_logtime_enabled: Enable time logging
961 961 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
962 962 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
963 963 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
964 964 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
965 965 label_my_queries: My custom queries
966 966 text_journal_changed_no_detail: "%{label} updated"
967 967 label_news_comment_added: Comment added to a news
968 968 button_expand_all: Expand all
969 969 button_collapse_all: Collapse all
970 970 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
971 971 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
972 972 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
973 973 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
974 974 label_role_anonymous: Anonymous
975 975 label_role_non_member: Non member
976 976 label_issue_note_added: Note added
977 977 label_issue_status_updated: Status updated
978 978 label_issue_priority_updated: Priority updated
979 979 label_issues_visibility_own: Issues created by or assigned to the user
980 980 field_issues_visibility: Issues visibility
981 981 label_issues_visibility_all: All issues
982 982 permission_set_own_issues_private: Set own issues public or private
983 983 field_is_private: Private
984 984 permission_set_issues_private: Set issues public or private
985 985 label_issues_visibility_public: All non private issues
986 986 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
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