##// END OF EJS Templates
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
Jean-Philippe Lang -
r2430:fe28193e4eb9
parent child
Show More

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

This diff has been collapsed as it changes many lines, (826 lines changed) Show them Hide them
@@ -0,0 +1,826
1 # Spanish translations for Rails
2 # by Francisco Fernando García Nieto (ffgarcianieto@gmail.com)
3
4 es:
5 number:
6 # Used in number_with_delimiter()
7 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
8 format:
9 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
10 separator: ","
11 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
12 delimiter: "."
13 # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
14 precision: 3
15
16 # Used in number_to_currency()
17 currency:
18 format:
19 # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
20 format: "%n %u"
21 unit: "€"
22 # These three are to override number.format and are optional
23 separator: ","
24 delimiter: "."
25 precision: 2
26
27 # Used in number_to_percentage()
28 percentage:
29 format:
30 # These three are to override number.format and are optional
31 # separator:
32 delimiter: ""
33 # precision:
34
35 # Used in number_to_precision()
36 precision:
37 format:
38 # These three are to override number.format and are optional
39 # separator:
40 delimiter: ""
41 # precision:
42
43 # Used in number_to_human_size()
44 human:
45 format:
46 # These three are to override number.format and are optional
47 # separator:
48 delimiter: ""
49 precision: 1
50
51 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
52 datetime:
53 distance_in_words:
54 half_a_minute: "medio minuto"
55 less_than_x_seconds:
56 one: "menos de 1 segundo"
57 other: "menos de {{count}} segundos"
58 x_seconds:
59 one: "1 segundo"
60 other: "{{count}} segundos"
61 less_than_x_minutes:
62 one: "menos de 1 minuto"
63 other: "menos de {{count}} minutos"
64 x_minutes:
65 one: "1 minuto"
66 other: "{{count}} minutos"
67 about_x_hours:
68 one: "alrededor de 1 hora"
69 other: "alrededor de {{count}} horas"
70 x_days:
71 one: "1 día"
72 other: "{{count}} días"
73 about_x_months:
74 one: "alrededor de 1 mes"
75 other: "alrededor de {{count}} meses"
76 x_months:
77 one: "1 mes"
78 other: "{{count}} meses"
79 about_x_years:
80 one: "alrededor de 1 año"
81 other: "alrededor de {{count}} años"
82 over_x_years:
83 one: "más de 1 año"
84 other: "más de {{count}} años"
85
86 activerecord:
87 errors:
88 template:
89 header:
90 one: "no se pudo guardar este {{model}} porque se encontró 1 error"
91 other: "no se pudo guardar este {{model}} porque se encontraron {{count}} errores"
92 # The variable :count is also available
93 body: "Se encontraron problemas con los siguientes campos:"
94
95 # The values :model, :attribute and :value are always available for interpolation
96 # The value :count is available when applicable. Can be used for pluralization.
97 messages:
98 inclusion: "no está incluido en la lista"
99 exclusion: "está reservado"
100 invalid: "no es válido"
101 confirmation: "no coincide con la confirmación"
102 accepted: "debe ser aceptado"
103 empty: "no puede estar vacío"
104 blank: "no puede estar en blanco"
105 too_long: "es demasiado largo ({{count}} caracteres máximo)"
106 too_short: "es demasiado corto ({{count}} caracteres mínimo)"
107 wrong_length: "no tiene la longitud correcta ({{count}} caracteres exactos)"
108 taken: "ya está en uso"
109 not_a_number: "no es un número"
110 greater_than: "debe ser mayor que {{count}}"
111 greater_than_or_equal_to: "debe ser mayor que o igual a {{count}}"
112 equal_to: "debe ser igual a {{count}}"
113 less_than: "debe ser menor que {{count}}"
114 less_than_or_equal_to: "debe ser menor que o igual a {{count}}"
115 odd: "debe ser impar"
116 even: "debe ser par"
117 greater_than_start_date: "debe ser posterior a la fecha de comienzo"
118 not_same_project: "no pertenece al mismo proyecto"
119 circular_dependency: "Esta relación podría crear una dependencia circular"
120
121 # Append your own errors here or at the model/attributes scope.
122
123 models:
124 # Overrides default messages
125
126 attributes:
127 # Overrides model and default messages.
128
129 date:
130 formats:
131 # Use the strftime parameters for formats.
132 # When no format has been given, it uses default.
133 # You can provide other formats here if you like!
134 default: "%Y-%m-%d"
135 short: "%d de %b"
136 long: "%d de %B de %Y"
137
138 day_names: [Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado]
139 abbr_day_names: [Dom, Lun, Mar, Mie, Jue, Vie, Sab]
140
141 # Don't forget the nil at the beginning; there's no such thing as a 0th month
142 month_names: [~, Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Setiembre, Octubre, Noviembre, Diciembre]
143 abbr_month_names: [~, Ene, Feb, Mar, Abr, May, Jun, Jul, Ago, Set, Oct, Nov, Dic]
144 # Used in date_select and datime_select.
145 order: [ :year, :month, :day ]
146
147 time:
148 formats:
149 default: "%A, %d de %B de %Y %H:%M:%S %z"
150 short: "%d de %b %H:%M"
151 long: "%d de %B de %Y %H:%M"
152 am: "am"
153 pm: "pm"
154
155 # Used in array.to_sentence.
156 support:
157 array:
158 sentence_connector: "y"
159
160 actionview_instancetag_blank_option: Por favor seleccione
161
162 button_activate: Activar
163 button_add: Añadir
164 button_annotate: Anotar
165 button_apply: Aceptar
166 button_archive: Archivar
167 button_back: Atrás
168 button_cancel: Cancelar
169 button_change: Cambiar
170 button_change_password: Cambiar contraseña
171 button_check_all: Seleccionar todo
172 button_clear: Anular
173 button_configure: Configurar
174 button_copy: Copiar
175 button_create: Crear
176 button_delete: Borrar
177 button_download: Descargar
178 button_edit: Modificar
179 button_list: Listar
180 button_lock: Bloquear
181 button_log_time: Tiempo dedicado
182 button_login: Conexión
183 button_move: Mover
184 button_quote: Citar
185 button_rename: Renombrar
186 button_reply: Responder
187 button_reset: Reestablecer
188 button_rollback: Volver a esta versión
189 button_save: Guardar
190 button_sort: Ordenar
191 button_submit: Aceptar
192 button_test: Probar
193 button_unarchive: Desarchivar
194 button_uncheck_all: No seleccionar nada
195 button_unlock: Desbloquear
196 button_unwatch: No monitorizar
197 button_update: Actualizar
198 button_view: Ver
199 button_watch: Monitorizar
200 default_activity_design: Diseño
201 default_activity_development: Desarrollo
202 default_doc_category_tech: Documentación técnica
203 default_doc_category_user: Documentación de usuario
204 default_issue_status_assigned: Asignada
205 default_issue_status_closed: Cerrada
206 default_issue_status_feedback: Comentarios
207 default_issue_status_new: Nueva
208 default_issue_status_rejected: Rechazada
209 default_issue_status_resolved: Resuelta
210 default_priority_high: Alta
211 default_priority_immediate: Inmediata
212 default_priority_low: Baja
213 default_priority_normal: Normal
214 default_priority_urgent: Urgente
215 default_role_developper: Desarrollador
216 default_role_manager: Jefe de proyecto
217 default_role_reporter: Informador
218 default_tracker_bug: Errores
219 default_tracker_feature: Tareas
220 default_tracker_support: Soporte
221 enumeration_activities: Actividades (tiempo dedicado)
222 enumeration_doc_categories: Categorías del documento
223 enumeration_issue_priorities: Prioridad de las peticiones
224 error_can_t_load_default_data: "No se ha podido cargar la configuración por defecto: {{value}}"
225 error_issue_not_found_in_project: 'La petición no se encuentra o no está asociada a este proyecto'
226 error_scm_annotate: "No existe la entrada o no ha podido ser anotada"
227 error_scm_command_failed: "Se produjo un error al acceder al repositorio: {{value}}"
228 error_scm_not_found: "La entrada y/o la revisión no existe en el repositorio."
229 field_account: Cuenta
230 field_activity: Actividad
231 field_admin: Administrador
232 field_assignable: Se pueden asignar peticiones a este perfil
233 field_assigned_to: Asignado a
234 field_attr_firstname: Cualidad del nombre
235 field_attr_lastname: Cualidad del apellido
236 field_attr_login: Cualidad del identificador
237 field_attr_mail: Cualidad del Email
238 field_auth_source: Modo de identificación
239 field_author: Autor
240 field_base_dn: DN base
241 field_category: Categoría
242 field_column_names: Columnas
243 field_comments: Comentario
244 field_comments_sorting: Mostrar comentarios
245 field_created_on: Creado
246 field_default_value: Estado por defecto
247 field_delay: Retraso
248 field_description: Descripción
249 field_done_ratio: %% Realizado
250 field_downloads: Descargas
251 field_due_date: Fecha fin
252 field_effective_date: Fecha
253 field_estimated_hours: Tiempo estimado
254 field_field_format: Formato
255 field_filename: Fichero
256 field_filesize: Tamaño
257 field_firstname: Nombre
258 field_fixed_version: Versión prevista
259 field_hide_mail: Ocultar mi dirección de correo
260 field_homepage: Sitio web
261 field_host: Anfitrión
262 field_hours: Horas
263 field_identifier: Identificador
264 field_is_closed: Petición resuelta
265 field_is_default: Estado por defecto
266 field_is_filter: Usado como filtro
267 field_is_for_all: Para todos los proyectos
268 field_is_in_chlog: Consultar las peticiones en el histórico
269 field_is_in_roadmap: Consultar las peticiones en la planificación
270 field_is_public: Público
271 field_is_required: Obligatorio
272 field_issue: Petición
273 field_issue_to_id: Petición relacionada
274 field_language: Idioma
275 field_last_login_on: Última conexión
276 field_lastname: Apellido
277 field_login: Identificador
278 field_mail: Correo electrónico
279 field_mail_notification: Notificaciones por correo
280 field_max_length: Longitud máxima
281 field_min_length: Longitud mínima
282 field_name: Nombre
283 field_new_password: Nueva contraseña
284 field_notes: Notas
285 field_onthefly: Creación del usuario "al vuelo"
286 field_parent: Proyecto padre
287 field_parent_title: Página padre
288 field_password: Contraseña
289 field_password_confirmation: Confirmación
290 field_port: Puerto
291 field_possible_values: Valores posibles
292 field_priority: Prioridad
293 field_project: Proyecto
294 field_redirect_existing_links: Redireccionar enlaces existentes
295 field_regexp: Expresión regular
296 field_role: Perfil
297 field_searchable: Incluir en las búsquedas
298 field_spent_on: Fecha
299 field_start_date: Fecha de inicio
300 field_start_page: Página principal
301 field_status: Estado
302 field_subject: Tema
303 field_subproject: Proyecto secundario
304 field_summary: Resumen
305 field_time_zone: Zona horaria
306 field_title: Título
307 field_tracker: Tipo
308 field_type: Tipo
309 field_updated_on: Actualizado
310 field_url: URL
311 field_user: Usuario
312 field_value: Valor
313 field_version: Versión
314 general_csv_decimal_separator: ','
315 general_csv_encoding: ISO-8859-15
316 general_csv_separator: ';'
317 general_first_day_of_week: '1'
318 general_lang_name: 'Español'
319 general_pdf_encoding: ISO-8859-15
320 general_text_No: 'No'
321 general_text_Yes: 'Sí'
322 general_text_no: 'no'
323 general_text_yes: 'sí'
324 gui_validation_error: 1 error
325 gui_validation_error_plural: "{{count}} errores"
326 label_activity: Actividad
327 label_add_another_file: Añadir otro fichero
328 label_add_note: Añadir una nota
329 label_added: añadido
330 label_added_time_by: "Añadido por {{author}} hace {{age}}"
331 label_administration: Administración
332 label_age: Edad
333 label_ago: hace
334 label_all: todos
335 label_all_time: todo el tiempo
336 label_all_words: Todas las palabras
337 label_and_its_subprojects: "{{value}} y proyectos secundarios"
338 label_applied_status: Aplicar estado
339 label_assigned_to_me_issues: Peticiones que me están asignadas
340 label_associated_revisions: Revisiones asociadas
341 label_attachment: Fichero
342 label_attachment_delete: Borrar el fichero
343 label_attachment_new: Nuevo fichero
344 label_attachment_plural: Ficheros
345 label_attribute: Cualidad
346 label_attribute_plural: Cualidades
347 label_auth_source: Modo de autenticación
348 label_auth_source_new: Nuevo modo de autenticación
349 label_auth_source_plural: Modos de autenticación
350 label_authentication: Autenticación
351 label_blocked_by: bloqueado por
352 label_blocks: bloquea a
353 label_board: Foro
354 label_board_new: Nuevo foro
355 label_board_plural: Foros
356 label_boolean: Booleano
357 label_browse: Hojear
358 label_bulk_edit_selected_issues: Editar las peticiones seleccionadas
359 label_calendar: Calendario
360 label_change_log: Cambios
361 label_change_plural: Cambios
362 label_change_properties: Cambiar propiedades
363 label_change_status: Cambiar el estado
364 label_change_view_all: Ver todos los cambios
365 label_changes_details: Detalles de todos los cambios
366 label_changeset_plural: Cambios
367 label_chronological_order: En orden cronológico
368 label_closed_issues: cerrada
369 label_closed_issues_plural: cerradas
370 label_x_open_issues_abbr_on_total:
371 zero: 0 open / {{total}}
372 one: 1 open / {{total}}
373 other: "{{count}} open / {{total}}"
374 label_x_open_issues_abbr:
375 zero: 0 open
376 one: 1 open
377 other: "{{count}} open"
378 label_x_closed_issues_abbr:
379 zero: 0 closed
380 one: 1 closed
381 other: "{{count}} closed"
382 label_comment: Comentario
383 label_comment_add: Añadir un comentario
384 label_comment_added: Comentario añadido
385 label_comment_delete: Borrar comentarios
386 label_comment_plural: Comentarios
387 label_x_comments:
388 zero: no comments
389 one: 1 comment
390 other: "{{count}} comments"
391 label_commits_per_author: Commits por autor
392 label_commits_per_month: Commits por mes
393 label_confirmation: Confirmación
394 label_contains: contiene
395 label_copied: copiado
396 label_copy_workflow_from: Copiar flujo de trabajo desde
397 label_current_status: Estado actual
398 label_current_version: Versión actual
399 label_custom_field: Campo personalizado
400 label_custom_field_new: Nuevo campo personalizado
401 label_custom_field_plural: Campos personalizados
402 label_date: Fecha
403 label_date_from: Desde
404 label_date_range: Rango de fechas
405 label_date_to: Hasta
406 label_day_plural: días
407 label_default: Por defecto
408 label_default_columns: Columnas por defecto
409 label_deleted: suprimido
410 label_details: Detalles
411 label_diff_inline: en línea
412 label_diff_side_by_side: cara a cara
413 label_disabled: deshabilitado
414 label_display_per_page: "Por página: {{value}}'"
415 label_document: Documento
416 label_document_added: Documento añadido
417 label_document_new: Nuevo documento
418 label_document_plural: Documentos
419 label_download: "{{count}} Descarga"
420 label_download_plural: "{{count}} Descargas"
421 label_downloads_abbr: D/L
422 label_duplicated_by: duplicada por
423 label_duplicates: duplicada de
424 label_end_to_end: fin a fin
425 label_end_to_start: fin a principio
426 label_enumeration_new: Nuevo valor
427 label_enumerations: Listas de valores
428 label_environment: Entorno
429 label_equals: igual
430 label_example: Ejemplo
431 label_export_to: 'Exportar a:'
432 label_f_hour: "{{value}} hora"
433 label_f_hour_plural: "{{value}} horas"
434 label_feed_plural: Feeds
435 label_feeds_access_key_created_on: "Clave de acceso por RSS creada hace {{value}}"
436 label_file_added: Fichero añadido
437 label_file_plural: Archivos
438 label_filter_add: Añadir el filtro
439 label_filter_plural: Filtros
440 label_float: Flotante
441 label_follows: posterior a
442 label_gantt: Gantt
443 label_general: General
444 label_generate_key: Generar clave
445 label_help: Ayuda
446 label_history: Histórico
447 label_home: Inicio
448 label_in: en
449 label_in_less_than: en menos que
450 label_in_more_than: en más que
451 label_incoming_emails: Correos entrantes
452 label_index_by_date: Índice por fecha
453 label_index_by_title: Índice por título
454 label_information: Información
455 label_information_plural: Información
456 label_integer: Número
457 label_internal: Interno
458 label_issue: Petición
459 label_issue_added: Petición añadida
460 label_issue_category: Categoría de las peticiones
461 label_issue_category_new: Nueva categoría
462 label_issue_category_plural: Categorías de las peticiones
463 label_issue_new: Nueva petición
464 label_issue_plural: Peticiones
465 label_issue_status: Estado de la petición
466 label_issue_status_new: Nuevo estado
467 label_issue_status_plural: Estados de las peticiones
468 label_issue_tracking: Peticiones
469 label_issue_updated: Petición actualizada
470 label_issue_view_all: Ver todas las peticiones
471 label_issue_watchers: Seguidores
472 label_issues_by: "Peticiones por {{value}}"
473 label_jump_to_a_project: Ir al proyecto...
474 label_language_based: Basado en el idioma
475 label_last_changes: "últimos {{count}} cambios"
476 label_last_login: Última conexión
477 label_last_month: último mes
478 label_last_n_days: "últimos {{count}} días"
479 label_last_week: última semana
480 label_latest_revision: Última revisión
481 label_latest_revision_plural: Últimas revisiones
482 label_ldap_authentication: Autenticación LDAP
483 label_less_than_ago: hace menos de
484 label_list: Lista
485 label_loading: Cargando...
486 label_logged_as: Conectado como
487 label_login: Conexión
488 label_logout: Desconexión
489 label_max_size: Tamaño máximo
490 label_me: yo mismo
491 label_member: Miembro
492 label_member_new: Nuevo miembro
493 label_member_plural: Miembros
494 label_message_last: Último mensaje
495 label_message_new: Nuevo mensaje
496 label_message_plural: Mensajes
497 label_message_posted: Mensaje añadido
498 label_min_max_length: Longitud mín - máx
499 label_modification: "{{count}} modificación"
500 label_modification_plural: "{{count}} modificaciones"
501 label_modified: modificado
502 label_module_plural: Módulos
503 label_month: Mes
504 label_months_from: meses de
505 label_more: Más
506 label_more_than_ago: hace más de
507 label_my_account: Mi cuenta
508 label_my_page: Mi página
509 label_my_projects: Mis proyectos
510 label_new: Nuevo
511 label_new_statuses_allowed: Nuevos estados autorizados
512 label_news: Noticia
513 label_news_added: Noticia añadida
514 label_news_latest: Últimas noticias
515 label_news_new: Nueva noticia
516 label_news_plural: Noticias
517 label_news_view_all: Ver todas las noticias
518 label_next: Siguiente
519 label_no_change_option: (Sin cambios)
520 label_no_data: Ningún dato a mostrar
521 label_nobody: nadie
522 label_none: ninguno
523 label_not_contains: no contiene
524 label_not_equals: no igual
525 label_open_issues: abierta
526 label_open_issues_plural: abiertas
527 label_optional_description: Descripción opcional
528 label_options: Opciones
529 label_overall_activity: Actividad global
530 label_overview: Vistazo
531 label_password_lost: ¿Olvidaste la contraseña?
532 label_per_page: Por página
533 label_permissions: Permisos
534 label_permissions_report: Informe de permisos
535 label_personalize_page: Personalizar esta página
536 label_planning: Planificación
537 label_please_login: Conexión
538 label_plugins: Extensiones
539 label_precedes: anterior a
540 label_preferences: Preferencias
541 label_preview: Previsualizar
542 label_previous: Anterior
543 label_project: Proyecto
544 label_project_all: Todos los proyectos
545 label_project_latest: Últimos proyectos
546 label_project_new: Nuevo proyecto
547 label_project_plural: Proyectos
548 label_x_projects:
549 zero: no projects
550 one: 1 project
551 other: "{{count}} projects"
552 label_public_projects: Proyectos públicos
553 label_query: Consulta personalizada
554 label_query_new: Nueva consulta
555 label_query_plural: Consultas personalizadas
556 label_read: Leer...
557 label_register: Registrar
558 label_registered_on: Inscrito el
559 label_registration_activation_by_email: activación de cuenta por correo
560 label_registration_automatic_activation: activación automática de cuenta
561 label_registration_manual_activation: activación manual de cuenta
562 label_related_issues: Peticiones relacionadas
563 label_relates_to: relacionada con
564 label_relation_delete: Eliminar relación
565 label_relation_new: Nueva relación
566 label_renamed: renombrado
567 label_reply_plural: Respuestas
568 label_report: Informe
569 label_report_plural: Informes
570 label_reported_issues: Peticiones registradas por mí
571 label_repository: Repositorio
572 label_repository_plural: Repositorios
573 label_result_plural: Resultados
574 label_reverse_chronological_order: En orden cronológico inverso
575 label_revision: Revisión
576 label_revision_plural: Revisiones
577 label_roadmap: Planificación
578 label_roadmap_due_in: "Finaliza en {{value}}"
579 label_roadmap_no_issues: No hay peticiones para esta versión
580 label_roadmap_overdue: "{{value}} tarde"
581 label_role: Perfil
582 label_role_and_permissions: Perfiles y permisos
583 label_role_new: Nuevo perfil
584 label_role_plural: Perfiles
585 label_scm: SCM
586 label_search: Búsqueda
587 label_search_titles_only: Buscar sólo en títulos
588 label_send_information: Enviar información de la cuenta al usuario
589 label_send_test_email: Enviar un correo de prueba
590 label_settings: Configuración
591 label_show_completed_versions: Muestra las versiones terminadas
592 label_sort_by: "Ordenar por {{value}}"
593 label_sort_higher: Subir
594 label_sort_highest: Primero
595 label_sort_lower: Bajar
596 label_sort_lowest: Último
597 label_spent_time: Tiempo dedicado
598 label_start_to_end: principio a fin
599 label_start_to_start: principio a principio
600 label_statistics: Estadísticas
601 label_stay_logged_in: Recordar conexión
602 label_string: Texto
603 label_subproject_plural: Proyectos secundarios
604 label_text: Texto largo
605 label_theme: Tema
606 label_this_month: este mes
607 label_this_week: esta semana
608 label_this_year: este año
609 label_time_tracking: Control de tiempo
610 label_today: hoy
611 label_topic_plural: Temas
612 label_total: Total
613 label_tracker: Tipo
614 label_tracker_new: Nuevo tipo
615 label_tracker_plural: Tipos de peticiones
616 label_updated_time: "Actualizado hace {{value}}"
617 label_updated_time_by: "Actualizado por {{author}} hace {{age}}"
618 label_used_by: Utilizado por
619 label_user: Usuario
620 label_user_activity: "Actividad de {{value}}"
621 label_user_mail_no_self_notified: "No quiero ser avisado de cambios hechos por mí"
622 label_user_mail_option_all: "Para cualquier evento en todos mis proyectos"
623 label_user_mail_option_none: "Sólo para elementos monitorizados o relacionados conmigo"
624 label_user_mail_option_selected: "Para cualquier evento de los proyectos seleccionados..."
625 label_user_new: Nuevo usuario
626 label_user_plural: Usuarios
627 label_version: Versión
628 label_version_new: Nueva versión
629 label_version_plural: Versiones
630 label_view_diff: Ver diferencias
631 label_view_revisions: Ver las revisiones
632 label_watched_issues: Peticiones monitorizadas
633 label_week: Semana
634 label_wiki: Wiki
635 label_wiki_edit: Wiki edicción
636 label_wiki_edit_plural: Wiki edicciones
637 label_wiki_page: Wiki página
638 label_wiki_page_plural: Wiki páginas
639 label_workflow: Flujo de trabajo
640 label_year: Año
641 label_yesterday: ayer
642 mail_body_account_activation_request: "Se ha inscrito un nuevo usuario ({{value}}). La cuenta está pendiende de aprobación:'"
643 mail_body_account_information: Información sobre su cuenta
644 mail_body_account_information_external: "Puede usar su cuenta {{value}} para conectarse."
645 mail_body_lost_password: 'Para cambiar su contraseña, haga clic en el siguiente enlace:'
646 mail_body_register: 'Para activar su cuenta, haga clic en el siguiente enlace:'
647 mail_body_reminder: "{{count}} peticion(es) asignadas a finalizan en los próximos {{days}} días:"
648 mail_subject_account_activation_request: "Petición de activación de cuenta {{value}}"
649 mail_subject_lost_password: "Tu contraseña del {{value}}"
650 mail_subject_register: "Activación de la cuenta del {{value}}"
651 mail_subject_reminder: "{{count}} peticion(es) finalizan en los próximos días"
652 notice_account_activated: Su cuenta ha sido activada. Ya puede conectarse.
653 notice_account_invalid_creditentials: Usuario o contraseña inválido.
654 notice_account_lost_email_sent: Se le ha enviado un correo con instrucciones para elegir una nueva contraseña.
655 notice_account_password_updated: Contraseña modificada correctamente.
656 notice_account_pending: "Su cuenta ha sido creada y está pendiende de la aprobación por parte del administrador."
657 notice_account_register_done: Cuenta creada correctamente. Para activarla, haga clic sobre el enlace que le ha sido enviado por correo.
658 notice_account_unknown_email: Usuario desconocido.
659 notice_account_updated: Cuenta actualizada correctamente.
660 notice_account_wrong_password: Contraseña incorrecta.
661 notice_can_t_change_password: Esta cuenta utiliza una fuente de autenticación externa. No es posible cambiar la contraseña.
662 notice_default_data_loaded: Configuración por defecto cargada correctamente.
663 notice_email_error: "Ha ocurrido un error mientras enviando el correo ({{value}})"
664 notice_email_sent: "Se ha enviado un correo a {{value}}"
665 notice_failed_to_save_issues: "Imposible grabar %s peticion(es) en {{count}} seleccionado: {{value}}."
666 notice_feeds_access_key_reseted: Su clave de acceso para RSS ha sido reiniciada.
667 notice_file_not_found: La página a la que intenta acceder no existe.
668 notice_locking_conflict: Los datos han sido modificados por otro usuario.
669 notice_no_issue_selected: "Ninguna petición seleccionada. Por favor, compruebe la petición que quiere modificar"
670 notice_not_authorized: No tiene autorización para acceder a esta página.
671 notice_successful_connection: Conexión correcta.
672 notice_successful_create: Creación correcta.
673 notice_successful_delete: Borrado correcto.
674 notice_successful_update: Modificación correcta.
675 notice_unable_delete_version: No se puede borrar la versión
676 permission_add_issue_notes: Añadir notas
677 permission_add_issue_watchers: Añadir seguidores
678 permission_add_issues: Añadir peticiones
679 permission_add_messages: Enviar mensajes
680 permission_browse_repository: Hojear repositiorio
681 permission_comment_news: Comentar noticias
682 permission_commit_access: Acceso de escritura
683 permission_delete_issues: Borrar peticiones
684 permission_delete_messages: Borrar mensajes
685 permission_delete_own_messages: Borrar mensajes propios
686 permission_delete_wiki_pages: Borrar páginas wiki
687 permission_delete_wiki_pages_attachments: Borrar ficheros
688 permission_edit_issue_notes: Modificar notas
689 permission_edit_issues: Modificar peticiones
690 permission_edit_messages: Modificar mensajes
691 permission_edit_own_issue_notes: Modificar notas propias
692 permission_edit_own_messages: Editar mensajes propios
693 permission_edit_own_time_entries: Modificar tiempos dedicados propios
694 permission_edit_project: Modificar proyecto
695 permission_edit_time_entries: Modificar tiempos dedicados
696 permission_edit_wiki_pages: Modificar páginas wiki
697 permission_log_time: Anotar tiempo dedicado
698 permission_manage_boards: Administrar foros
699 permission_manage_categories: Administrar categorías de peticiones
700 permission_manage_documents: Administrar documentos
701 permission_manage_files: Administrar ficheros
702 permission_manage_issue_relations: Administrar relación con otras peticiones
703 permission_manage_members: Administrar miembros
704 permission_manage_news: Administrar noticias
705 permission_manage_public_queries: Administrar consultas públicas
706 permission_manage_repository: Administrar repositorio
707 permission_manage_versions: Administrar versiones
708 permission_manage_wiki: Administrar wiki
709 permission_move_issues: Mover peticiones
710 permission_protect_wiki_pages: Proteger páginas wiki
711 permission_rename_wiki_pages: Renombrar páginas wiki
712 permission_save_queries: Grabar consultas
713 permission_select_project_modules: Seleccionar módulos del proyecto
714 permission_view_calendar: Ver calendario
715 permission_view_changesets: Ver cambios
716 permission_view_documents: Ver documentos
717 permission_view_files: Ver ficheros
718 permission_view_gantt: Ver diagrama de Gantt
719 permission_view_issue_watchers: Ver lista de seguidores
720 permission_view_messages: Ver mensajes
721 permission_view_time_entries: Ver tiempo dedicado
722 permission_view_wiki_edits: Ver histórico del wiki
723 permission_view_wiki_pages: Ver wiki
724 project_module_boards: Foros
725 project_module_documents: Documentos
726 project_module_files: Ficheros
727 project_module_issue_tracking: Peticiones
728 project_module_news: Noticias
729 project_module_repository: Repositorio
730 project_module_time_tracking: Control de tiempo
731 project_module_wiki: Wiki
732 setting_activity_days_default: Días a mostrar en la actividad de proyecto
733 setting_app_subtitle: Subtítulo de la aplicación
734 setting_app_title: Título de la aplicación
735 setting_attachment_max_size: Tamaño máximo del fichero
736 setting_autofetch_changesets: Autorellenar los commits del repositorio
737 setting_autologin: Conexión automática
738 setting_bcc_recipients: Ocultar las copias de carbón (bcc)
739 setting_commit_fix_keywords: Palabras clave para la corrección
740 setting_commit_logs_encoding: Codificación de los mensajes de commit
741 setting_commit_ref_keywords: Palabras clave para la referencia
742 setting_cross_project_issue_relations: Permitir relacionar peticiones de distintos proyectos
743 setting_date_format: Formato de fecha
744 setting_default_language: Idioma por defecto
745 setting_default_projects_public: Los proyectos nuevos son públicos por defecto
746 setting_diff_max_lines_displayed: Número máximo de diferencias mostradas
747 setting_display_subprojects_issues: Mostrar por defecto peticiones de proy. secundarios en el principal
748 setting_emails_footer: Pie de mensajes
749 setting_enabled_scm: Activar SCM
750 setting_feeds_limit: Límite de contenido para sindicación
751 setting_gravatar_enabled: Usar iconos de usuario (Gravatar)
752 setting_host_name: Nombre y ruta del servidor
753 setting_issue_list_default_columns: Columnas por defecto para la lista de peticiones
754 setting_issues_export_limit: Límite de exportación de peticiones
755 setting_login_required: Se requiere identificación
756 setting_mail_from: Correo desde el que enviar mensajes
757 setting_mail_handler_api_enabled: Activar SW para mensajes entrantes
758 setting_mail_handler_api_key: Clave de la API
759 setting_per_page_options: Objetos por página
760 setting_plain_text_mail: sólo texto plano (no HTML)
761 setting_protocol: Protocolo
762 setting_repositories_encodings: Codificaciones del repositorio
763 setting_self_registration: Registro permitido
764 setting_sequential_project_identifiers: Generar identificadores de proyecto
765 setting_sys_api_enabled: Habilitar SW para la gestión del repositorio
766 setting_text_formatting: Formato de texto
767 setting_time_format: Formato de hora
768 setting_user_format: Formato de nombre de usuario
769 setting_welcome_text: Texto de bienvenida
770 setting_wiki_compression: Compresión del historial del Wiki
771 status_active: activo
772 status_locked: bloqueado
773 status_registered: registrado
774 text_are_you_sure: ¿Está seguro?
775 text_assign_time_entries_to_project: Asignar las horas al proyecto
776 text_caracters_maximum: "{{count}} caracteres como máximo."
777 text_caracters_minimum: "{{count}} caracteres como mínimo"
778 text_comma_separated: Múltiples valores permitidos (separados por coma).
779 text_default_administrator_account_changed: Cuenta de administrador por defecto modificada
780 text_destroy_time_entries: Borrar las horas
781 text_destroy_time_entries_question: Existen %.02f horas asignadas a la petición que quiere borrar. ¿Qué quiere hacer ?
782 text_diff_truncated: '... Diferencia truncada por exceder el máximo tamaño visualizable.'
783 text_email_delivery_not_configured: "El envío de correos no está configurado, y las notificaciones se han desactivado. \n Configure el servidor de SMTP en config/email.yml y reinicie la aplicación para activar los cambios."
784 text_enumeration_category_reassign_to: 'Reasignar al siguiente valor:'
785 text_enumeration_destroy_question: "{{count}} objetos con este valor asignado.'"
786 text_file_repository_writable: Se puede escribir en el repositorio
787 text_issue_added: "Petición {{id}} añadida por {{author}}."
788 text_issue_category_destroy_assignments: Dejar las peticiones sin categoría
789 text_issue_category_destroy_question: "Algunas peticiones ({{count}}) están asignadas a esta categoría. ¿Qué desea hacer?"
790 text_issue_category_reassign_to: Reasignar las peticiones a la categoría
791 text_issue_updated: "La petición {{id}} ha sido actualizada por {{author}}."
792 text_issues_destroy_confirmation: '¿Seguro que quiere borrar las peticiones seleccionadas?'
793 text_issues_ref_in_commit_messages: Referencia y petición de corrección en los mensajes
794 text_journal_changed: "cambiado de {{old}} a {{new}}"
795 text_journal_deleted: suprimido
796 text_journal_set_to: "fijado a {{value}}"
797 text_length_between: "Longitud entre {{min}} y {{max}} caracteres."
798 text_load_default_configuration: Cargar la configuración por defecto
799 text_min_max_length_info: 0 para ninguna restricción
800 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."
801 text_project_destroy_confirmation: ¿Estás seguro de querer eliminar el proyecto?
802 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.'
803 text_reassign_time_entries: 'Reasignar las horas a esta petición:'
804 text_regexp_info: ej. ^[A-Z0-9]+$
805 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."
806 text_rmagick_available: RMagick disponible (opcional)
807 text_select_mail_notifications: Seleccionar los eventos a notificar
808 text_select_project_modules: 'Seleccione los módulos a activar para este proyecto:'
809 text_status_changed_by_changeset: "Aplicado en los cambios {{value}}"
810 text_subprojects_destroy_warning: "Los proyectos secundarios: {{value}} también se eliminarán'"
811 text_tip_task_begin_day: tarea que comienza este día
812 text_tip_task_begin_end_day: tarea que comienza y termina este día
813 text_tip_task_end_day: tarea que termina este día
814 text_tracker_no_workflow: No hay ningún flujo de trabajo definido para este tipo de petición
815 text_unallowed_characters: Caracteres no permitidos
816 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)."
817 text_user_wrote: "{{value}} escribió:'"
818 text_wiki_destroy_confirmation: ¿Seguro que quiere borrar el wiki y todo su contenido?
819 text_workflow_edit: Seleccionar un flujo de trabajo para actualizar
820 text_plugin_assets_writable: Plugin assets directory writable
821 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
822 button_create_and_continue: Create and continue
823 text_custom_field_possible_values_info: 'One line for each value'
824 label_display: Display
825 field_editable: Editable
826 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
@@ -19,6 +19,13 require 'uri'
19 19 require 'cgi'
20 20
21 21 class ApplicationController < ActionController::Base
22 include Redmine::I18n
23
24 # In case the cookie store secret changes
25 rescue_from CGI::Session::CookieStore::TamperedWithCookie do |exception|
26 render :text => 'Your session was invalid and has been reset. Please, reload this page.', :status => 500
27 end
28
22 29 layout 'base'
23 30
24 31 before_filter :user_setup, :check_if_login_required, :set_localization
@@ -64,20 +71,18 class ApplicationController < ActionController::Base
64 71 end
65 72
66 73 def set_localization
67 User.current.language = nil unless User.current.logged?
68 lang = begin
69 if !User.current.language.blank? && GLoc.valid_language?(User.current.language)
70 User.current.language
71 elsif request.env['HTTP_ACCEPT_LANGUAGE']
72 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.downcase
73 if !accept_lang.blank? && (GLoc.valid_language?(accept_lang) || GLoc.valid_language?(accept_lang = accept_lang.split('-').first))
74 User.current.language = accept_lang
75 end
74 lang = nil
75 if User.current.logged?
76 lang = find_language(User.current.language)
77 end
78 if lang.nil? && request.env['HTTP_ACCEPT_LANGUAGE']
79 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.downcase
80 if !accept_lang.blank?
81 lang = find_language(accept_lang) || find_language(accept_lang.split('-').first)
76 82 end
77 rescue
78 nil
79 end || Setting.default_language
80 set_language_if_valid(lang)
83 end
84 lang ||= Setting.default_language
85 set_language_if_valid(lang)
81 86 end
82 87
83 88 def require_login
@@ -152,7 +157,7 class ApplicationController < ActionController::Base
152 157
153 158 def render_error(msg)
154 159 flash.now[:error] = msg
155 render :nothing => true, :layout => !request.xhr?, :status => 500
160 render :text => '', :layout => !request.xhr?, :status => 500
156 161 end
157 162
158 163 def render_feed(items, options={})
@@ -225,6 +230,8 class ApplicationController < ActionController::Base
225 230 tmp.collect!{|val, q| val}
226 231 end
227 232 return tmp
233 rescue
234 nil
228 235 end
229 236
230 237 # Returns a string that can be used as filename value in Content-Disposition header
@@ -258,7 +258,9 class IssuesController < ApplicationController
258 258 if unsaved_issue_ids.empty?
259 259 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
260 260 else
261 flash[:error] = l(:notice_failed_to_save_issues, unsaved_issue_ids.size, @issues.size, '#' + unsaved_issue_ids.join(', #'))
261 flash[:error] = l(:notice_failed_to_save_issues, :count => unsaved_issue_ids.size,
262 :total => @issues.size,
263 :ids => '#' + unsaved_issue_ids.join(', #'))
262 264 end
263 265 redirect_to(params[:back_to] || {:controller => 'issues', :action => 'index', :project_id => @project})
264 266 return
@@ -291,7 +293,9 class IssuesController < ApplicationController
291 293 if unsaved_issue_ids.empty?
292 294 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
293 295 else
294 flash[:error] = l(:notice_failed_to_save_issues, unsaved_issue_ids.size, @issues.size, '#' + unsaved_issue_ids.join(', #'))
296 flash[:error] = l(:notice_failed_to_save_issues, :count => unsaved_issue_ids.size,
297 :total => @issues.size,
298 :ids => '#' + unsaved_issue_ids.join(', #'))
295 299 end
296 300 redirect_to :controller => 'issues', :action => 'index', :project_id => @project
297 301 return
@@ -238,8 +238,7 private
238 238 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
239 239
240 240 fields = []
241 month_names = l(:actionview_datehelper_select_month_names_abbr).split(',')
242 12.times {|m| fields << month_names[((Date.today.month - 1 - m) % 12)]}
241 12.times {|m| fields << month_name(((Date.today.month - 1 - m) % 12) + 1)}
243 242
244 243 graph = SVG::Graph::Bar.new(
245 244 :height => 300,
@@ -22,6 +22,7 require 'cgi'
22 22
23 23 module ApplicationHelper
24 24 include Redmine::WikiFormatting::Macros::Definitions
25 include Redmine::I18n
25 26 include GravatarHelper::PublicMethods
26 27
27 28 extend Forwardable
@@ -89,26 +90,9 module ApplicationHelper
89 90 html_options[:onclick] = "promptToRemote('#{text}', '#{param}', '#{url_for(url)}'); return false;"
90 91 link_to name, {}, html_options
91 92 end
92
93 def format_date(date)
94 return nil unless date
95 # "Setting.date_format.size < 2" is a temporary fix (content of date_format setting changed)
96 @date_format ||= (Setting.date_format.blank? || Setting.date_format.size < 2 ? l(:general_fmt_date) : Setting.date_format)
97 date.strftime(@date_format)
98 end
99
100 def format_time(time, include_date = true)
101 return nil unless time
102 time = time.to_time if time.is_a?(String)
103 zone = User.current.time_zone
104 local = zone ? time.in_time_zone(zone) : (time.utc? ? time.localtime : time)
105 @date_format ||= (Setting.date_format.blank? || Setting.date_format.size < 2 ? l(:general_fmt_date) : Setting.date_format)
106 @time_format ||= (Setting.time_format.blank? ? l(:general_fmt_time) : Setting.time_format)
107 include_date ? local.strftime("#{@date_format} #{@time_format}") : local.strftime(@time_format)
108 end
109 93
110 94 def format_activity_title(text)
111 h(truncate_single_line(text, 100))
95 h(truncate_single_line(text, :length => 100))
112 96 end
113 97
114 98 def format_activity_day(date)
@@ -116,14 +100,7 module ApplicationHelper
116 100 end
117 101
118 102 def format_activity_description(text)
119 h(truncate(text.to_s, 120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...')).gsub(/[\r\n]+/, "<br />")
120 end
121
122 def distance_of_date_in_words(from_date, to_date = 0)
123 from_date = from_date.to_date if from_date.respond_to?(:to_date)
124 to_date = to_date.to_date if to_date.respond_to?(:to_date)
125 distance_in_days = (to_date - from_date).abs
126 lwr(:actionview_datehelper_time_in_words_day, distance_in_days)
103 h(truncate(text.to_s, :length => 120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...')).gsub(/[\r\n]+/, "<br />")
127 104 end
128 105
129 106 def due_date_distance_in_words(date)
@@ -235,20 +212,7 module ApplicationHelper
235 212 {:controller => 'projects', :action => 'activity', :id => @project, :from => created.to_date},
236 213 :title => format_time(created))
237 214 author_tag = (author.is_a?(User) && !author.anonymous?) ? link_to(h(author), :controller => 'account', :action => 'show', :id => author) : h(author || 'Anonymous')
238 l(options[:label] || :label_added_time_by, author_tag, time_tag)
239 end
240
241 def l_or_humanize(s, options={})
242 k = "#{options[:prefix]}#{s}".to_sym
243 l_has_string?(k) ? l(k) : s.to_s.humanize
244 end
245
246 def day_name(day)
247 l(:general_day_names).split(',')[day-1]
248 end
249
250 def month_name(month)
251 l(:actionview_datehelper_select_month_names).split(',')[month-1]
215 l(options[:label] || :label_added_time_by, :author => author_tag, :age => time_tag)
252 216 end
253 217
254 218 def syntax_highlight(name, content)
@@ -308,9 +272,9 module ApplicationHelper
308 272 end
309 273
310 274 def other_formats_links(&block)
311 concat('<p class="other-formats">' + l(:label_export_to), block.binding)
275 concat('<p class="other-formats">' + l(:label_export_to))
312 276 yield Redmine::Views::OtherFormatsBuilder.new(self)
313 concat('</p>', block.binding)
277 concat('</p>')
314 278 end
315 279
316 280 def page_header_title
@@ -479,7 +443,7 module ApplicationHelper
479 443 if project && (changeset = project.changesets.find_by_revision(oid))
480 444 link = link_to("r#{oid}", {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => oid},
481 445 :class => 'changeset',
482 :title => truncate_single_line(changeset.comments, 100))
446 :title => truncate_single_line(changeset.comments, :length => 100))
483 447 end
484 448 elsif sep == '#'
485 449 oid = oid.to_i
@@ -488,7 +452,7 module ApplicationHelper
488 452 if issue = Issue.find_by_id(oid, :include => [:project, :status], :conditions => Project.visible_by(User.current))
489 453 link = link_to("##{oid}", {:only_path => only_path, :controller => 'issues', :action => 'show', :id => oid},
490 454 :class => (issue.closed? ? 'issue closed' : 'issue'),
491 :title => "#{truncate(issue.subject, 100)} (#{issue.status.name})")
455 :title => "#{truncate(issue.subject, :length => 100)} (#{issue.status.name})")
492 456 link = content_tag('del', link) if issue.closed?
493 457 end
494 458 when 'document'
@@ -503,7 +467,7 module ApplicationHelper
503 467 end
504 468 when 'message'
505 469 if message = Message.find_by_id(oid, :include => [:parent, {:board => :project}], :conditions => Project.visible_by(User.current))
506 link = link_to h(truncate(message.subject, 60)), {:only_path => only_path,
470 link = link_to h(truncate(message.subject, :length => 60)), {:only_path => only_path,
507 471 :controller => 'messages',
508 472 :action => 'show',
509 473 :board_id => message.board,
@@ -530,7 +494,7 module ApplicationHelper
530 494 if project && (changeset = project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
531 495 link = link_to h("#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => changeset.revision},
532 496 :class => 'changeset',
533 :title => truncate_single_line(changeset.comments, 100)
497 :title => truncate_single_line(changeset.comments, :length => 100)
534 498 end
535 499 when 'source', 'export'
536 500 if project && project.repository
@@ -565,46 +529,9 module ApplicationHelper
565 529 gsub(/([^\n]\n)(?=[^\n])/, '\1<br />') # 1 newline -> br
566 530 end
567 531
568 def error_messages_for(object_name, options = {})
569 options = options.symbolize_keys
570 object = instance_variable_get("@#{object_name}")
571 if object && !object.errors.empty?
572 # build full_messages here with controller current language
573 full_messages = []
574 object.errors.each do |attr, msg|
575 next if msg.nil?
576 msg = [msg] unless msg.is_a?(Array)
577 if attr == "base"
578 full_messages << l(*msg)
579 else
580 full_messages << "&#171; " + (l_has_string?("field_" + attr) ? l("field_" + attr) : object.class.human_attribute_name(attr)) + " &#187; " + l(*msg) unless attr == "custom_values"
581 end
582 end
583 # retrieve custom values error messages
584 if object.errors[:custom_values]
585 object.custom_values.each do |v|
586 v.errors.each do |attr, msg|
587 next if msg.nil?
588 msg = [msg] unless msg.is_a?(Array)
589 full_messages << "&#171; " + v.custom_field.name + " &#187; " + l(*msg)
590 end
591 end
592 end
593 content_tag("div",
594 content_tag(
595 options[:header_tag] || "span", lwr(:gui_validation_error, full_messages.length) + ":"
596 ) +
597 content_tag("ul", full_messages.collect { |msg| content_tag("li", msg) }),
598 "id" => options[:id] || "errorExplanation", "class" => options[:class] || "errorExplanation"
599 )
600 else
601 ""
602 end
603 end
604
605 532 def lang_options_for_select(blank=true)
606 533 (blank ? [["(auto)", ""]] : []) +
607 GLoc.valid_languages.collect{|lang| [ ll(lang.to_s, :general_lang_name), lang.to_s]}.sort{|x,y| x.last <=> y.last }
534 valid_languages.collect{|lang| [ ll(lang.to_s, :general_lang_name), lang.to_s]}.sort{|x,y| x.last <=> y.last }
608 535 end
609 536
610 537 def label_tag_for(name, option_tags = nil, options = {})
@@ -119,7 +119,7 module IssuesHelper
119 119 case detail.property
120 120 when 'attr', 'cf'
121 121 if !detail.old_value.blank?
122 label + " " + l(:text_journal_changed, old_value, value)
122 label + " " + l(:text_journal_changed, :old => old_value, :new => value)
123 123 else
124 124 label + " " + l(:text_journal_set_to, value)
125 125 end
@@ -19,7 +19,7 module MessagesHelper
19 19
20 20 def link_to_message(message)
21 21 return '' unless message
22 link_to h(truncate(message.subject, 60)), :controller => 'messages',
22 link_to h(truncate(message.subject, :length => 60)), :controller => 'messages',
23 23 :action => 'show',
24 24 :board_id => message.board_id,
25 25 :id => message.root,
@@ -22,8 +22,8 module SettingsHelper
22 22 {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
23 23 {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural},
24 24 {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
25 {:name => 'notifications', :partial => 'settings/notifications', :label => l(:field_mail_notification)},
26 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => l(:label_incoming_emails)},
25 {:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification},
26 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails},
27 27 {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
28 28 ]
29 29 end
@@ -109,7 +109,7 class Changeset < ActiveRecord::Base
109 109 if self.scmid && (! (csettext =~ /^r[0-9]+$/))
110 110 csettext = "commit:\"#{self.scmid}\""
111 111 end
112 journal = issue.init_journal(user || User.anonymous, l(:text_status_changed_by_changeset, csettext))
112 journal = issue.init_journal(user || User.anonymous, ll(Setting.default_language, :text_status_changed_by_changeset, csettext))
113 113 issue.status = fix_status
114 114 issue.done_ratio = done_ratio if done_ratio
115 115 issue.save
@@ -48,14 +48,14 class CustomField < ActiveRecord::Base
48 48
49 49 def validate
50 50 if self.field_format == "list"
51 errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty?
52 errors.add(:possible_values, :activerecord_error_invalid) unless self.possible_values.is_a? Array
51 errors.add(:possible_values, :blank) if self.possible_values.nil? || self.possible_values.empty?
52 errors.add(:possible_values, :invalid) unless self.possible_values.is_a? Array
53 53 end
54 54
55 55 # validate default value
56 56 v = CustomValue.new(:custom_field => self.clone, :value => default_value, :customized => nil)
57 57 v.custom_field.is_required = false
58 errors.add(:default_value, :activerecord_error_invalid) unless v.valid?
58 errors.add(:default_value, :invalid) unless v.valid?
59 59 end
60 60
61 61 # Makes possible_values accept a multiline string
@@ -45,22 +45,22 class CustomValue < ActiveRecord::Base
45 45 protected
46 46 def validate
47 47 if value.blank?
48 errors.add(:value, :activerecord_error_blank) if custom_field.is_required? and value.blank?
48 errors.add(:value, :blank) if custom_field.is_required? and value.blank?
49 49 else
50 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
51 errors.add(:value, :activerecord_error_too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length
52 errors.add(:value, :activerecord_error_too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
50 errors.add(:value, :invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
51 errors.add(:value, :too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length
52 errors.add(:value, :too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
53 53
54 54 # Format specific validations
55 55 case custom_field.field_format
56 56 when 'int'
57 errors.add(:value, :activerecord_error_not_a_number) unless value =~ /^[+-]?\d+$/
57 errors.add(:value, :not_a_number) unless value =~ /^[+-]?\d+$/
58 58 when 'float'
59 begin; Kernel.Float(value); rescue; errors.add(:value, :activerecord_error_invalid) end
59 begin; Kernel.Float(value); rescue; errors.add(:value, :invalid) end
60 60 when 'date'
61 errors.add(:value, :activerecord_error_not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/
61 errors.add(:value, :not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/
62 62 when 'list'
63 errors.add(:value, :activerecord_error_inclusion) unless custom_field.possible_values.include?(value)
63 errors.add(:value, :inclusion) unless custom_field.possible_values.include?(value)
64 64 end
65 65 end
66 66 end
@@ -129,20 +129,20 class Issue < ActiveRecord::Base
129 129
130 130 def validate
131 131 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
132 errors.add :due_date, :activerecord_error_not_a_date
132 errors.add :due_date, :not_a_date
133 133 end
134 134
135 135 if self.due_date and self.start_date and self.due_date < self.start_date
136 errors.add :due_date, :activerecord_error_greater_than_start_date
136 errors.add :due_date, :greater_than_start_date
137 137 end
138 138
139 139 if start_date && soonest_start && start_date < soonest_start
140 errors.add :start_date, :activerecord_error_invalid
140 errors.add :start_date, :invalid
141 141 end
142 142 end
143 143
144 144 def validate_on_create
145 errors.add :tracker_id, :activerecord_error_invalid unless project.trackers.include?(tracker)
145 errors.add :tracker_id, :invalid unless project.trackers.include?(tracker)
146 146 end
147 147
148 148 def before_create
@@ -39,9 +39,9 class IssueRelation < ActiveRecord::Base
39 39
40 40 def validate
41 41 if issue_from && issue_to
42 errors.add :issue_to_id, :activerecord_error_invalid if issue_from_id == issue_to_id
43 errors.add :issue_to_id, :activerecord_error_not_same_project unless issue_from.project_id == issue_to.project_id || Setting.cross_project_issue_relations?
44 errors.add_to_base :activerecord_error_circular_dependency if issue_to.all_dependent_issues.include? issue_from
42 errors.add :issue_to_id, :invalid if issue_from_id == issue_to_id
43 errors.add :issue_to_id, :not_same_project unless issue_from.project_id == issue_to.project_id || Setting.cross_project_issue_relations?
44 errors.add_to_base :circular_dependency if issue_to.all_dependent_issues.include? issue_from
45 45 end
46 46 end
47 47
@@ -236,4 +236,9 class MailHandler < ActionMailer::Base
236 236 end
237 237 @plain_text_body.strip!
238 238 end
239
240
241 def self.full_sanitizer
242 @full_sanitizer ||= HTML::FullSanitizer.new
243 end
239 244 end
@@ -21,6 +21,7 class Mailer < ActionMailer::Base
21 21 helper :custom_fields
22 22
23 23 include ActionController::UrlWriter
24 include Redmine::I18n
24 25
25 26 def issue_add(issue)
26 27 redmine_headers 'Project' => issue.project.identifier,
@@ -24,7 +24,7 class Member < ActiveRecord::Base
24 24 validates_uniqueness_of :user_id, :scope => :project_id
25 25
26 26 def validate
27 errors.add :role_id, :activerecord_error_invalid if role && !role.member?
27 errors.add :role_id, :invalid if role && !role.member?
28 28 end
29 29
30 30 def name
@@ -306,7 +306,7 class Project < ActiveRecord::Base
306 306
307 307 protected
308 308 def validate
309 errors.add(:identifier, :activerecord_error_invalid) if !identifier.blank? && identifier.match(/^\d*$/)
309 errors.add(:identifier, :invalid) if !identifier.blank? && identifier.match(/^\d*$/)
310 310 end
311 311
312 312 private
@@ -17,7 +17,7
17 17
18 18 class QueryColumn
19 19 attr_accessor :name, :sortable, :default_order
20 include GLoc
20 include Redmine::I18n
21 21
22 22 def initialize(name, options={})
23 23 self.name = name
@@ -26,7 +26,6 class QueryColumn
26 26 end
27 27
28 28 def caption
29 set_language_if_valid(User.current.language)
30 29 l("field_#{name}")
31 30 end
32 31 end
@@ -113,7 +112,6 class Query < ActiveRecord::Base
113 112 def initialize(attributes = nil)
114 113 super attributes
115 114 self.filters ||= { 'status_id' => {:operator => "o", :values => [""]} }
116 set_language_if_valid(User.current.language)
117 115 end
118 116
119 117 def after_initialize
@@ -123,7 +121,7 class Query < ActiveRecord::Base
123 121
124 122 def validate
125 123 filters.each_key do |field|
126 errors.add label_for(field), :activerecord_error_blank unless
124 errors.add label_for(field), :blank unless
127 125 # filter requires one or more values
128 126 (values_for(field) and !values_for(field).first.blank?) or
129 127 # filter doesn't require any value
@@ -25,7 +25,7 class Repository < ActiveRecord::Base
25 25 before_destroy :clear_changesets
26 26
27 27 # Checks if the SCM is enabled when creating a repository
28 validate_on_create { |r| r.errors.add(:type, :activerecord_error_invalid) unless Setting.enabled_scm.include?(r.class.name.demodulize) }
28 validate_on_create { |r| r.errors.add(:type, :invalid) unless Setting.enabled_scm.include?(r.class.name.demodulize) }
29 29
30 30 # Removes leading and trailing whitespace
31 31 def url=(arg)
@@ -26,13 +26,13 class TimeEntry < ActiveRecord::Base
26 26 attr_protected :project_id, :user_id, :tyear, :tmonth, :tweek
27 27
28 28 acts_as_customizable
29 acts_as_event :title => Proc.new {|o| "#{o.user}: #{lwr(:label_f_hour, o.hours)} (#{(o.issue || o.project).event_title})"},
29 acts_as_event :title => Proc.new {|o| "#{o.user}: #{l_hours(o.hours)} (#{(o.issue || o.project).event_title})"},
30 30 :url => Proc.new {|o| {:controller => 'timelog', :action => 'details', :project_id => o.project}},
31 31 :author => :user,
32 32 :description => :comments
33 33
34 34 validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
35 validates_numericality_of :hours, :allow_nil => true, :message => :activerecord_error_invalid
35 validates_numericality_of :hours, :allow_nil => true, :message => :invalid
36 36 validates_length_of :comments, :maximum => 255, :allow_nil => true
37 37
38 38 def after_initialize
@@ -48,9 +48,9 class TimeEntry < ActiveRecord::Base
48 48 end
49 49
50 50 def validate
51 errors.add :hours, :activerecord_error_invalid if hours && (hours < 0 || hours >= 1000)
52 errors.add :project_id, :activerecord_error_invalid if project.nil?
53 errors.add :issue_id, :activerecord_error_invalid if (issue_id && !issue) || (issue && project!=issue.project)
51 errors.add :hours, :invalid if hours && (hours < 0 || hours >= 1000)
52 errors.add :project_id, :invalid if project.nil?
53 errors.add :issue_id, :invalid if (issue_id && !issue) || (issue && project!=issue.project)
54 54 end
55 55
56 56 def hours=(h)
@@ -25,7 +25,7 class Version < ActiveRecord::Base
25 25 validates_presence_of :name
26 26 validates_uniqueness_of :name, :scope => [:project_id]
27 27 validates_length_of :name, :maximum => 60
28 validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => 'activerecord_error_not_a_date', :allow_nil => true
28 validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => :not_a_date, :allow_nil => true
29 29
30 30 def start_date
31 31 effective_date
@@ -25,6 +25,6 class Watcher < ActiveRecord::Base
25 25 protected
26 26
27 27 def validate
28 errors.add :user_id, :activerecord_error_invalid unless user.nil? || user.active?
28 errors.add :user_id, :invalid unless user.nil? || user.active?
29 29 end
30 30 end
@@ -129,9 +129,9 class WikiPage < ActiveRecord::Base
129 129 protected
130 130
131 131 def validate
132 errors.add(:parent_title, :activerecord_error_invalid) if !@parent_title.blank? && parent.nil?
133 errors.add(:parent_title, :activerecord_error_circular_dependency) if parent && (parent == self || parent.ancestors.include?(self))
134 errors.add(:parent_title, :activerecord_error_not_same_project) if parent && (parent.wiki_id != wiki_id)
132 errors.add(:parent_title, :invalid) if !@parent_title.blank? && parent.nil?
133 errors.add(:parent_title, :circular_dependency) if parent && (parent == self || parent.ancestors.include?(self))
134 errors.add(:parent_title, :not_same_project) if parent && (parent.wiki_id != wiki_id)
135 135 end
136 136 end
137 137
@@ -20,7 +20,7 while day <= calendar.enddt %>
20 20 image_tag('arrow_to.png')
21 21 end %>
22 22 <%= h("#{i.project} -") unless @project && @project == i.project %>
23 <%= link_to_issue i %>: <%= h(truncate(i.subject, 30)) %>
23 <%= link_to_issue i %>: <%= h(truncate(i.subject, :length => 30)) %>
24 24 <span class="tip"><%= render_issue_tooltip i %></span>
25 25 </div>
26 26 <% else %>
@@ -1,6 +1,6
1 1 xml.instruct!
2 2 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
3 xml.title truncate_single_line(@title, 100)
3 xml.title truncate_single_line(@title, :length => 100)
4 4 xml.link "rel" => "self", "href" => url_for(params.merge({:format => nil, :only_path => false}))
5 5 xml.link "rel" => "alternate", "href" => url_for(:controller => 'welcome', :only_path => false)
6 6 xml.id url_for(:controller => 'welcome', :only_path => false)
@@ -11,9 +11,9 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
11 11 xml.entry do
12 12 url = url_for(item.event_url(:only_path => false))
13 13 if @project
14 xml.title truncate_single_line(item.event_title, 100)
14 xml.title truncate_single_line(item.event_title, :length => 100)
15 15 else
16 xml.title truncate_single_line("#{item.project} - #{item.event_title}", 100)
16 xml.title truncate_single_line("#{item.project} - #{item.event_title}", :length => 100)
17 17 end
18 18 xml.link "rel" => "alternate", "href" => url
19 19 xml.id url
@@ -35,7 +35,7
35 35 <td align="center"><%= image_tag 'true.png' if custom_field.is_required? %></td>
36 36 <% if tab[:name] == 'IssueCustomField' %>
37 37 <td align="center"><%= image_tag 'true.png' if custom_field.is_for_all? %></td>
38 <td align="center"><%= custom_field.projects.count.to_s + ' ' + lwr(:label_project, custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
38 <td align="center"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
39 39 <% end %>
40 40 <td align="center" style="width:15%;">
41 41 <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => custom_field, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %>
@@ -1,3 +1,3
1 1 <p><%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %><br />
2 <% unless document.description.blank? %><%=h(truncate(document.description, 250)) %><br /><% end %>
2 <% unless document.description.blank? %><%=h(truncate(document.description, :length => 250)) %><br /><% end %>
3 3 <em><%= format_time(document.created_on) %></em></p> No newline at end of file
@@ -10,7 +10,7
10 10 <table style="width:100%">
11 11 <% @issue.relations.select {|r| r.other_issue(@issue).visible? }.each do |relation| %>
12 12 <tr>
13 <td><%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %>
13 <td><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
14 14 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue relation.other_issue(@issue) %></td>
15 15 <td><%=h relation.other_issue(@issue).subject %></td>
16 16 <td><%= relation.other_issue(@issue).status.name %></td>
@@ -34,13 +34,13
34 34 <td class="category"><b><%=l(:field_category)%>:</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
35 35 <% if User.current.allowed_to?(:view_time_entries, @project) %>
36 36 <td class="spent-time"><b><%=l(:label_spent_time)%>:</b></td>
37 <td class="spent-hours"><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue}) : "-" %></td>
37 <td class="spent-hours"><%= @issue.spent_hours > 0 ? (link_to l_hours(@issue.spent_hours), {:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue}) : "-" %></td>
38 38 <% end %>
39 39 </tr>
40 40 <tr>
41 41 <td class="fixed-version"><b><%=l(:field_fixed_version)%>:</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
42 42 <% if @issue.estimated_hours %>
43 <td class="estimated-hours"><b><%=l(:field_estimated_hours)%>:</b></td><td><%= lwr(:label_f_hour, @issue.estimated_hours) %></td>
43 <td class="estimated-hours"><b><%=l(:field_estimated_hours)%>:</b></td><td><%= l_hours(@issue.estimated_hours) %></td>
44 44 <% end %>
45 45 </tr>
46 46 <tr>
@@ -1,3 +1,3
1 <%= l(:text_issue_added, "##{@issue.id}", @issue.author) %>
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %>
2 2 <hr />
3 3 <%= render :partial => "issue_text_html", :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -1,4 +1,4
1 <%= l(:text_issue_added, "##{@issue.id}", @issue.author) %>
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %>
2 2
3 3 ----------------------------------------
4 4 <%= render :partial => "issue_text_plain", :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -1,4 +1,4
1 <%= l(:text_issue_updated, "##{@issue.id}", @journal.user) %>
1 <%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %>
2 2
3 3 <ul>
4 4 <% for detail in @journal.details %>
@@ -1,4 +1,4
1 <%= l(:text_issue_updated, "##{@issue.id}", @journal.user) %>
1 <%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %>
2 2
3 3 <% for detail in @journal.details -%>
4 4 <%= show_detail(detail, true) %>
@@ -1,4 +1,4
1 <p><%= l(:mail_body_reminder, @issues.size, @days) %></p>
1 <p><%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %></p>
2 2
3 3 <ul>
4 4 <% @issues.each do |issue| -%>
@@ -1,4 +1,4
1 <%= l(:mail_body_reminder, @issues.size, @days) %>:
1 <%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %>:
2 2
3 3 <% @issues.each do |issue| -%>
4 4 * <%= "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject}" %>
@@ -1,4 +1,5
1 <h3><%=l(:label_watched_issues)%></h3>
1 <h3><%=l(:label_watched_issues)%> (<%= Issue.visible.count(:include => :watchers,
2 :conditions => ["#{Watcher.table_name}.user_id = ?", user.id]) %>)</h3>
2 3 <% watched_issues = Issue.visible.find(:all,
3 4 :include => [:status, :project, :tracker, :watchers],
4 5 :limit => 10,
@@ -1,6 +1,6
1 1 <p><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless @project %>
2 2 <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
3 <%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %>
3 <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>
4 4 <br />
5 5 <% unless news.summary.blank? %><span class="summary"><%=h news.summary %></span><br /><% end %>
6 6 <span class="author"><%= authoring news.created_on, news.author %></span></p>
@@ -30,7 +30,7
30 30 <% @newss.each do |news| %>
31 31 <h3><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless news.project == @project %>
32 32 <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
33 <%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %></h3>
33 <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %></h3>
34 34 <p class="author"><%= authoring news.created_on, news.author %></p>
35 35 <div class="wiki">
36 36 <%= textilizable(news.description) %>
@@ -11,7 +11,7
11 11 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
12 12 <p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen? %>
13 13 <% unless @project.identifier_frozen? %>
14 <br /><em><%= l(:text_length_between, 2, 20) %> <%= l(:text_project_identifier_info) %></em>
14 <br /><em><%= l(:text_length_between, :min => 2, :max => 20) %> <%= l(:text_project_identifier_info) %></em>
15 15 <% end %></p>
16 16 <p><%= f.text_field :homepage, :size => 60 %></p>
17 17 <p><%= f.check_box :is_public %></p>
@@ -7,7 +7,7
7 7 <% Redmine::AccessControl.available_project_modules.each do |m| %>
8 8 <label class="floating">
9 9 <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %>
10 <%= (l_has_string?("project_module_#{m}".to_sym) ? l("project_module_#{m}".to_sym) : m.to_s.humanize) %>
10 <%= l_or_humanize(m, :prefix => "project_module_") %>
11 11 </label>
12 12 <% end %>
13 13 </fieldset>
@@ -7,7 +7,7
7 7
8 8 <% Redmine::AccessControl.available_project_modules.each do |m| %>
9 9 <p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) -%>
10 <%= (l_has_string?("project_module_#{m}".to_sym) ? l("project_module_#{m}".to_sym) : m.to_s.humanize) %></label></p>
10 <%= l_or_humanize(m, :prefix => "project_module_") %></label></p>
11 11 <% end %>
12 12 </div>
13 13
@@ -23,8 +23,9
23 23 <li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
24 24 :set_filter => 1,
25 25 "tracker_id" => tracker.id %>:
26 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
27 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
26 <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
27 :total => @total_issues_by_tracker[tracker].to_i) %>
28 </li>
28 29 <% end %>
29 30 </ul>
30 31 <p><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %></p>
@@ -65,7 +66,7
65 66
66 67 <% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
67 68 <h3><%= l(:label_spent_time) %></h3>
68 <p><span class="icon icon-time"><%= lwr(:label_f_hour, @total_hours) %></span></p>
69 <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p>
69 70 <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |
70 71 <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %></p>
71 72 <% end %>
@@ -19,6 +19,6
19 19 <td class="revision"><%= link_to(format_revision(entry.lastrev.name), :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %></td>
20 20 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
21 21 <td class="author"><%= changeset.nil? ? h(entry.lastrev.author.to_s.split('<').first) : changeset.author if entry.lastrev %></td>
22 <td class="comments"><%=h truncate(changeset.comments, 50) unless changeset.nil? %></td>
22 <td class="comments"><%=h truncate(changeset.comments, :length => 50) unless changeset.nil? %></td>
23 23 </tr>
24 24 <% end %>
@@ -26,7 +26,7
26 26 <h3><%= l(:label_result_plural) %> (<%= @results_by_type.values.sum %>)</h3>
27 27 <dl id="search-results">
28 28 <% @results.each do |e| %>
29 <dt class="<%= e.event_type %>"><%= content_tag('span', h(e.project), :class => 'project') unless @project == e.project %> <%= link_to highlight_tokens(truncate(e.event_title, 255), @tokens), e.event_url %></dt>
29 <dt class="<%= e.event_type %>"><%= content_tag('span', h(e.project), :class => 'project') unless @project == e.project %> <%= link_to highlight_tokens(truncate(e.event_title, :length => 255), @tokens), e.event_url %></dt>
30 30 <dd><span class="description"><%= highlight_tokens(e.event_description, @tokens) %></span>
31 31 <span class="author"><%= format_time(e.event_datetime) %></span></dd>
32 32 <% end %>
@@ -5,7 +5,7
5 5 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
6 6
7 7 <p><label><%= l(:setting_autologin) %></label>
8 <%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [lwr(:actionview_datehelper_time_in_words_day, days), days.to_s]}, Setting.autologin) %></p>
8 <%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]}, Setting.autologin) %></p>
9 9
10 10 <p><label><%= l(:setting_self_registration) %></label>
11 11 <%= select_tag 'settings[self_registration]',
@@ -20,7 +20,7
20 20 <td class="project"><%=h entry.project %></td>
21 21 <td class="subject">
22 22 <% if entry.issue -%>
23 <%= link_to_issue entry.issue %>: <%= h(truncate(entry.issue.subject, 50)) -%>
23 <%= link_to_issue entry.issue %>: <%= h(truncate(entry.issue.subject, :length => 50)) -%>
24 24 <% end -%>
25 25 </td>
26 26 <td class="comments"><%=h entry.comments %></td>
@@ -15,7 +15,7 already in the URI %>
15 15 <% end %>
16 16
17 17 <div class="total-hours">
18 <p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p>
18 <p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>
19 19 </div>
20 20
21 21 <% unless @entries.empty? %>
@@ -20,7 +20,7
20 20 [l(:label_day_plural).titleize, 'day']], @columns),
21 21 :onchange => "this.form.onsubmit();" %>
22 22
23 <%= l(:button_add) %>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l(@available_criterias[k][:label]), k]}),
23 <%= l(:button_add) %>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l_or_humanize(@available_criterias[k][:label]), k]}),
24 24 :onchange => "this.form.onsubmit();",
25 25 :style => 'width: 200px',
26 26 :id => nil,
@@ -33,7 +33,7
33 33
34 34 <% unless @criterias.empty? %>
35 35 <div class="total-hours">
36 <p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p>
36 <p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>
37 37 </div>
38 38
39 39 <% unless @hours.empty? %>
@@ -41,7 +41,7
41 41 <thead>
42 42 <tr>
43 43 <% @criterias.each do |criteria| %>
44 <th><%= l(@available_criterias[criteria][:label]) %></th>
44 <th><%= l_or_humanize(@available_criterias[criteria][:label]) %></th>
45 45 <% end %>
46 46 <% columns_width = (40 / (@periods.length+1)).to_i %>
47 47 <% @periods.each do |period| %>
@@ -9,12 +9,10
9 9 <% if version.fixed_issues.count > 0 %>
10 10 <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
11 11 <p class="progress-info">
12 <%= link_to(version.closed_issues_count, :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
13 <%= lwr(:label_closed_issues, version.closed_issues_count) %>
12 <%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
14 13 (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%)
15 14 &#160;
16 <%= link_to(version.open_issues_count, :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
17 <%= lwr(:label_open_issues, version.open_issues_count)%>
15 <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
18 16 (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%)
19 17 </p>
20 18 <% else %>
@@ -10,12 +10,12
10 10 <table>
11 11 <tr>
12 12 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
13 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(lwr(:label_f_hour, @version.estimated_hours)) %></td>
13 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
14 14 </tr>
15 15 <% if User.current.allowed_to?(:view_time_entries, @project) %>
16 16 <tr>
17 17 <td width="130px" align="right"><%= l(:label_spent_time) %></td>
18 <td width="240px" class="total-hours"><%= html_hours(lwr(:label_f_hour, @version.spent_hours)) %></td>
18 <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
19 19 </tr>
20 20 <% end %>
21 21 </table>
@@ -67,7 +67,7 module Rails
67 67
68 68 class << self
69 69 def rubygems_version
70 Gem::RubyGemsVersion if defined? Gem::RubyGemsVersion
70 Gem::RubyGemsVersion rescue nil
71 71 end
72 72
73 73 def gem_version
@@ -82,14 +82,14 module Rails
82 82
83 83 def load_rubygems
84 84 require 'rubygems'
85
86 unless rubygems_version >= '0.9.4'
87 $stderr.puts %(Rails requires RubyGems >= 0.9.4 (you have #{rubygems_version}). Please `gem update --system` and try again.)
85 min_version = '1.3.1'
86 unless rubygems_version >= min_version
87 $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
88 88 exit 1
89 89 end
90 90
91 91 rescue LoadError
92 $stderr.puts %(Rails requires RubyGems >= 0.9.4. Please install RubyGems and try again: http://rubygems.rubyforge.org)
92 $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
93 93 exit 1
94 94 end
95 95
@@ -5,7 +5,7
5 5 # ENV['RAILS_ENV'] ||= 'production'
6 6
7 7 # Specifies gem version of Rails to use when vendor/rails is not present
8 RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION
8 RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
9 9
10 10 # Bootstrap the Rails environment, frameworks, and default configuration
11 11 require File.join(File.dirname(__FILE__), 'boot')
@@ -30,11 +30,6 Rails::Initializer.run do |config|
30 30 # (by default production uses :info, the others :debug)
31 31 # config.log_level = :debug
32 32
33 # Use the database for sessions instead of the file system
34 # (create the session table with 'rake db:sessions:create')
35 # config.action_controller.session_store = :active_record_store
36 config.action_controller.session_store = :PStore
37
38 33 # Enable page/fragment caching by setting a file-based store
39 34 # (remember to create the caching directory and make it readable to the application)
40 35 # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
@@ -15,3 +15,8 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17 config.action_mailer.delivery_method = :test
18
19 config.action_controller.session = {
20 :session_key => "_test_session",
21 :secret => "some secret phrase for the tests."
22 }
@@ -15,3 +15,8 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17 config.action_mailer.delivery_method = :test
18
19 config.action_controller.session = {
20 :session_key => "_test_session",
21 :secret => "some secret phrase for the tests."
22 }
@@ -15,3 +15,8 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17 config.action_mailer.delivery_method = :test
18
19 config.action_controller.session = {
20 :session_key => "_test_session",
21 :secret => "some secret phrase for the tests."
22 }
@@ -1,18 +1,37
1 1
2 ActiveRecord::Errors.default_error_messages = {
3 :inclusion => "activerecord_error_inclusion",
4 :exclusion => "activerecord_error_exclusion",
5 :invalid => "activerecord_error_invalid",
6 :confirmation => "activerecord_error_confirmation",
7 :accepted => "activerecord_error_accepted",
8 :empty => "activerecord_error_empty",
9 :blank => "activerecord_error_blank",
10 :too_long => "activerecord_error_too_long",
11 :too_short => "activerecord_error_too_short",
12 :wrong_length => "activerecord_error_wrong_length",
13 :taken => "activerecord_error_taken",
14 :not_a_number => "activerecord_error_not_a_number"
15 } if ActiveRecord::Errors.respond_to?('default_error_messages=')
2 require 'activerecord'
3
4 module ActiveRecord
5 class Base
6 include Redmine::I18n
7
8 # Translate attribute names for validation errors display
9 def self.human_attribute_name(attr)
10 l("field_#{attr.to_s.gsub(/_id$/, '')}")
11 end
12 end
13 end
14
15 module ActionView
16 module Helpers
17 module DateHelper
18 # distance_of_time_in_words breaks when difference is greater than 30 years
19 def distance_of_date_in_words(from_date, to_date = 0, options = {})
20 from_date = from_date.to_date if from_date.respond_to?(:to_date)
21 to_date = to_date.to_date if to_date.respond_to?(:to_date)
22 distance_in_days = (to_date - from_date).abs
23
24 I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale|
25 case distance_in_days
26 when 0..60 then locale.t :x_days, :count => distance_in_days
27 when 61..720 then locale.t :about_x_months, :count => (distance_in_days / 30).round
28 else locale.t :over_x_years, :count => (distance_in_days / 365).round
29 end
30 end
31 end
32 end
33 end
34 end
16 35
17 36 ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "#{html_tag}" }
18 37
@@ -1,7 +1,3
1 GLoc.set_config :default_language => :en
2 GLoc.clear_strings
3 GLoc.set_kcode
4 GLoc.load_localized_strings
5 GLoc.set_config(:raise_string_not_found_errors => false)
1 I18n.default_locale = 'en'
6 2
7 3 require 'redmine'
This diff has been collapsed as it changes many lines, (1478 lines changed) Show them Hide them
@@ -1,709 +1,773
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 bg:
2 date:
3 formats:
4 # Use the strftime parameters for formats.
5 # When no format has been given, it uses default.
6 # You can provide other formats here if you like!
7 default: "%Y-%m-%d"
8 short: "%b %d"
9 long: "%B %d, %Y"
10
11 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
12 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
13
14 # Don't forget the nil at the beginning; there's no such thing as a 0th month
15 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
16 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
17 # Used in date_select and datime_select.
18 order: [ :year, :month, :day ]
2 19
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 ден
9 actionview_datehelper_time_in_words_day_plural: %d дни
10 actionview_datehelper_time_in_words_hour_about: около час
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 actionview_datehelper_time_in_words_hour_about_single: около час
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 actionview_instancetag_blank_option: Изберете
20 time:
21 formats:
22 default: "%a, %d %b %Y %H:%M:%S %z"
23 short: "%d %b %H:%M"
24 long: "%B %d, %Y %H:%M"
25 am: "am"
26 pm: "pm"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: "half a minute"
31 less_than_x_seconds:
32 one: "less than 1 second"
33 other: "less than {{count}} seconds"
34 x_seconds:
35 one: "1 second"
36 other: "{{count}} seconds"
37 less_than_x_minutes:
38 one: "less than a minute"
39 other: "less than {{count}} minutes"
40 x_minutes:
41 one: "1 minute"
42 other: "{{count}} minutes"
43 about_x_hours:
44 one: "about 1 hour"
45 other: "about {{count}} hours"
46 x_days:
47 one: "1 day"
48 other: "{{count}} days"
49 about_x_months:
50 one: "about 1 month"
51 other: "about {{count}} months"
52 x_months:
53 one: "1 month"
54 other: "{{count}} months"
55 about_x_years:
56 one: "about 1 year"
57 other: "about {{count}} years"
58 over_x_years:
59 one: "over 1 year"
60 other: "over {{count}} years"
61
62 # Used in array.to_sentence.
63 support:
64 array:
65 sentence_connector: "and"
66 skip_last_comma: false
67
68 activerecord:
69 errors:
70 messages:
71 inclusion: "не съществува в списъка"
72 exclusion: запазено"
73 invalid: невалидно"
74 confirmation: "липсва одобрение"
75 accepted: "трябва да се приеме"
76 empty: "не може да е празно"
77 blank: "не може да е празно"
78 too_long: прекалено дълго"
79 too_short: прекалено късо"
80 wrong_length: с грешна дължина"
81 taken: "вече съществува"
82 not_a_number: "не е число"
83 not_a_date: невалидна дата"
84 greater_than: "must be greater than {{count}}"
85 greater_than_or_equal_to: "must be greater than or equal to {{count}}"
86 equal_to: "must be equal to {{count}}"
87 less_than: "must be less than {{count}}"
88 less_than_or_equal_to: "must be less than or equal to {{count}}"
89 odd: "must be odd"
90 even: "must be even"
91 greater_than_start_date: "трябва да е след началната дата"
92 not_same_project: "не е от същия проект"
93 circular_dependency: "Тази релация ще доведе до безкрайна зависимост"
21 94
22 activerecord_error_inclusion: не съществува в списъка
23 activerecord_error_exclusion: е запазено
24 activerecord_error_invalid: е невалидно
25 activerecord_error_confirmation: липсва одобрение
26 activerecord_error_accepted: трябва да се приеме
27 activerecord_error_empty: не може да е празно
28 activerecord_error_blank: не може да е празно
29 activerecord_error_too_long: е прекалено дълго
30 activerecord_error_too_short: е прекалено късо
31 activerecord_error_wrong_length: е с грешна дължина
32 activerecord_error_taken: вече съществува
33 activerecord_error_not_a_number: не е число
34 activerecord_error_not_a_date: е невалидна дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 activerecord_error_not_same_project: не е от същия проект
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
38
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Не'
46 general_text_Yes: 'Да'
47 general_text_no: 'не'
48 general_text_yes: 'да'
49 general_lang_name: 'Bulgarian'
50 general_csv_separator: ','
51 general_csv_decimal_separator: '.'
52 general_csv_encoding: UTF-8
53 general_pdf_encoding: UTF-8
54 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
55 general_first_day_of_week: '1'
56
57 notice_account_updated: Профилът е обновен успешно.
58 notice_account_invalid_creditentials: Невалиден потребител или парола.
59 notice_account_password_updated: Паролата е успешно променена.
60 notice_account_wrong_password: Грешна парола
61 notice_account_register_done: Профилът е създаден успешно.
62 notice_account_unknown_email: Непознат e-mail.
63 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
64 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
65 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
66 notice_successful_create: Успешно създаване.
67 notice_successful_update: Успешно обновяване.
68 notice_successful_delete: Успешно изтриване.
69 notice_successful_connection: Успешно свързване.
70 notice_file_not_found: Несъществуваща или преместена страница.
71 notice_locking_conflict: Друг потребител променя тези данни в момента.
72 notice_not_authorized: Нямате право на достъп до тази страница.
73 notice_email_sent: Изпратен e-mail на %s
74 notice_email_error: Грешка при изпращане на e-mail (%s)
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
76
77 error_scm_not_found: Несъществуващ обект в хранилището.
78 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %s"
79
80 mail_subject_lost_password: Вашата парола (%s)
81 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
82 mail_subject_register: Активация на профил (%s)
83 mail_body_register: 'За да активирате профила си използвайте следния линк:'
84
85 gui_validation_error: 1 грешка
86 gui_validation_error_plural: %d грешки
87
88 field_name: Име
89 field_description: Описание
90 field_summary: Групиран изглед
91 field_is_required: Задължително
92 field_firstname: Име
93 field_lastname: Фамилия
94 field_mail: Email
95 field_filename: Файл
96 field_filesize: Големина
97 field_downloads: Downloads
98 field_author: Автор
99 field_created_on: От дата
100 field_updated_on: Обновена
101 field_field_format: Тип
102 field_is_for_all: За всички проекти
103 field_possible_values: Възможни стойности
104 field_regexp: Регулярен израз
105 field_min_length: Мин. дължина
106 field_max_length: Макс. дължина
107 field_value: Стойност
108 field_category: Категория
109 field_title: Заглавие
110 field_project: Проект
111 field_issue: Задача
112 field_status: Статус
113 field_notes: Бележка
114 field_is_closed: Затворена задача
115 field_is_default: Статус по подразбиране
116 field_tracker: Тракер
117 field_subject: Относно
118 field_due_date: Крайна дата
119 field_assigned_to: Възложена на
120 field_priority: Приоритет
121 field_fixed_version: Планувана версия
122 field_user: Потребител
123 field_role: Роля
124 field_homepage: Начална страница
125 field_is_public: Публичен
126 field_parent: Подпроект на
127 field_is_in_chlog: Да се вижда ли в Изменения
128 field_is_in_roadmap: Да се вижда ли в Пътна карта
129 field_login: Потребител
130 field_mail_notification: Известия по пощата
131 field_admin: Администратор
132 field_last_login_on: Последно свързване
133 field_language: Език
134 field_effective_date: Дата
135 field_password: Парола
136 field_new_password: Нова парола
137 field_password_confirmation: Потвърждение
138 field_version: Версия
139 field_type: Тип
140 field_host: Хост
141 field_port: Порт
142 field_account: Профил
143 field_base_dn: Base DN
144 field_attr_login: Login attribute
145 field_attr_firstname: Firstname attribute
146 field_attr_lastname: Lastname attribute
147 field_attr_mail: Email attribute
148 field_onthefly: Динамично създаване на потребител
149 field_start_date: Начална дата
150 field_done_ratio: %% Прогрес
151 field_auth_source: Начин на оторизация
152 field_hide_mail: Скрий e-mail адреса ми
153 field_comments: Коментар
154 field_url: Адрес
155 field_start_page: Начална страница
156 field_subproject: Подпроект
157 field_hours: Часове
158 field_activity: Дейност
159 field_spent_on: Дата
160 field_identifier: Идентификатор
161 field_is_filter: Използва се за филтър
162 field_issue_to_id: Свързана задача
163 field_delay: Отместване
164 field_assignable: Възможно е възлагане на задачи за тази роля
165 field_redirect_existing_links: Пренасочване на съществуващи линкове
166 field_estimated_hours: Изчислено време
167 field_default_value: Стойност по подразбиране
168
169 setting_app_title: Заглавие
170 setting_app_subtitle: Описание
171 setting_welcome_text: Допълнителен текст
172 setting_default_language: Език по подразбиране
173 setting_login_required: Изискване за вход в системата
174 setting_self_registration: Регистрация от потребители
175 setting_attachment_max_size: Максимална големина на прикачен файл
176 setting_issues_export_limit: Лимит за експорт на задачи
177 setting_mail_from: E-mail адрес за емисии
178 setting_host_name: Хост
179 setting_text_formatting: Форматиране на текста
180 setting_wiki_compression: Wiki компресиране на историята
181 setting_feeds_limit: Лимит на Feeds
182 setting_autofetch_changesets: Автоматично обработване на ревизиите
183 setting_sys_api_enabled: Разрешаване на WS за управление
184 setting_commit_ref_keywords: Отбелязващи ключови думи
185 setting_commit_fix_keywords: Приключващи ключови думи
186 setting_autologin: Автоматичен вход
187 setting_date_format: Формат на датата
188 setting_cross_project_issue_relations: Релации на задачи между проекти
189
190 label_user: Потребител
191 label_user_plural: Потребители
192 label_user_new: Нов потребител
193 label_project: Проект
194 label_project_new: Нов проект
195 label_project_plural: Проекти
196 label_project_all: Всички проекти
197 label_project_latest: Последни проекти
198 label_issue: Задача
199 label_issue_new: Нова задача
200 label_issue_plural: Задачи
201 label_issue_view_all: Всички задачи
202 label_document: Документ
203 label_document_new: Нов документ
204 label_document_plural: Документи
205 label_role: Роля
206 label_role_plural: Роли
207 label_role_new: Нова роля
208 label_role_and_permissions: Роли и права
209 label_member: Член
210 label_member_new: Нов член
211 label_member_plural: Членове
212 label_tracker: Тракер
213 label_tracker_plural: Тракери
214 label_tracker_new: Нов тракер
215 label_workflow: Работен процес
216 label_issue_status: Статус на задача
217 label_issue_status_plural: Статуси на задачи
218 label_issue_status_new: Нов статус
219 label_issue_category: Категория задача
220 label_issue_category_plural: Категории задачи
221 label_issue_category_new: Нова категория
222 label_custom_field: Потребителско поле
223 label_custom_field_plural: Потребителски полета
224 label_custom_field_new: Ново потребителско поле
225 label_enumerations: Списъци
226 label_enumeration_new: Нова стойност
227 label_information: Информация
228 label_information_plural: Информация
229 label_please_login: Вход
230 label_register: Регистрация
231 label_password_lost: Забравена парола
232 label_home: Начало
233 label_my_page: Лична страница
234 label_my_account: Профил
235 label_my_projects: Проекти, в които участвам
236 label_administration: Администрация
237 label_login: Вход
238 label_logout: Изход
239 label_help: Помощ
240 label_reported_issues: Публикувани задачи
241 label_assigned_to_me_issues: Възложени на мен
242 label_last_login: Последно свързване
243 label_last_updates: Последно обновена
244 label_last_updates_plural: %d последно обновени
245 label_registered_on: Регистрация
246 label_activity: Дейност
247 label_new: Нов
248 label_logged_as: Логнат като
249 label_environment: Среда
250 label_authentication: Оторизация
251 label_auth_source: Начин на оторозация
252 label_auth_source_new: Нов начин на оторизация
253 label_auth_source_plural: Начини на оторизация
254 label_subproject_plural: Подпроекти
255 label_min_max_length: Мин. - Макс. дължина
256 label_list: Списък
257 label_date: Дата
258 label_integer: Целочислен
259 label_boolean: Чекбокс
260 label_string: Текст
261 label_text: Дълъг текст
262 label_attribute: Атрибут
263 label_attribute_plural: Атрибути
264 label_download: %d Download
265 label_download_plural: %d Downloads
266 label_no_data: Няма изходни данни
267 label_change_status: Промяна на статуса
268 label_history: История
269 label_attachment: Файл
270 label_attachment_new: Нов файл
271 label_attachment_delete: Изтриване
272 label_attachment_plural: Файлове
273 label_report: Справка
274 label_report_plural: Справки
275 label_news: Новини
276 label_news_new: Добави
277 label_news_plural: Новини
278 label_news_latest: Последни новини
279 label_news_view_all: Виж всички
280 label_change_log: Изменения
281 label_settings: Настройки
282 label_overview: Общ изглед
283 label_version: Версия
284 label_version_new: Нова версия
285 label_version_plural: Версии
286 label_confirmation: Одобрение
287 label_export_to: Експорт към
288 label_read: Read...
289 label_public_projects: Публични проекти
290 label_open_issues: отворена
291 label_open_issues_plural: отворени
292 label_closed_issues: затворена
293 label_closed_issues_plural: затворени
294 label_total: Общо
295 label_permissions: Права
296 label_current_status: Текущ статус
297 label_new_statuses_allowed: Позволени статуси
298 label_all: всички
299 label_none: никакви
300 label_next: Следващ
301 label_previous: Предишен
302 label_used_by: Използва се от
303 label_details: Детайли
304 label_add_note: Добавяне на бележка
305 label_per_page: На страница
306 label_calendar: Календар
307 label_months_from: месеца от
308 label_gantt: Gantt
309 label_internal: Вътрешен
310 label_last_changes: последни %d промени
311 label_change_view_all: Виж всички промени
312 label_personalize_page: Персонализиране
313 label_comment: Коментар
314 label_comment_plural: Коментари
315 label_comment_add: Добавяне на коментар
316 label_comment_added: Добавен коментар
317 label_comment_delete: Изтриване на коментари
318 label_query: Потребителска справка
319 label_query_plural: Потребителски справки
320 label_query_new: Нова заявка
321 label_filter_add: Добави филтър
322 label_filter_plural: Филтри
323 label_equals: е
324 label_not_equals: не е
325 label_in_less_than: след по-малко от
326 label_in_more_than: след повече от
327 label_in: в следващите
328 label_today: днес
329 label_this_week: тази седмица
330 label_less_than_ago: преди по-малко от
331 label_more_than_ago: преди повече от
332 label_ago: преди
333 label_contains: съдържа
334 label_not_contains: не съдържа
335 label_day_plural: дни
336 label_repository: Хранилище
337 label_browse: Разглеждане
338 label_modification: %d промяна
339 label_modification_plural: %d промени
340 label_revision: Ревизия
341 label_revision_plural: Ревизии
342 label_added: добавено
343 label_modified: променено
344 label_deleted: изтрито
345 label_latest_revision: Последна ревизия
346 label_latest_revision_plural: Последни ревизии
347 label_view_revisions: Виж ревизиите
348 label_max_size: Максимална големина
349 label_on: 'от'
350 label_sort_highest: Премести най-горе
351 label_sort_higher: Премести по-горе
352 label_sort_lower: Премести по-долу
353 label_sort_lowest: Премести най-долу
354 label_roadmap: Пътна карта
355 label_roadmap_due_in: Излиза след %s
356 label_roadmap_overdue: %s закъснение
357 label_roadmap_no_issues: Няма задачи за тази версия
358 label_search: Търсене
359 label_result_plural: Pезултати
360 label_all_words: Всички думи
361 label_wiki: Wiki
362 label_wiki_edit: Wiki редакция
363 label_wiki_edit_plural: Wiki редакции
364 label_wiki_page: Wiki page
365 label_wiki_page_plural: Wiki pages
366 label_index_by_title: Индекс
367 label_index_by_date: Индекс по дата
368 label_current_version: Текуща версия
369 label_preview: Преглед
370 label_feed_plural: Feeds
371 label_changes_details: Подробни промени
372 label_issue_tracking: Тракинг
373 label_spent_time: Отделено време
374 label_f_hour: %.2f час
375 label_f_hour_plural: %.2f часа
376 label_time_tracking: Отделяне на време
377 label_change_plural: Промени
378 label_statistics: Статистики
379 label_commits_per_month: Ревизии по месеци
380 label_commits_per_author: Ревизии по автор
381 label_view_diff: Виж разликите
382 label_diff_inline: хоризонтално
383 label_diff_side_by_side: вертикално
384 label_options: Опции
385 label_copy_workflow_from: Копирай работния процес от
386 label_permissions_report: Справка за права
387 label_watched_issues: Наблюдавани задачи
388 label_related_issues: Свързани задачи
389 label_applied_status: Промени статуса на
390 label_loading: Зареждане...
391 label_relation_new: Нова релация
392 label_relation_delete: Изтриване на релация
393 label_relates_to: свързана със
394 label_duplicates: дублира
395 label_blocks: блокира
396 label_blocked_by: блокирана от
397 label_precedes: предшества
398 label_follows: изпълнява се след
399 label_end_to_start: end to start
400 label_end_to_end: end to end
401 label_start_to_start: start to start
402 label_start_to_end: start to end
403 label_stay_logged_in: Запомни ме
404 label_disabled: забранено
405 label_show_completed_versions: Показване на реализирани версии
406 label_me: аз
407 label_board: Форум
408 label_board_new: Нов форум
409 label_board_plural: Форуми
410 label_topic_plural: Теми
411 label_message_plural: Съобщения
412 label_message_last: Последно съобщение
413 label_message_new: Нова тема
414 label_reply_plural: Отговори
415 label_send_information: Изпращане на информацията до потребителя
416 label_year: Година
417 label_month: Месец
418 label_week: Седмица
419 label_date_from: От
420 label_date_to: До
421 label_language_based: В зависимост от езика
422 label_sort_by: Сортиране по %s
423 label_send_test_email: Изпращане на тестов e-mail
424 label_feeds_access_key_created_on: %s от създаването на RSS ключа
425 label_module_plural: Модули
426 label_added_time_by: Публикувана от %s преди %s
427 label_updated_time: Обновена преди %s
428 label_jump_to_a_project: Проект...
429
430 button_login: Вход
431 button_submit: Прикачване
432 button_save: Запис
433 button_check_all: Избор на всички
434 button_uncheck_all: Изчистване на всички
435 button_delete: Изтриване
436 button_create: Създаване
437 button_test: Тест
438 button_edit: Редакция
439 button_add: Добавяне
440 button_change: Промяна
441 button_apply: Приложи
442 button_clear: Изчисти
443 button_lock: Заключване
444 button_unlock: Отключване
445 button_download: Download
446 button_list: Списък
447 button_view: Преглед
448 button_move: Преместване
449 button_back: Назад
450 button_cancel: Отказ
451 button_activate: Активация
452 button_sort: Сортиране
453 button_log_time: Отделяне на време
454 button_rollback: Върни се към тази ревизия
455 button_watch: Наблюдавай
456 button_unwatch: Спри наблюдението
457 button_reply: Отговор
458 button_archive: Архивиране
459 button_unarchive: Разархивиране
460 button_reset: Генериране наново
461 button_rename: Преименуване
462
463 status_active: активен
464 status_registered: регистриран
465 status_locked: заключен
466
467 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
468 text_regexp_info: пр. ^[A-Z0-9]+$
469 text_min_max_length_info: 0 - без ограничения
470 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
471 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
472 text_are_you_sure: Сигурни ли сте?
473 text_journal_changed: промяна от %s на %s
474 text_journal_set_to: установено на %s
475 text_journal_deleted: изтрито
476 text_tip_task_begin_day: задача започваща този ден
477 text_tip_task_end_day: задача завършваща този ден
478 text_tip_task_begin_end_day: задача започваща и завършваща този ден
479 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
480 text_caracters_maximum: До %d символа.
481 text_length_between: От %d до %d символа.
482 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
483 text_unallowed_characters: Непозволени символи
484 text_comma_separated: Позволено е изброяване (с разделител запетая).
485 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
486 text_issue_added: Публикувана е нова задача с номер %s (от %s).
487 text_issue_updated: Задача %s е обновена (от %s).
488 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
489 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
490 text_issue_category_destroy_assignments: Премахване на връзките с категорията
491 text_issue_category_reassign_to: Преобвързване с категория
492
493 default_role_manager: Мениджър
494 default_role_developper: Разработчик
495 default_role_reporter: Публикуващ
496 default_tracker_bug: Бъг
497 default_tracker_feature: Функционалност
498 default_tracker_support: Поддръжка
499 default_issue_status_new: Нова
500 default_issue_status_assigned: Възложена
501 default_issue_status_resolved: Приключена
502 default_issue_status_feedback: Обратна връзка
503 default_issue_status_closed: Затворена
504 default_issue_status_rejected: Отхвърлена
505 default_doc_category_user: Документация за потребителя
506 default_doc_category_tech: Техническа документация
507 default_priority_low: Нисък
508 default_priority_normal: Нормален
509 default_priority_high: Висок
510 default_priority_urgent: Спешен
511 default_priority_immediate: Веднага
512 default_activity_design: Дизайн
513 default_activity_development: Разработка
514
515 enumeration_issue_priorities: Приоритети на задачи
516 enumeration_doc_categories: Категории документи
517 enumeration_activities: Дейности (time tracking)
518 label_file_plural: Файлове
519 label_changeset_plural: Ревизии
520 field_column_names: Колони
521 label_default_columns: По подразбиране
522 setting_issue_list_default_columns: Показвани колони по подразбиране
523 setting_repositories_encodings: Кодови таблици
524 notice_no_issue_selected: "Няма избрани задачи."
525 label_bulk_edit_selected_issues: Редактиране на задачи
526 label_no_change_option: (Без промяна)
527 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
528 label_theme: Тема
529 label_default: По подразбиране
530 label_search_titles_only: Само в заглавията
531 label_nobody: никой
532 button_change_password: Промяна на парола
533 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
534 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
535 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
536 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
537 setting_emails_footer: Подтекст за e-mail
538 label_float: Дробно
539 button_copy: Копиране
540 mail_body_account_information_external: Можете да използвате вашия "%s" профил за вход.
541 mail_body_account_information: Информацията за профила ви
542 setting_protocol: Протокол
543 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
544 setting_time_format: Формат на часа
545 label_registration_activation_by_email: активиране на профила по email
546 mail_subject_account_activation_request: Заявка за активиране на профил в %s
547 mail_body_account_activation_request: 'Има новорегистриран потребител (%s), очакващ вашето одобрение:'
548 label_registration_automatic_activation: автоматично активиране
549 label_registration_manual_activation: ръчно активиране
550 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
551 field_time_zone: Часова зона
552 text_caracters_minimum: Минимум %d символа.
553 setting_bcc_recipients: Получатели на скрито копие (bcc)
554 button_annotate: Анотация
555 label_issues_by: Задачи по %s
556 field_searchable: С възможност за търсене
557 label_display_per_page: 'На страница по: %s'
558 setting_per_page_options: Опции за страниране
559 label_age: Възраст
560 notice_default_data_loaded: Примерната информацията е успешно заредена.
561 text_load_default_configuration: Зареждане на примерна информация
562 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
563 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %s"
564 button_update: Обновяване
565 label_change_properties: Промяна на настройки
566 label_general: Основни
567 label_repository_plural: Хранилища
568 label_associated_revisions: Асоциирани ревизии
569 setting_user_format: Потребителски формат
570 text_status_changed_by_changeset: Приложено с ревизия %s.
571 label_more: Още
572 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
573 label_scm: SCM (Система за контрол на кода)
574 text_select_project_modules: 'Изберете активните модули за този проект:'
575 label_issue_added: Добавена задача
576 label_issue_updated: Обновена задача
577 label_document_added: Добавен документ
578 label_message_posted: Добавено съобщение
579 label_file_added: Добавен файл
580 label_news_added: Добавена новина
581 project_module_boards: Форуми
582 project_module_issue_tracking: Тракинг
583 project_module_wiki: Wiki
584 project_module_files: Файлове
585 project_module_documents: Документи
586 project_module_repository: Хранилище
587 project_module_news: Новини
588 project_module_time_tracking: Отделяне на време
589 text_file_repository_writable: Възможност за писане в хранилището с файлове
590 text_default_administrator_account_changed: Сменен фабричния администраторски профил
591 text_rmagick_available: Наличен RMagick (по избор)
592 button_configure: Конфигуриране
593 label_plugins: Плъгини
594 label_ldap_authentication: LDAP оторизация
595 label_downloads_abbr: D/L
596 label_this_month: текущия месец
597 label_last_n_days: последните %d дни
598 label_all_time: всички
599 label_this_year: текущата година
600 label_date_range: Период
601 label_last_week: последната седмица
602 label_yesterday: вчера
603 label_last_month: последния месец
604 label_add_another_file: Добавяне на друг файл
605 label_optional_description: Незадължително описание
606 text_destroy_time_entries_question: %.02f часа са отделени на задачите, които искате да изтриете. Какво избирате?
607 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
608 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
609 text_destroy_time_entries: Изтриване на отделеното време
610 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
611 setting_activity_days_default: Брой дни показвани на таб Дейност
612 label_chronological_order: Хронологичен ред
613 field_comments_sorting: Сортиране на коментарите
614 label_reverse_chronological_order: Обратен хронологичен ред
615 label_preferences: Предпочитания
616 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
617 label_overall_activity: Цялостна дейност
618 setting_default_projects_public: Новите проекти са публични по подразбиране
619 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
620 label_planning: Планиране
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
622 label_and_its_subprojects: %s and its subprojects
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_subject_reminder: "%d issue(s) due in the next days"
625 text_user_wrote: '%s wrote:'
626 label_duplicated_by: duplicated by
627 setting_enabled_scm: Enabled SCM
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
630 label_incoming_emails: Incoming emails
631 label_generate_key: Generate a key
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
633 setting_mail_handler_api_key: API key
634 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
635 field_parent_title: Parent page
636 label_issue_watchers: Watchers
637 setting_commit_logs_encoding: Commit messages encoding
638 button_quote: Quote
639 setting_sequential_project_identifiers: Generate sequential project identifiers
640 notice_unable_delete_version: Unable to delete version
641 label_renamed: renamed
642 label_copied: copied
643 setting_plain_text_mail: plain text only (no HTML)
644 permission_view_files: View files
645 permission_edit_issues: Edit issues
646 permission_edit_own_time_entries: Edit own time logs
647 permission_manage_public_queries: Manage public queries
648 permission_add_issues: Add issues
649 permission_log_time: Log spent time
650 permission_view_changesets: View changesets
651 permission_view_time_entries: View spent time
652 permission_manage_versions: Manage versions
653 permission_manage_wiki: Manage wiki
654 permission_manage_categories: Manage issue categories
655 permission_protect_wiki_pages: Protect wiki pages
656 permission_comment_news: Comment news
657 permission_delete_messages: Delete messages
658 permission_select_project_modules: Select project modules
659 permission_manage_documents: Manage documents
660 permission_edit_wiki_pages: Edit wiki pages
661 permission_add_issue_watchers: Add watchers
662 permission_view_gantt: View gantt chart
663 permission_move_issues: Move issues
664 permission_manage_issue_relations: Manage issue relations
665 permission_delete_wiki_pages: Delete wiki pages
666 permission_manage_boards: Manage boards
667 permission_delete_wiki_pages_attachments: Delete attachments
668 permission_view_wiki_edits: View wiki history
669 permission_add_messages: Post messages
670 permission_view_messages: View messages
671 permission_manage_files: Manage files
672 permission_edit_issue_notes: Edit notes
673 permission_manage_news: Manage news
674 permission_view_calendar: View calendrier
675 permission_manage_members: Manage members
676 permission_edit_messages: Edit messages
677 permission_delete_issues: Delete issues
678 permission_view_issue_watchers: View watchers list
679 permission_manage_repository: Manage repository
680 permission_commit_access: Commit access
681 permission_browse_repository: Browse repository
682 permission_view_documents: View documents
683 permission_edit_project: Edit project
684 permission_add_issue_notes: Add notes
685 permission_save_queries: Save queries
686 permission_view_wiki_pages: View wiki
687 permission_rename_wiki_pages: Rename wiki pages
688 permission_edit_time_entries: Edit time logs
689 permission_edit_own_issue_notes: Edit own notes
690 setting_gravatar_enabled: Use Gravatar user icons
691 label_example: Example
692 text_repository_usernames_mapping: "Select ou 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."
693 permission_edit_own_messages: Edit own messages
694 permission_delete_own_messages: Delete own messages
695 label_user_activity: "%s's activity"
696 label_updated_time_by: Updated by %s %s ago
697 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
698 setting_diff_max_lines_displayed: Max number of diff lines displayed
699 text_plugin_assets_writable: Plugin assets directory writable
700 warning_attachments_not_saved: "%d file(s) could not be saved."
701 button_create_and_continue: Create and continue
702 text_custom_field_possible_values_info: 'One line for each value'
703 label_display: Display
704 field_editable: Editable
705 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
706 field_identity_url: OpenID URL
707 setting_openid: Allow OpenID login and registration
708 label_login_with_open_id_option: or login with OpenID
709 field_watcher: Watcher
95 actionview_instancetag_blank_option: Изберете
96
97 general_text_No: 'Не'
98 general_text_Yes: 'Да'
99 general_text_no: 'не'
100 general_text_yes: 'да'
101 general_lang_name: 'Bulgarian'
102 general_csv_separator: ','
103 general_csv_decimal_separator: '.'
104 general_csv_encoding: UTF-8
105 general_pdf_encoding: UTF-8
106 general_first_day_of_week: '1'
107
108 notice_account_updated: Профилът е обновен успешно.
109 notice_account_invalid_creditentials: Невалиден потребител или парола.
110 notice_account_password_updated: Паролата е успешно променена.
111 notice_account_wrong_password: Грешна парола
112 notice_account_register_done: Профилът е създаден успешно.
113 notice_account_unknown_email: Непознат e-mail.
114 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
115 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
116 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
117 notice_successful_create: Успешно създаване.
118 notice_successful_update: Успешно обновяване.
119 notice_successful_delete: Успешно изтриване.
120 notice_successful_connection: Успешно свързване.
121 notice_file_not_found: Несъществуваща или преместена страница.
122 notice_locking_conflict: Друг потребител променя тези данни в момента.
123 notice_not_authorized: Нямате право на достъп до тази страница.
124 notice_email_sent: "Изпратен e-mail на {{value}}"
125 notice_email_error: "Грешка при изпращане на e-mail ({{value}})"
126 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
127
128 error_scm_not_found: Несъществуващ обект в хранилището.
129 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: {{value}}"
130
131 mail_subject_lost_password: "Вашата парола ({{value}})"
132 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
133 mail_subject_register: "Активация на профил ({{value}})"
134 mail_body_register: 'За да активирате профила си използвайте следния линк:'
135
136 gui_validation_error: 1 грешка
137 gui_validation_error_plural: "{{count}} грешки"
138
139 field_name: Име
140 field_description: Описание
141 field_summary: Групиран изглед
142 field_is_required: Задължително
143 field_firstname: Име
144 field_lastname: Фамилия
145 field_mail: Email
146 field_filename: Файл
147 field_filesize: Големина
148 field_downloads: Downloads
149 field_author: Автор
150 field_created_on: От дата
151 field_updated_on: Обновена
152 field_field_format: Тип
153 field_is_for_all: За всички проекти
154 field_possible_values: Възможни стойности
155 field_regexp: Регулярен израз
156 field_min_length: Мин. дължина
157 field_max_length: Макс. дължина
158 field_value: Стойност
159 field_category: Категория
160 field_title: Заглавие
161 field_project: Проект
162 field_issue: Задача
163 field_status: Статус
164 field_notes: Бележка
165 field_is_closed: Затворена задача
166 field_is_default: Статус по подразбиране
167 field_tracker: Тракер
168 field_subject: Относно
169 field_due_date: Крайна дата
170 field_assigned_to: Възложена на
171 field_priority: Приоритет
172 field_fixed_version: Планувана версия
173 field_user: Потребител
174 field_role: Роля
175 field_homepage: Начална страница
176 field_is_public: Публичен
177 field_parent: Подпроект на
178 field_is_in_chlog: Да се вижда ли в Изменения
179 field_is_in_roadmap: Да се вижда ли в Пътна карта
180 field_login: Потребител
181 field_mail_notification: Известия по пощата
182 field_admin: Администратор
183 field_last_login_on: Последно свързване
184 field_language: Език
185 field_effective_date: Дата
186 field_password: Парола
187 field_new_password: Нова парола
188 field_password_confirmation: Потвърждение
189 field_version: Версия
190 field_type: Тип
191 field_host: Хост
192 field_port: Порт
193 field_account: Профил
194 field_base_dn: Base DN
195 field_attr_login: Login attribute
196 field_attr_firstname: Firstname attribute
197 field_attr_lastname: Lastname attribute
198 field_attr_mail: Email attribute
199 field_onthefly: Динамично създаване на потребител
200 field_start_date: Начална дата
201 field_done_ratio: %% Прогрес
202 field_auth_source: Начин на оторизация
203 field_hide_mail: Скрий e-mail адреса ми
204 field_comments: Коментар
205 field_url: Адрес
206 field_start_page: Начална страница
207 field_subproject: Подпроект
208 field_hours: Часове
209 field_activity: Дейност
210 field_spent_on: Дата
211 field_identifier: Идентификатор
212 field_is_filter: Използва се за филтър
213 field_issue_to_id: Свързана задача
214 field_delay: Отместване
215 field_assignable: Възможно е възлагане на задачи за тази роля
216 field_redirect_existing_links: Пренасочване на съществуващи линкове
217 field_estimated_hours: Изчислено време
218 field_default_value: Стойност по подразбиране
219
220 setting_app_title: Заглавие
221 setting_app_subtitle: Описание
222 setting_welcome_text: Допълнителен текст
223 setting_default_language: Език по подразбиране
224 setting_login_required: Изискване за вход в системата
225 setting_self_registration: Регистрация от потребители
226 setting_attachment_max_size: Максимална големина на прикачен файл
227 setting_issues_export_limit: Лимит за експорт на задачи
228 setting_mail_from: E-mail адрес за емисии
229 setting_host_name: Хост
230 setting_text_formatting: Форматиране на текста
231 setting_wiki_compression: Wiki компресиране на историята
232 setting_feeds_limit: Лимит на Feeds
233 setting_autofetch_changesets: Автоматично обработване на ревизиите
234 setting_sys_api_enabled: Разрешаване на WS за управление
235 setting_commit_ref_keywords: Отбелязващи ключови думи
236 setting_commit_fix_keywords: Приключващи ключови думи
237 setting_autologin: Автоматичен вход
238 setting_date_format: Формат на датата
239 setting_cross_project_issue_relations: Релации на задачи между проекти
240
241 label_user: Потребител
242 label_user_plural: Потребители
243 label_user_new: Нов потребител
244 label_project: Проект
245 label_project_new: Нов проект
246 label_project_plural: Проекти
247 label_x_projects:
248 zero: no projects
249 one: 1 project
250 other: "{{count}} projects"
251 label_project_all: Всички проекти
252 label_project_latest: Последни проекти
253 label_issue: Задача
254 label_issue_new: Нова задача
255 label_issue_plural: Задачи
256 label_issue_view_all: Всички задачи
257 label_document: Документ
258 label_document_new: Нов документ
259 label_document_plural: Документи
260 label_role: Роля
261 label_role_plural: Роли
262 label_role_new: Нова роля
263 label_role_and_permissions: Роли и права
264 label_member: Член
265 label_member_new: Нов член
266 label_member_plural: Членове
267 label_tracker: Тракер
268 label_tracker_plural: Тракери
269 label_tracker_new: Нов тракер
270 label_workflow: Работен процес
271 label_issue_status: Статус на задача
272 label_issue_status_plural: Статуси на задачи
273 label_issue_status_new: Нов статус
274 label_issue_category: Категория задача
275 label_issue_category_plural: Категории задачи
276 label_issue_category_new: Нова категория
277 label_custom_field: Потребителско поле
278 label_custom_field_plural: Потребителски полета
279 label_custom_field_new: Ново потребителско поле
280 label_enumerations: Списъци
281 label_enumeration_new: Нова стойност
282 label_information: Информация
283 label_information_plural: Информация
284 label_please_login: Вход
285 label_register: Регистрация
286 label_password_lost: Забравена парола
287 label_home: Начало
288 label_my_page: Лична страница
289 label_my_account: Профил
290 label_my_projects: Проекти, в които участвам
291 label_administration: Администрация
292 label_login: Вход
293 label_logout: Изход
294 label_help: Помощ
295 label_reported_issues: Публикувани задачи
296 label_assigned_to_me_issues: Възложени на мен
297 label_last_login: Последно свързване
298 label_registered_on: Регистрация
299 label_activity: Дейност
300 label_new: Нов
301 label_logged_as: Логнат като
302 label_environment: Среда
303 label_authentication: Оторизация
304 label_auth_source: Начин на оторозация
305 label_auth_source_new: Нов начин на оторизация
306 label_auth_source_plural: Начини на оторизация
307 label_subproject_plural: Подпроекти
308 label_min_max_length: Мин. - Макс. дължина
309 label_list: Списък
310 label_date: Дата
311 label_integer: Целочислен
312 label_boolean: Чекбокс
313 label_string: Текст
314 label_text: Дълъг текст
315 label_attribute: Атрибут
316 label_attribute_plural: Атрибути
317 label_download: "{{count}} Download"
318 label_download_plural: "{{count}} Downloads"
319 label_no_data: Няма изходни данни
320 label_change_status: Промяна на статуса
321 label_history: История
322 label_attachment: Файл
323 label_attachment_new: Нов файл
324 label_attachment_delete: Изтриване
325 label_attachment_plural: Файлове
326 label_report: Справка
327 label_report_plural: Справки
328 label_news: Новини
329 label_news_new: Добави
330 label_news_plural: Новини
331 label_news_latest: Последни новини
332 label_news_view_all: Виж всички
333 label_change_log: Изменения
334 label_settings: Настройки
335 label_overview: Общ изглед
336 label_version: Версия
337 label_version_new: Нова версия
338 label_version_plural: Версии
339 label_confirmation: Одобрение
340 label_export_to: Експорт към
341 label_read: Read...
342 label_public_projects: Публични проекти
343 label_open_issues: отворена
344 label_open_issues_plural: отворени
345 label_closed_issues: затворена
346 label_closed_issues_plural: затворени
347 label_x_open_issues_abbr_on_total:
348 zero: 0 open / {{total}}
349 one: 1 open / {{total}}
350 other: "{{count}} open / {{total}}"
351 label_x_open_issues_abbr:
352 zero: 0 open
353 one: 1 open
354 other: "{{count}} open"
355 label_x_closed_issues_abbr:
356 zero: 0 closed
357 one: 1 closed
358 other: "{{count}} closed"
359 label_total: Общо
360 label_permissions: Права
361 label_current_status: Текущ статус
362 label_new_statuses_allowed: Позволени статуси
363 label_all: всички
364 label_none: никакви
365 label_next: Следващ
366 label_previous: Предишен
367 label_used_by: Използва се от
368 label_details: Детайли
369 label_add_note: Добавяне на бележка
370 label_per_page: На страница
371 label_calendar: Календар
372 label_months_from: месеца от
373 label_gantt: Gantt
374 label_internal: Вътрешен
375 label_last_changes: "последни {{count}} промени"
376 label_change_view_all: Виж всички промени
377 label_personalize_page: Персонализиране
378 label_comment: Коментар
379 label_comment_plural: Коментари
380 label_x_comments:
381 zero: no comments
382 one: 1 comment
383 other: "{{count}} comments"
384 label_comment_add: Добавяне на коментар
385 label_comment_added: Добавен коментар
386 label_comment_delete: Изтриване на коментари
387 label_query: Потребителска справка
388 label_query_plural: Потребителски справки
389 label_query_new: Нова заявка
390 label_filter_add: Добави филтър
391 label_filter_plural: Филтри
392 label_equals: е
393 label_not_equals: не е
394 label_in_less_than: след по-малко от
395 label_in_more_than: след повече от
396 label_in: в следващите
397 label_today: днес
398 label_this_week: тази седмица
399 label_less_than_ago: преди по-малко от
400 label_more_than_ago: преди повече от
401 label_ago: преди
402 label_contains: съдържа
403 label_not_contains: не съдържа
404 label_day_plural: дни
405 label_repository: Хранилище
406 label_browse: Разглеждане
407 label_modification: "{{count}} промяна"
408 label_modification_plural: "{{count}} промени"
409 label_revision: Ревизия
410 label_revision_plural: Ревизии
411 label_added: добавено
412 label_modified: променено
413 label_deleted: изтрито
414 label_latest_revision: Последна ревизия
415 label_latest_revision_plural: Последни ревизии
416 label_view_revisions: Виж ревизиите
417 label_max_size: Максимална големина
418 label_sort_highest: Премести най-горе
419 label_sort_higher: Премести по-горе
420 label_sort_lower: Премести по-долу
421 label_sort_lowest: Премести най-долу
422 label_roadmap: Пътна карта
423 label_roadmap_due_in: "Излиза след {{value}}"
424 label_roadmap_overdue: "{{value}} закъснение"
425 label_roadmap_no_issues: Няма задачи за тази версия
426 label_search: Търсене
427 label_result_plural: Pезултати
428 label_all_words: Всички думи
429 label_wiki: Wiki
430 label_wiki_edit: Wiki редакция
431 label_wiki_edit_plural: Wiki редакции
432 label_wiki_page: Wiki page
433 label_wiki_page_plural: Wiki pages
434 label_index_by_title: Индекс
435 label_index_by_date: Индекс по дата
436 label_current_version: Текуща версия
437 label_preview: Преглед
438 label_feed_plural: Feeds
439 label_changes_details: Подробни промени
440 label_issue_tracking: Тракинг
441 label_spent_time: Отделено време
442 label_f_hour: "{{value}} час"
443 label_f_hour_plural: "{{value}} часа"
444 label_time_tracking: Отделяне на време
445 label_change_plural: Промени
446 label_statistics: Статистики
447 label_commits_per_month: Ревизии по месеци
448 label_commits_per_author: Ревизии по автор
449 label_view_diff: Виж разликите
450 label_diff_inline: хоризонтално
451 label_diff_side_by_side: вертикално
452 label_options: Опции
453 label_copy_workflow_from: Копирай работния процес от
454 label_permissions_report: Справка за права
455 label_watched_issues: Наблюдавани задачи
456 label_related_issues: Свързани задачи
457 label_applied_status: Промени статуса на
458 label_loading: Зареждане...
459 label_relation_new: Нова релация
460 label_relation_delete: Изтриване на релация
461 label_relates_to: свързана със
462 label_duplicates: дублира
463 label_blocks: блокира
464 label_blocked_by: блокирана от
465 label_precedes: предшества
466 label_follows: изпълнява се след
467 label_end_to_start: end to start
468 label_end_to_end: end to end
469 label_start_to_start: start to start
470 label_start_to_end: start to end
471 label_stay_logged_in: Запомни ме
472 label_disabled: забранено
473 label_show_completed_versions: Показване на реализирани версии
474 label_me: аз
475 label_board: Форум
476 label_board_new: Нов форум
477 label_board_plural: Форуми
478 label_topic_plural: Теми
479 label_message_plural: Съобщения
480 label_message_last: Последно съобщение
481 label_message_new: Нова тема
482 label_reply_plural: Отговори
483 label_send_information: Изпращане на информацията до потребителя
484 label_year: Година
485 label_month: Месец
486 label_week: Седмица
487 label_date_from: От
488 label_date_to: До
489 label_language_based: В зависимост от езика
490 label_sort_by: "Сортиране по {{value}}"
491 label_send_test_email: Изпращане на тестов e-mail
492 label_feeds_access_key_created_on: "{{value}} от създаването на RSS ключа"
493 label_module_plural: Модули
494 label_added_time_by: "Публикувана от {{author}} преди {{age}}"
495 label_updated_time: "Обновена преди {{value}}"
496 label_jump_to_a_project: Проект...
497
498 button_login: Вход
499 button_submit: Прикачване
500 button_save: Запис
501 button_check_all: Избор на всички
502 button_uncheck_all: Изчистване на всички
503 button_delete: Изтриване
504 button_create: Създаване
505 button_test: Тест
506 button_edit: Редакция
507 button_add: Добавяне
508 button_change: Промяна
509 button_apply: Приложи
510 button_clear: Изчисти
511 button_lock: Заключване
512 button_unlock: Отключване
513 button_download: Download
514 button_list: Списък
515 button_view: Преглед
516 button_move: Преместване
517 button_back: Назад
518 button_cancel: Отказ
519 button_activate: Активация
520 button_sort: Сортиране
521 button_log_time: Отделяне на време
522 button_rollback: Върни се към тази ревизия
523 button_watch: Наблюдавай
524 button_unwatch: Спри наблюдението
525 button_reply: Отговор
526 button_archive: Архивиране
527 button_unarchive: Разархивиране
528 button_reset: Генериране наново
529 button_rename: Преименуване
530
531 status_active: активен
532 status_registered: регистриран
533 status_locked: заключен
534
535 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
536 text_regexp_info: пр. ^[A-Z0-9]+$
537 text_min_max_length_info: 0 - без ограничения
538 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
539 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
540 text_are_you_sure: Сигурни ли сте?
541 text_journal_changed: "промяна от {{old}} на {{new}}"
542 text_journal_set_to: "установено на {{value}}"
543 text_journal_deleted: изтрито
544 text_tip_task_begin_day: задача започваща този ден
545 text_tip_task_end_day: задача завършваща този ден
546 text_tip_task_begin_end_day: задача започваща и завършваща този ден
547 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
548 text_caracters_maximum: "До {{count}} символа."
549 text_length_between: "От {{min}} до {{max}} символа."
550 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
551 text_unallowed_characters: Непозволени символи
552 text_comma_separated: Позволено е изброяване (с разделител запетая).
553 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
554 text_issue_added: "Публикувана е нова задача с номер {{id}} (от {{author}})."
555 text_issue_updated: "Задача {{id}} е обновена (от {{author}})."
556 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
557 text_issue_category_destroy_question: "Има задачи ({{count}}) обвързани с тази категория. Какво ще изберете?"
558 text_issue_category_destroy_assignments: Премахване на връзките с категорията
559 text_issue_category_reassign_to: Преобвързване с категория
560
561 default_role_manager: Мениджър
562 default_role_developper: Разработчик
563 default_role_reporter: Публикуващ
564 default_tracker_bug: Бъг
565 default_tracker_feature: Функционалност
566 default_tracker_support: Поддръжка
567 default_issue_status_new: Нова
568 default_issue_status_assigned: Възложена
569 default_issue_status_resolved: Приключена
570 default_issue_status_feedback: Обратна връзка
571 default_issue_status_closed: Затворена
572 default_issue_status_rejected: Отхвърлена
573 default_doc_category_user: Документация за потребителя
574 default_doc_category_tech: Техническа документация
575 default_priority_low: Нисък
576 default_priority_normal: Нормален
577 default_priority_high: Висок
578 default_priority_urgent: Спешен
579 default_priority_immediate: Веднага
580 default_activity_design: Дизайн
581 default_activity_development: Разработка
582
583 enumeration_issue_priorities: Приоритети на задачи
584 enumeration_doc_categories: Категории документи
585 enumeration_activities: Дейности (time tracking)
586 label_file_plural: Файлове
587 label_changeset_plural: Ревизии
588 field_column_names: Колони
589 label_default_columns: По подразбиране
590 setting_issue_list_default_columns: Показвани колони по подразбиране
591 setting_repositories_encodings: Кодови таблици
592 notice_no_issue_selected: "Няма избрани задачи."
593 label_bulk_edit_selected_issues: Редактиране на задачи
594 label_no_change_option: (Без промяна)
595 notice_failed_to_save_issues: "Неуспешен запис на {{count}} задачи от {{total}} избрани: {{ids}}."
596 label_theme: Тема
597 label_default: По подразбиране
598 label_search_titles_only: Само в заглавията
599 label_nobody: никой
600 button_change_password: Промяна на парола
601 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
602 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
603 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
604 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
605 setting_emails_footer: Подтекст за e-mail
606 label_float: Дробно
607 button_copy: Копиране
608 mail_body_account_information_external: "Можете да използвате вашия {{value}} профил за вход."
609 mail_body_account_information: Информацията за профила ви
610 setting_protocol: Протокол
611 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
612 setting_time_format: Формат на часа
613 label_registration_activation_by_email: активиране на профила по email
614 mail_subject_account_activation_request: "Заявка за активиране на профил в {{value}}"
615 mail_body_account_activation_request: "Има новорегистриран потребител ({{value}}), очакващ вашето одобрение:'"
616 label_registration_automatic_activation: автоматично активиране
617 label_registration_manual_activation: ръчно активиране
618 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
619 field_time_zone: Часова зона
620 text_caracters_minimum: "Минимум {{count}} символа."
621 setting_bcc_recipients: Получатели на скрито копие (bcc)
622 button_annotate: Анотация
623 label_issues_by: "Задачи по {{value}}"
624 field_searchable: С възможност за търсене
625 label_display_per_page: "На страница по: {{value}}'"
626 setting_per_page_options: Опции за страниране
627 label_age: Възраст
628 notice_default_data_loaded: Примерната информацията е успешно заредена.
629 text_load_default_configuration: Зареждане на примерна информация
630 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
631 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: {{value}}"
632 button_update: Обновяване
633 label_change_properties: Промяна на настройки
634 label_general: Основни
635 label_repository_plural: Хранилища
636 label_associated_revisions: Асоциирани ревизии
637 setting_user_format: Потребителски формат
638 text_status_changed_by_changeset: "Приложено с ревизия {{value}}."
639 label_more: Още
640 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
641 label_scm: SCM (Система за контрол на кода)
642 text_select_project_modules: 'Изберете активните модули за този проект:'
643 label_issue_added: Добавена задача
644 label_issue_updated: Обновена задача
645 label_document_added: Добавен документ
646 label_message_posted: Добавено съобщение
647 label_file_added: Добавен файл
648 label_news_added: Добавена новина
649 project_module_boards: Форуми
650 project_module_issue_tracking: Тракинг
651 project_module_wiki: Wiki
652 project_module_files: Файлове
653 project_module_documents: Документи
654 project_module_repository: Хранилище
655 project_module_news: Новини
656 project_module_time_tracking: Отделяне на време
657 text_file_repository_writable: Възможност за писане в хранилището с файлове
658 text_default_administrator_account_changed: Сменен фабричния администраторски профил
659 text_rmagick_available: Наличен RMagick (по избор)
660 button_configure: Конфигуриране
661 label_plugins: Плъгини
662 label_ldap_authentication: LDAP оторизация
663 label_downloads_abbr: D/L
664 label_this_month: текущия месец
665 label_last_n_days: "последните {{count}} дни"
666 label_all_time: всички
667 label_this_year: текущата година
668 label_date_range: Период
669 label_last_week: последната седмица
670 label_yesterday: вчера
671 label_last_month: последния месец
672 label_add_another_file: Добавяне на друг файл
673 label_optional_description: Незадължително описание
674 text_destroy_time_entries_question: %.02f часа са отделени на задачите, които искате да изтриете. Какво избирате?
675 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
676 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
677 text_destroy_time_entries: Изтриване на отделеното време
678 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
679 setting_activity_days_default: Брой дни показвани на таб Дейност
680 label_chronological_order: Хронологичен ред
681 field_comments_sorting: Сортиране на коментарите
682 label_reverse_chronological_order: Обратен хронологичен ред
683 label_preferences: Предпочитания
684 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
685 label_overall_activity: Цялостна дейност
686 setting_default_projects_public: Новите проекти са публични по подразбиране
687 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
688 label_planning: Планиране
689 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
690 label_and_its_subprojects: "{{value}} and its subprojects"
691 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
692 mail_subject_reminder: "{{count}} issue(s) due in the next days"
693 text_user_wrote: "{{value}} wrote:'"
694 label_duplicated_by: duplicated by
695 setting_enabled_scm: Enabled SCM
696 text_enumeration_category_reassign_to: 'Reassign them to this value:'
697 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
698 label_incoming_emails: Incoming emails
699 label_generate_key: Generate a key
700 setting_mail_handler_api_enabled: Enable WS for incoming emails
701 setting_mail_handler_api_key: API key
702 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
703 field_parent_title: Parent page
704 label_issue_watchers: Watchers
705 setting_commit_logs_encoding: Commit messages encoding
706 button_quote: Quote
707 setting_sequential_project_identifiers: Generate sequential project identifiers
708 notice_unable_delete_version: Unable to delete version
709 label_renamed: renamed
710 label_copied: copied
711 setting_plain_text_mail: plain text only (no HTML)
712 permission_view_files: View files
713 permission_edit_issues: Edit issues
714 permission_edit_own_time_entries: Edit own time logs
715 permission_manage_public_queries: Manage public queries
716 permission_add_issues: Add issues
717 permission_log_time: Log spent time
718 permission_view_changesets: View changesets
719 permission_view_time_entries: View spent time
720 permission_manage_versions: Manage versions
721 permission_manage_wiki: Manage wiki
722 permission_manage_categories: Manage issue categories
723 permission_protect_wiki_pages: Protect wiki pages
724 permission_comment_news: Comment news
725 permission_delete_messages: Delete messages
726 permission_select_project_modules: Select project modules
727 permission_manage_documents: Manage documents
728 permission_edit_wiki_pages: Edit wiki pages
729 permission_add_issue_watchers: Add watchers
730 permission_view_gantt: View gantt chart
731 permission_move_issues: Move issues
732 permission_manage_issue_relations: Manage issue relations
733 permission_delete_wiki_pages: Delete wiki pages
734 permission_manage_boards: Manage boards
735 permission_delete_wiki_pages_attachments: Delete attachments
736 permission_view_wiki_edits: View wiki history
737 permission_add_messages: Post messages
738 permission_view_messages: View messages
739 permission_manage_files: Manage files
740 permission_edit_issue_notes: Edit notes
741 permission_manage_news: Manage news
742 permission_view_calendar: View calendrier
743 permission_manage_members: Manage members
744 permission_edit_messages: Edit messages
745 permission_delete_issues: Delete issues
746 permission_view_issue_watchers: View watchers list
747 permission_manage_repository: Manage repository
748 permission_commit_access: Commit access
749 permission_browse_repository: Browse repository
750 permission_view_documents: View documents
751 permission_edit_project: Edit project
752 permission_add_issue_notes: Add notes
753 permission_save_queries: Save queries
754 permission_view_wiki_pages: View wiki
755 permission_rename_wiki_pages: Rename wiki pages
756 permission_edit_time_entries: Edit time logs
757 permission_edit_own_issue_notes: Edit own notes
758 setting_gravatar_enabled: Use Gravatar user icons
759 label_example: Example
760 text_repository_usernames_mapping: "Select ou 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."
761 permission_edit_own_messages: Edit own messages
762 permission_delete_own_messages: Delete own messages
763 label_user_activity: "{{value}}'s activity"
764 label_updated_time_by: "Updated by {{author}} {{age}} ago"
765 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
766 setting_diff_max_lines_displayed: Max number of diff lines displayed
767 text_plugin_assets_writable: Plugin assets directory writable
768 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
769 button_create_and_continue: Create and continue
770 text_custom_field_possible_values_info: 'One line for each value'
771 label_display: Display
772 field_editable: Editable
773 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
This diff has been collapsed as it changes many lines, (1480 lines changed) Show them Hide them
@@ -1,710 +1,774
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 ca:
2 date:
3 formats:
4 # Use the strftime parameters for formats.
5 # When no format has been given, it uses default.
6 # You can provide other formats here if you like!
7 default: "%Y-%m-%d"
8 short: "%b %d"
9 long: "%B %d, %Y"
10
11 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
12 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
13
14 # Don't forget the nil at the beginning; there's no such thing as a 0th month
15 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
16 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
17 # Used in date_select and datime_select.
18 order: [ :year, :month, :day ]
2 19
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gener,Febrer,Març,Abril,Maig,Juny,Juliol,Agost,Setembre,Octubre,Novembre,Desembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Abr,Mai,Jun,Jul,Ago,Set,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dies
10 actionview_datehelper_time_in_words_hour_about: aproximadament una hora
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadament %d hores
12 actionview_datehelper_time_in_words_hour_about_single: aproximadament una hora
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: mig minut
15 actionview_datehelper_time_in_words_minute_less_than: "menys d'un minut"
16 actionview_datehelper_time_in_words_minute_plural: %d minuts
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: "menys d'un segon"
19 actionview_datehelper_time_in_words_second_less_than_plural: menys de %d segons
20 actionview_instancetag_blank_option: Seleccioneu
20 time:
21 formats:
22 default: "%a, %d %b %Y %H:%M:%S %z"
23 short: "%d %b %H:%M"
24 long: "%B %d, %Y %H:%M"
25 am: "am"
26 pm: "pm"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: "half a minute"
31 less_than_x_seconds:
32 one: "less than 1 second"
33 other: "less than {{count}} seconds"
34 x_seconds:
35 one: "1 second"
36 other: "{{count}} seconds"
37 less_than_x_minutes:
38 one: "less than a minute"
39 other: "less than {{count}} minutes"
40 x_minutes:
41 one: "1 minute"
42 other: "{{count}} minutes"
43 about_x_hours:
44 one: "about 1 hour"
45 other: "about {{count}} hours"
46 x_days:
47 one: "1 day"
48 other: "{{count}} days"
49 about_x_months:
50 one: "about 1 month"
51 other: "about {{count}} months"
52 x_months:
53 one: "1 month"
54 other: "{{count}} months"
55 about_x_years:
56 one: "about 1 year"
57 other: "about {{count}} years"
58 over_x_years:
59 one: "over 1 year"
60 other: "over {{count}} years"
61
62 # Used in array.to_sentence.
63 support:
64 array:
65 sentence_connector: "and"
66 skip_last_comma: false
67
68 activerecord:
69 errors:
70 messages:
71 inclusion: "no està inclòs a la llista"
72 exclusion: "està reservat"
73 invalid: "no és vàlid"
74 confirmation: "la confirmació no coincideix"
75 accepted: "s'ha d'acceptar"
76 empty: "no pot estar buit"
77 blank: "no pot estar en blanc"
78 too_long: "és massa llarg"
79 too_short: "és massa curt"
80 wrong_length: "la longitud és incorrecta"
81 taken: "ja s'està utilitzant"
82 not_a_number: "no és un número"
83 not_a_date: "no és una data vàlida"
84 greater_than: "must be greater than {{count}}"
85 greater_than_or_equal_to: "must be greater than or equal to {{count}}"
86 equal_to: "must be equal to {{count}}"
87 less_than: "must be less than {{count}}"
88 less_than_or_equal_to: "must be less than or equal to {{count}}"
89 odd: "must be odd"
90 even: "must be even"
91 greater_than_start_date: "ha de ser superior que la data inicial"
92 not_same_project: "no pertany al mateix projecte"
93 circular_dependency: "Aquesta relació crearia una dependència circular"
21 94
22 activerecord_error_inclusion: no està inclòs a la llista
23 activerecord_error_exclusion: està reservat
24 activerecord_error_invalid: no és vàlid
25 activerecord_error_confirmation: la confirmació no coincideix
26 activerecord_error_accepted: "s'ha d'acceptar"
27 activerecord_error_empty: no pot estar buit
28 activerecord_error_blank: no pot estar en blanc
29 activerecord_error_too_long: és massa llarg
30 activerecord_error_too_short: és massa curt
31 activerecord_error_wrong_length: la longitud és incorrecta
32 activerecord_error_taken: "ja s'està utilitzant"
33 activerecord_error_not_a_number: no és un número
34 activerecord_error_not_a_date: no és una data vàlida
35 activerecord_error_greater_than_start_date: ha de ser superior que la data inicial
36 activerecord_error_not_same_project: no pertany al mateix projecte
37 activerecord_error_circular_dependency: Aquesta relació crearia una dependència circular
38
39 general_fmt_age: %d any
40 general_fmt_age_plural: %d anys
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'No'
46 general_text_Yes: 'Si'
47 general_text_no: 'no'
48 general_text_yes: 'si'
49 general_lang_name: 'Català'
50 general_csv_separator: ';'
51 general_csv_decimal_separator: ','
52 general_csv_encoding: ISO-8859-15
53 general_pdf_encoding: ISO-8859-15
54 general_day_names: Dilluns,Dimarts,Dimecres,Dijous,Divendres,Dissabte,Diumenge
55 general_first_day_of_week: '1'
56
57 notice_account_updated: "El compte s'ha actualitzat correctament."
58 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
59 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
60 notice_account_wrong_password: Contrasenya incorrecta
61 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."
62 notice_account_unknown_email: Usuari desconegut.
63 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
64 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
65 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
66 notice_successful_create: "S'ha creat correctament."
67 notice_successful_update: "S'ha modificat correctament."
68 notice_successful_delete: "S'ha suprimit correctament."
69 notice_successful_connection: "S'ha connectat correctament."
70 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
71 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
72 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
73 notice_email_sent: "S'ha enviat un correu electrònic a %s"
74 notice_email_error: "S'ha produït un error en enviar el correu (%s)"
75 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
76 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de %d seleccionats: %s."
77 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
78 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
79 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
80 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
81
82 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %s"
83 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
84 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: %s"
85 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
86 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
87
88 mail_subject_lost_password: Contrasenya de %s
89 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
90 mail_subject_register: Activació del compte de %s
91 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
92 mail_body_account_information_external: Podeu utilitzar el compte «%s» per a entrar.
93 mail_body_account_information: Informació del compte
94 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %s"
95 mail_body_account_activation_request: "S'ha registrat un usuari nou (%s). El seu compte està pendent d'aprovació:"
96 mail_subject_reminder: "%d assumptes venceran els següents %d dies"
97 mail_body_reminder: "%d assumptes que teniu assignades venceran els següents %d dies:"
98
99 gui_validation_error: 1 error
100 gui_validation_error_plural: %d errors
101
102 field_name: Nom
103 field_description: Descripció
104 field_summary: Resum
105 field_is_required: Necessari
106 field_firstname: Nom
107 field_lastname: Cognom
108 field_mail: Correu electrònic
109 field_filename: Fitxer
110 field_filesize: Mida
111 field_downloads: Baixades
112 field_author: Autor
113 field_created_on: Creat
114 field_updated_on: Actualitzat
115 field_field_format: Format
116 field_is_for_all: Per a tots els projectes
117 field_possible_values: Valores possibles
118 field_regexp: Expressió regular
119 field_min_length: Longitud mínima
120 field_max_length: Longitud màxima
121 field_value: Valor
122 field_category: Categoria
123 field_title: Títol
124 field_project: Projecte
125 field_issue: Assumpte
126 field_status: Estat
127 field_notes: Notes
128 field_is_closed: Assumpte tancat
129 field_is_default: Estat predeterminat
130 field_tracker: Seguidor
131 field_subject: Tema
132 field_due_date: Data de venciment
133 field_assigned_to: Assignat a
134 field_priority: Prioritat
135 field_fixed_version: Versió objectiu
136 field_user: Usuari
137 field_role: Rol
138 field_homepage: Pàgina web
139 field_is_public: Públic
140 field_parent: Subprojecte de
141 field_is_in_chlog: Assumptes mostrats en el registre de canvis
142 field_is_in_roadmap: Assumptes mostrats en la planificació
143 field_login: Entrada
144 field_mail_notification: Notificacions per correu electrònic
145 field_admin: Administrador
146 field_last_login_on: Última connexió
147 field_language: Idioma
148 field_effective_date: Data
149 field_password: Contrasenya
150 field_new_password: Contrasenya nova
151 field_password_confirmation: Confirmació
152 field_version: Versió
153 field_type: Tipus
154 field_host: Ordinador
155 field_port: Port
156 field_account: Compte
157 field_base_dn: Base DN
158 field_attr_login: "Atribut d'entrada"
159 field_attr_firstname: Atribut del nom
160 field_attr_lastname: Atribut del cognom
161 field_attr_mail: Atribut del correu electrònic
162 field_onthefly: "Creació de l'usuari «al vol»"
163 field_start_date: Inici
164 field_done_ratio: %% realitzat
165 field_auth_source: "Mode d'autenticació"
166 field_hide_mail: "Oculta l'adreça de correu electrònic"
167 field_comments: Comentari
168 field_url: URL
169 field_start_page: Pàgina inicial
170 field_subproject: Subprojecte
171 field_hours: Hores
172 field_activity: Activitat
173 field_spent_on: Data
174 field_identifier: Identificador
175 field_is_filter: "S'ha utilitzat com a filtre"
176 field_issue_to_id: Assumpte relacionat
177 field_delay: Retard
178 field_assignable: Es poden assignar assumptes a aquest rol
179 field_redirect_existing_links: Redirigeix els enllaços existents
180 field_estimated_hours: Temps previst
181 field_column_names: Columnes
182 field_time_zone: Zona horària
183 field_searchable: Es pot cercar
184 field_default_value: Valor predeterminat
185 field_comments_sorting: Mostra els comentaris
186 field_parent_title: Pàgina pare
187
188 setting_app_title: "Títol de l'aplicació"
189 setting_app_subtitle: "Subtítol de l'aplicació"
190 setting_welcome_text: Text de benvinguda
191 setting_default_language: Idioma predeterminat
192 setting_login_required: Es necessita autenticació
193 setting_self_registration: Registre automàtic
194 setting_attachment_max_size: Mida màxima dels adjunts
195 setting_issues_export_limit: "Límit d'exportació d'assumptes"
196 setting_mail_from: "Adreça de correu electrònic d'emissió"
197 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
198 setting_host_name: "Nom de l'ordinador"
199 setting_text_formatting: Format del text
200 setting_wiki_compression: "Comprimeix l'historial del wiki"
201 setting_feeds_limit: Límit de contingut del canal
202 setting_default_projects_public: Els projectes nous són públics per defecte
203 setting_autofetch_changesets: Omple automàticament les publicacions
204 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
205 setting_commit_ref_keywords: Paraules claus per a la referència
206 setting_commit_fix_keywords: Paraules claus per a la correcció
207 setting_autologin: Entrada automàtica
208 setting_date_format: Format de la data
209 setting_time_format: Format de hora
210 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
211 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
212 setting_repositories_encodings: Codificacions del dipòsit
213 setting_commit_logs_encoding: Codificació dels missatges publicats
214 setting_emails_footer: Peu dels correus electrònics
215 setting_protocol: Protocol
216 setting_per_page_options: Opcions dels objectes per pàgina
217 setting_user_format: "Format de com mostrar l'usuari"
218 setting_activity_days_default: "Dies a mostrar l'activitat del projecte"
219 setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte"
220 setting_enabled_scm: "Habilita l'SCM"
221 setting_mail_handler_api_enabled: "Habilita el WS per correus electrònics d'entrada"
222 setting_mail_handler_api_key: Clau API
223 setting_sequential_project_identifiers: Genera identificadors de projecte seqüencials
224
225 project_module_issue_tracking: "Seguidor d'assumptes"
226 project_module_time_tracking: Seguidor de temps
227 project_module_news: Noticies
228 project_module_documents: Documents
229 project_module_files: Fitxers
230 project_module_wiki: Wiki
231 project_module_repository: Dipòsit
232 project_module_boards: Taulers
233
234 label_user: Usuari
235 label_user_plural: Usuaris
236 label_user_new: Usuari nou
237 label_project: Projecte
238 label_project_new: Projecte nou
239 label_project_plural: Projectes
240 label_project_all: Tots els projectes
241 label_project_latest: Els últims projectes
242 label_issue: Assumpte
243 label_issue_new: Assumpte nou
244 label_issue_plural: Assumptes
245 label_issue_view_all: Visualitza tots els assumptes
246 label_issues_by: Assumptes per %s
247 label_issue_added: Assumpte afegit
248 label_issue_updated: Assumpte actualitzat
249 label_document: Document
250 label_document_new: Document nou
251 label_document_plural: Documents
252 label_document_added: Document afegit
253 label_role: Rol
254 label_role_plural: Rols
255 label_role_new: Rol nou
256 label_role_and_permissions: Rols i permisos
257 label_member: Membre
258 label_member_new: Membre nou
259 label_member_plural: Membres
260 label_tracker: Seguidor
261 label_tracker_plural: Seguidors
262 label_tracker_new: Seguidor nou
263 label_workflow: Flux de treball
264 label_issue_status: "Estat de l'assumpte"
265 label_issue_status_plural: "Estats de l'assumpte"
266 label_issue_status_new: Estat nou
267 label_issue_category: "Categoria de l'assumpte"
268 label_issue_category_plural: "Categories de l'assumpte"
269 label_issue_category_new: Categoria nova
270 label_custom_field: Camp personalitzat
271 label_custom_field_plural: Camps personalitzats
272 label_custom_field_new: Camp personalitzat nou
273 label_enumerations: Enumeracions
274 label_enumeration_new: Valor nou
275 label_information: Informació
276 label_information_plural: Informació
277 label_please_login: Entreu
278 label_register: Registre
279 label_password_lost: Contrasenya perduda
280 label_home: Inici
281 label_my_page: La meva pàgina
282 label_my_account: El meu compte
283 label_my_projects: Els meus projectes
284 label_administration: Administració
285 label_login: Entra
286 label_logout: Surt
287 label_help: Ajuda
288 label_reported_issues: Assumptes informats
289 label_assigned_to_me_issues: Assumptes assignats a mi
290 label_last_login: Última connexió
291 label_last_updates: Última actualització
292 label_last_updates_plural: %d última actualització
293 label_registered_on: Informat el
294 label_activity: Activitat
295 label_overall_activity: Activitat global
296 label_new: Nou
297 label_logged_as: Heu entrat com a
298 label_environment: Entorn
299 label_authentication: Autenticació
300 label_auth_source: "Mode d'autenticació"
301 label_auth_source_new: "Mode d'autenticació nou"
302 label_auth_source_plural: "Modes d'autenticació"
303 label_subproject_plural: Subprojectes
304 label_and_its_subprojects: %s i els seus subprojectes
305 label_min_max_length: Longitud mín - max
306 label_list: Llist
307 label_date: Data
308 label_integer: Enter
309 label_float: Flotant
310 label_boolean: Booleà
311 label_string: Text
312 label_text: Text llarg
313 label_attribute: Atribut
314 label_attribute_plural: Atributs
315 label_download: %d baixada
316 label_download_plural: %d baixades
317 label_no_data: Sense dades a mostrar
318 label_change_status: "Canvia l'estat"
319 label_history: Historial
320 label_attachment: Fitxer
321 label_attachment_new: Fitxer nou
322 label_attachment_delete: Suprimeix el fitxer
323 label_attachment_plural: Fitxers
324 label_file_added: Fitxer afegit
325 label_report: Informe
326 label_report_plural: Informes
327 label_news: Noticies
328 label_news_new: Afegeix noticies
329 label_news_plural: Noticies
330 label_news_latest: Últimes noticies
331 label_news_view_all: Visualitza totes les noticies
332 label_news_added: Noticies afegides
333 label_change_log: Registre de canvis
334 label_settings: Paràmetres
335 label_overview: Resum
336 label_version: Versió
337 label_version_new: Versió nova
338 label_version_plural: Versions
339 label_confirmation: Confirmació
340 label_export_to: 'També disponible a:'
341 label_read: Llegeix...
342 label_public_projects: Projectes públics
343 label_open_issues: obert
344 label_open_issues_plural: oberts
345 label_closed_issues: tancat
346 label_closed_issues_plural: tancats
347 label_total: Total
348 label_permissions: Permisos
349 label_current_status: Estat actual
350 label_new_statuses_allowed: Nous estats autoritzats
351 label_all: tots
352 label_none: cap
353 label_nobody: ningú
354 label_next: Següent
355 label_previous: Anterior
356 label_used_by: Utilitzat per
357 label_details: Detalls
358 label_add_note: Afegeix una nota
359 label_per_page: Per pàgina
360 label_calendar: Calendari
361 label_months_from: mesos des de
362 label_gantt: Gantt
363 label_internal: Intern
364 label_last_changes: últims %d canvis
365 label_change_view_all: Visualitza tots els canvis
366 label_personalize_page: Personalitza aquesta pàgina
367 label_comment: Comentari
368 label_comment_plural: Comentaris
369 label_comment_add: Afegeix un comentari
370 label_comment_added: Comentari afegit
371 label_comment_delete: Suprimeix comentaris
372 label_query: Consulta personalitzada
373 label_query_plural: Consultes personalitzades
374 label_query_new: Consulta nova
375 label_filter_add: Afegeix un filtre
376 label_filter_plural: Filtres
377 label_equals: és
378 label_not_equals: no és
379 label_in_less_than: en menys de
380 label_in_more_than: en més de
381 label_in: en
382 label_today: avui
383 label_all_time: tot el temps
384 label_yesterday: ahir
385 label_this_week: aquesta setmana
386 label_last_week: "l'última setmana"
387 label_last_n_days: els últims %d dies
388 label_this_month: aquest més
389 label_last_month: "l'últim més"
390 label_this_year: aquest any
391 label_date_range: Abast de les dates
392 label_less_than_ago: fa menys de
393 label_more_than_ago: fa més de
394 label_ago: fa
395 label_contains: conté
396 label_not_contains: no conté
397 label_day_plural: dies
398 label_repository: Dipòsit
399 label_repository_plural: Dipòsits
400 label_browse: Navega
401 label_modification: %d canvi
402 label_modification_plural: %d canvis
403 label_revision: Revisió
404 label_revision_plural: Revisions
405 label_associated_revisions: Revisions associades
406 label_added: afegit
407 label_modified: modificat
408 label_renamed: reanomenat
409 label_copied: copiat
410 label_deleted: suprimit
411 label_latest_revision: Última revisió
412 label_latest_revision_plural: Últimes revisions
413 label_view_revisions: Visualitza les revisions
414 label_max_size: Mida màxima
415 label_on: 'de'
416 label_sort_highest: Mou a la part superior
417 label_sort_higher: Mou cap amunt
418 label_sort_lower: Mou cap avall
419 label_sort_lowest: Mou a la part inferior
420 label_roadmap: Planificació
421 label_roadmap_due_in: Venç en %s
422 label_roadmap_overdue: %s tard
423 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
424 label_search: Cerca
425 label_result_plural: Resultats
426 label_all_words: Totes les paraules
427 label_wiki: Wiki
428 label_wiki_edit: Edició wiki
429 label_wiki_edit_plural: Edicions wiki
430 label_wiki_page: Pàgina wiki
431 label_wiki_page_plural: Pàgines wiki
432 label_index_by_title: Índex per títol
433 label_index_by_date: Índex per data
434 label_current_version: Versió actual
435 label_preview: Previsualització
436 label_feed_plural: Canals
437 label_changes_details: Detalls de tots els canvis
438 label_issue_tracking: "Seguiment d'assumptes"
439 label_spent_time: Temps invertit
440 label_f_hour: %.2f hora
441 label_f_hour_plural: %.2f hores
442 label_time_tracking: Temps de seguiment
443 label_change_plural: Canvis
444 label_statistics: Estadístiques
445 label_commits_per_month: Publicacions per mes
446 label_commits_per_author: Publicacions per autor
447 label_view_diff: Visualitza les diferències
448 label_diff_inline: en línia
449 label_diff_side_by_side: costat per costat
450 label_options: Opcions
451 label_copy_workflow_from: Copia el flux de treball des de
452 label_permissions_report: Informe de permisos
453 label_watched_issues: Assumptes vigilats
454 label_related_issues: Assumptes relacionats
455 label_applied_status: Estat aplicat
456 label_loading: "S'està carregant..."
457 label_relation_new: Relació nova
458 label_relation_delete: Suprimeix la relació
459 label_relates_to: relacionat amb
460 label_duplicates: duplicats
461 label_duplicated_by: duplicat per
462 label_blocks: bloqueja
463 label_blocked_by: bloquejats per
464 label_precedes: anterior a
465 label_follows: posterior a
466 label_end_to_start: final al començament
467 label_end_to_end: final al final
468 label_start_to_start: començament al començament
469 label_start_to_end: començament al final
470 label_stay_logged_in: "Manté l'entrada"
471 label_disabled: inhabilitat
472 label_show_completed_versions: Mostra les versions completes
473 label_me: jo mateix
474 label_board: Fòrum
475 label_board_new: Fòrum nou
476 label_board_plural: Fòrums
477 label_topic_plural: Temes
478 label_message_plural: Missatges
479 label_message_last: Últim missatge
480 label_message_new: Missatge nou
481 label_message_posted: Missatge afegit
482 label_reply_plural: Respostes
483 label_send_information: "Envia la informació del compte a l'usuari"
484 label_year: Any
485 label_month: Mes
486 label_week: Setmana
487 label_date_from: Des de
488 label_date_to: A
489 label_language_based: "Basat en l'idioma de l'usuari"
490 label_sort_by: Ordena per %s
491 label_send_test_email: Envia un correu electrònic de prova
492 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa %s"
493 label_module_plural: Mòduls
494 label_added_time_by: Afegit per %s fa %s
495 label_updated_time: Actualitzat fa %s
496 label_jump_to_a_project: Salta al projecte...
497 label_file_plural: Fitxers
498 label_changeset_plural: Conjunt de canvis
499 label_default_columns: Columnes predeterminades
500 label_no_change_option: (sense canvis)
501 label_bulk_edit_selected_issues: Edita en bloc els assumptes seleccionats
502 label_theme: Tema
503 label_default: Predeterminat
504 label_search_titles_only: Cerca només en els títols
505 label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes"
506 label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..."
507 label_user_mail_option_none: "Només per les coses que vigilo o hi estic implicat"
508 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix"
509 label_registration_activation_by_email: activació del compte per correu electrònic
510 label_registration_manual_activation: activació del compte manual
511 label_registration_automatic_activation: activació del compte automàtica
512 label_display_per_page: 'Per pàgina: %s'
513 label_age: Edat
514 label_change_properties: Canvia les propietats
515 label_general: General
516 label_more: Més
517 label_scm: SCM
518 label_plugins: Connectors
519 label_ldap_authentication: Autenticació LDAP
520 label_downloads_abbr: Baixades
521 label_optional_description: Descripció opcional
522 label_add_another_file: Afegeix un altre fitxer
523 label_preferences: Preferències
524 label_chronological_order: En ordre cronològic
525 label_reverse_chronological_order: En ordre cronològic invers
526 label_planning: Planificació
527 label_incoming_emails: "Correu electrònics d'entrada"
528 label_generate_key: Genera una clau
529 label_issue_watchers: Vigilants
530
531 button_login: Entra
532 button_submit: Tramet
533 button_save: Desa
534 button_check_all: Activa-ho tot
535 button_uncheck_all: Desactiva-ho tot
536 button_delete: Suprimeix
537 button_create: Crea
538 button_test: Test
539 button_edit: Edit
540 button_add: Afegeix
541 button_change: Canvia
542 button_apply: Aplica
543 button_clear: Neteja
544 button_lock: Bloca
545 button_unlock: Desbloca
546 button_download: Baixa
547 button_list: Llista
548 button_view: Visualitza
549 button_move: Mou
550 button_back: Enrere
551 button_cancel: Cancel·la
552 button_activate: Activa
553 button_sort: Ordena
554 button_log_time: "Hora d'entrada"
555 button_rollback: Torna a aquesta versió
556 button_watch: Vigila
557 button_unwatch: No vigilis
558 button_reply: Resposta
559 button_archive: Arxiva
560 button_unarchive: Desarxiva
561 button_reset: Reinicia
562 button_rename: Reanomena
563 button_change_password: Canvia la contrasenya
564 button_copy: Copia
565 button_annotate: Anota
566 button_update: Actualitza
567 button_configure: Configura
568 button_quote: Cita
569
570 status_active: actiu
571 status_registered: informat
572 status_locked: bloquejat
573
574 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria d'enviar una notificació per correu electrònic."
575 text_regexp_info: ex. ^[A-Z0-9]+$
576 text_min_max_length_info: 0 significa sense restricció
577 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
578 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: %s."
579 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
580 text_are_you_sure: Segur?
581 text_journal_changed: canviat des de %s a %s
582 text_journal_set_to: establert a %s
583 text_journal_deleted: suprimit
584 text_tip_task_begin_day: "tasca que s'inicia aquest dia"
585 text_tip_task_end_day: tasca que finalitza aquest dia
586 text_tip_task_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
587 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."
588 text_caracters_maximum: %d caràcters com a màxim.
589 text_caracters_minimum: Com a mínim ha de tenir %d caràcters.
590 text_length_between: Longitud entre %d i %d caràcters.
591 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
592 text_unallowed_characters: Caràcters no permesos
593 text_comma_separated: Es permeten valors múltiples (separats per una coma).
594 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
595 text_issue_added: "L'assumpte %s ha sigut informat per %s."
596 text_issue_updated: "L'assumpte %s ha sigut actualitzat per %s."
597 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
598 text_issue_category_destroy_question: Alguns assumptes (%d) estan assignats a aquesta categoria. Què voleu fer?
599 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
600 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
601 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)."
602 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."
603 text_load_default_configuration: Carrega la configuració predeterminada
604 text_status_changed_by_changeset: Aplicat en el conjunt de canvis %s.
605 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
606 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
607 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
608 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
609 text_rmagick_available: RMagick disponible (opcional)
610 text_destroy_time_entries_question: "S'han informat %.02f hores en els assumptes que aneu a suprimir. Què voleu fer?"
611 text_destroy_time_entries: Suprimeix les hores informades
612 text_assign_time_entries_to_project: Assigna les hores informades al projecte
613 text_reassign_time_entries: 'Torna a assignar les hores informades a aquest assumpte:'
614 text_user_wrote: '%s va escriure:'
615 text_enumeration_destroy_question: '%d objectes estan assignats a aquest valor.'
616 text_enumeration_category_reassign_to: 'Torna a assignar-los a aquest valor:'
617 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/email.yml i reinicieu l'aplicació per habilitar-lo."
618
619 default_role_manager: Gestor
620 default_role_developper: Desenvolupador
621 default_role_reporter: Informador
622 default_tracker_bug: Error
623 default_tracker_feature: Característica
624 default_tracker_support: Suport
625 default_issue_status_new: Nou
626 default_issue_status_assigned: Assignat
627 default_issue_status_resolved: Resolt
628 default_issue_status_feedback: Comentaris
629 default_issue_status_closed: Tancat
630 default_issue_status_rejected: Rebutjat
631 default_doc_category_user: "Documentació d'usuari"
632 default_doc_category_tech: Documentació tècnica
633 default_priority_low: Baixa
634 default_priority_normal: Normal
635 default_priority_high: Alta
636 default_priority_urgent: Urgent
637 default_priority_immediate: Immediata
638 default_activity_design: Disseny
639 default_activity_development: Desenvolupament
640
641 enumeration_issue_priorities: Prioritat dels assumptes
642 enumeration_doc_categories: Categories del document
643 enumeration_activities: Activitats (seguidor de temps)
644 setting_plain_text_mail: plain text only (no HTML)
645 permission_view_files: View files
646 permission_edit_issues: Edit issues
647 permission_edit_own_time_entries: Edit own time logs
648 permission_manage_public_queries: Manage public queries
649 permission_add_issues: Add issues
650 permission_log_time: Log spent time
651 permission_view_changesets: View changesets
652 permission_view_time_entries: View spent time
653 permission_manage_versions: Manage versions
654 permission_manage_wiki: Manage wiki
655 permission_manage_categories: Manage issue categories
656 permission_protect_wiki_pages: Protect wiki pages
657 permission_comment_news: Comment news
658 permission_delete_messages: Delete messages
659 permission_select_project_modules: Select project modules
660 permission_manage_documents: Manage documents
661 permission_edit_wiki_pages: Edit wiki pages
662 permission_add_issue_watchers: Add watchers
663 permission_view_gantt: View gantt chart
664 permission_move_issues: Move issues
665 permission_manage_issue_relations: Manage issue relations
666 permission_delete_wiki_pages: Delete wiki pages
667 permission_manage_boards: Manage boards
668 permission_delete_wiki_pages_attachments: Delete attachments
669 permission_view_wiki_edits: View wiki history
670 permission_add_messages: Post messages
671 permission_view_messages: View messages
672 permission_manage_files: Manage files
673 permission_edit_issue_notes: Edit notes
674 permission_manage_news: Manage news
675 permission_view_calendar: View calendrier
676 permission_manage_members: Manage members
677 permission_edit_messages: Edit messages
678 permission_delete_issues: Delete issues
679 permission_view_issue_watchers: View watchers list
680 permission_manage_repository: Manage repository
681 permission_commit_access: Commit access
682 permission_browse_repository: Browse repository
683 permission_view_documents: View documents
684 permission_edit_project: Edit project
685 permission_add_issue_notes: Add notes
686 permission_save_queries: Save queries
687 permission_view_wiki_pages: View wiki
688 permission_rename_wiki_pages: Rename wiki pages
689 permission_edit_time_entries: Edit time logs
690 permission_edit_own_issue_notes: Edit own notes
691 setting_gravatar_enabled: Use Gravatar user icons
692 label_example: Example
693 text_repository_usernames_mapping: "Select ou 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."
694 permission_edit_own_messages: Edit own messages
695 permission_delete_own_messages: Delete own messages
696 label_user_activity: "%s's activity"
697 label_updated_time_by: Updated by %s %s ago
698 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
699 setting_diff_max_lines_displayed: Max number of diff lines displayed
700 text_plugin_assets_writable: Plugin assets directory writable
701 warning_attachments_not_saved: "%d file(s) could not be saved."
702 button_create_and_continue: Create and continue
703 text_custom_field_possible_values_info: 'One line for each value'
704 label_display: Display
705 field_editable: Editable
706 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
707 field_identity_url: OpenID URL
708 setting_openid: Allow OpenID login and registration
709 label_login_with_open_id_option: or login with OpenID
710 field_watcher: Watcher
95 actionview_instancetag_blank_option: Seleccioneu
96
97 general_text_No: 'No'
98 general_text_Yes: 'Si'
99 general_text_no: 'no'
100 general_text_yes: 'si'
101 general_lang_name: 'Català'
102 general_csv_separator: ';'
103 general_csv_decimal_separator: ','
104 general_csv_encoding: ISO-8859-15
105 general_pdf_encoding: ISO-8859-15
106 general_first_day_of_week: '1'
107
108 notice_account_updated: "El compte s'ha actualitzat correctament."
109 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
110 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
111 notice_account_wrong_password: Contrasenya incorrecta
112 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."
113 notice_account_unknown_email: Usuari desconegut.
114 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
115 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
116 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
117 notice_successful_create: "S'ha creat correctament."
118 notice_successful_update: "S'ha modificat correctament."
119 notice_successful_delete: "S'ha suprimit correctament."
120 notice_successful_connection: "S'ha connectat correctament."
121 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
122 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
123 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
124 notice_email_sent: "S'ha enviat un correu electrònic a {{value}}"
125 notice_email_error: "S'ha produït un error en enviar el correu ({{value}})"
126 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
127 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de {{count}} seleccionats: {{value}}."
128 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
129 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
130 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
131 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
132
133 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: {{value}} "
134 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
135 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: {{value}}"
136 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
137 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
138
139 mail_subject_lost_password: "Contrasenya de {{value}}"
140 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
141 mail_subject_register: "Activació del compte de {{value}}"
142 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
143 mail_body_account_information_external: "Podeu utilitzar el compte «{{value}}» per a entrar."
144 mail_body_account_information: Informació del compte
145 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de {{value}}"
146 mail_body_account_activation_request: "S'ha registrat un usuari nou ({{value}}). El seu compte està pendent d'aprovació:"
147 mail_subject_reminder: "%d assumptes venceran els següents {{count}} dies"
148 mail_body_reminder: "{{count}} assumptes que teniu assignades venceran els següents {{days}} dies:"
149
150 gui_validation_error: 1 error
151 gui_validation_error_plural: "{{count}} errors"
152
153 field_name: Nom
154 field_description: Descripció
155 field_summary: Resum
156 field_is_required: Necessari
157 field_firstname: Nom
158 field_lastname: Cognom
159 field_mail: Correu electrònic
160 field_filename: Fitxer
161 field_filesize: Mida
162 field_downloads: Baixades
163 field_author: Autor
164 field_created_on: Creat
165 field_updated_on: Actualitzat
166 field_field_format: Format
167 field_is_for_all: Per a tots els projectes
168 field_possible_values: Valores possibles
169 field_regexp: Expressió regular
170 field_min_length: Longitud mínima
171 field_max_length: Longitud màxima
172 field_value: Valor
173 field_category: Categoria
174 field_title: Títol
175 field_project: Projecte
176 field_issue: Assumpte
177 field_status: Estat
178 field_notes: Notes
179 field_is_closed: Assumpte tancat
180 field_is_default: Estat predeterminat
181 field_tracker: Seguidor
182 field_subject: Tema
183 field_due_date: Data de venciment
184 field_assigned_to: Assignat a
185 field_priority: Prioritat
186 field_fixed_version: Versió objectiu
187 field_user: Usuari
188 field_role: Rol
189 field_homepage: Pàgina web
190 field_is_public: Públic
191 field_parent: Subprojecte de
192 field_is_in_chlog: Assumptes mostrats en el registre de canvis
193 field_is_in_roadmap: Assumptes mostrats en la planificació
194 field_login: Entrada
195 field_mail_notification: Notificacions per correu electrònic
196 field_admin: Administrador
197 field_last_login_on: Última connexió
198 field_language: Idioma
199 field_effective_date: Data
200 field_password: Contrasenya
201 field_new_password: Contrasenya nova
202 field_password_confirmation: Confirmació
203 field_version: Versió
204 field_type: Tipus
205 field_host: Ordinador
206 field_port: Port
207 field_account: Compte
208 field_base_dn: Base DN
209 field_attr_login: "Atribut d'entrada"
210 field_attr_firstname: Atribut del nom
211 field_attr_lastname: Atribut del cognom
212 field_attr_mail: Atribut del correu electrònic
213 field_onthefly: "Creació de l'usuari «al vol»"
214 field_start_date: Inici
215 field_done_ratio: %% realitzat
216 field_auth_source: "Mode d'autenticació"
217 field_hide_mail: "Oculta l'adreça de correu electrònic"
218 field_comments: Comentari
219 field_url: URL
220 field_start_page: Pàgina inicial
221 field_subproject: Subprojecte
222 field_hours: Hores
223 field_activity: Activitat
224 field_spent_on: Data
225 field_identifier: Identificador
226 field_is_filter: "S'ha utilitzat com a filtre"
227 field_issue_to_id: Assumpte relacionat
228 field_delay: Retard
229 field_assignable: Es poden assignar assumptes a aquest rol
230 field_redirect_existing_links: Redirigeix els enllaços existents
231 field_estimated_hours: Temps previst
232 field_column_names: Columnes
233 field_time_zone: Zona horària
234 field_searchable: Es pot cercar
235 field_default_value: Valor predeterminat
236 field_comments_sorting: Mostra els comentaris
237 field_parent_title: Pàgina pare
238
239 setting_app_title: "Títol de l'aplicació"
240 setting_app_subtitle: "Subtítol de l'aplicació"
241 setting_welcome_text: Text de benvinguda
242 setting_default_language: Idioma predeterminat
243 setting_login_required: Es necessita autenticació
244 setting_self_registration: Registre automàtic
245 setting_attachment_max_size: Mida màxima dels adjunts
246 setting_issues_export_limit: "Límit d'exportació d'assumptes"
247 setting_mail_from: "Adreça de correu electrònic d'emissió"
248 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
249 setting_host_name: "Nom de l'ordinador"
250 setting_text_formatting: Format del text
251 setting_wiki_compression: "Comprimeix l'historial del wiki"
252 setting_feeds_limit: Límit de contingut del canal
253 setting_default_projects_public: Els projectes nous són públics per defecte
254 setting_autofetch_changesets: Omple automàticament les publicacions
255 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
256 setting_commit_ref_keywords: Paraules claus per a la referència
257 setting_commit_fix_keywords: Paraules claus per a la correcció
258 setting_autologin: Entrada automàtica
259 setting_date_format: Format de la data
260 setting_time_format: Format de hora
261 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
262 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
263 setting_repositories_encodings: Codificacions del dipòsit
264 setting_commit_logs_encoding: Codificació dels missatges publicats
265 setting_emails_footer: Peu dels correus electrònics
266 setting_protocol: Protocol
267 setting_per_page_options: Opcions dels objectes per pàgina
268 setting_user_format: "Format de com mostrar l'usuari"
269 setting_activity_days_default: "Dies a mostrar l'activitat del projecte"
270 setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte"
271 setting_enabled_scm: "Habilita l'SCM"
272 setting_mail_handler_api_enabled: "Habilita el WS per correus electrònics d'entrada"
273 setting_mail_handler_api_key: Clau API
274 setting_sequential_project_identifiers: Genera identificadors de projecte seqüencials
275
276 project_module_issue_tracking: "Seguidor d'assumptes"
277 project_module_time_tracking: Seguidor de temps
278 project_module_news: Noticies
279 project_module_documents: Documents
280 project_module_files: Fitxers
281 project_module_wiki: Wiki
282 project_module_repository: Dipòsit
283 project_module_boards: Taulers
284
285 label_user: Usuari
286 label_user_plural: Usuaris
287 label_user_new: Usuari nou
288 label_project: Projecte
289 label_project_new: Projecte nou
290 label_project_plural: Projectes
291 label_x_projects:
292 zero: no projects
293 one: 1 project
294 other: "{{count}} projects"
295 label_project_all: Tots els projectes
296 label_project_latest: Els últims projectes
297 label_issue: Assumpte
298 label_issue_new: Assumpte nou
299 label_issue_plural: Assumptes
300 label_issue_view_all: Visualitza tots els assumptes
301 label_issues_by: "Assumptes per {{value}}"
302 label_issue_added: Assumpte afegit
303 label_issue_updated: Assumpte actualitzat
304 label_document: Document
305 label_document_new: Document nou
306 label_document_plural: Documents
307 label_document_added: Document afegit
308 label_role: Rol
309 label_role_plural: Rols
310 label_role_new: Rol nou
311 label_role_and_permissions: Rols i permisos
312 label_member: Membre
313 label_member_new: Membre nou
314 label_member_plural: Membres
315 label_tracker: Seguidor
316 label_tracker_plural: Seguidors
317 label_tracker_new: Seguidor nou
318 label_workflow: Flux de treball
319 label_issue_status: "Estat de l'assumpte"
320 label_issue_status_plural: "Estats de l'assumpte"
321 label_issue_status_new: Estat nou
322 label_issue_category: "Categoria de l'assumpte"
323 label_issue_category_plural: "Categories de l'assumpte"
324 label_issue_category_new: Categoria nova
325 label_custom_field: Camp personalitzat
326 label_custom_field_plural: Camps personalitzats
327 label_custom_field_new: Camp personalitzat nou
328 label_enumerations: Enumeracions
329 label_enumeration_new: Valor nou
330 label_information: Informació
331 label_information_plural: Informació
332 label_please_login: Entreu
333 label_register: Registre
334 label_password_lost: Contrasenya perduda
335 label_home: Inici
336 label_my_page: La meva pàgina
337 label_my_account: El meu compte
338 label_my_projects: Els meus projectes
339 label_administration: Administració
340 label_login: Entra
341 label_logout: Surt
342 label_help: Ajuda
343 label_reported_issues: Assumptes informats
344 label_assigned_to_me_issues: Assumptes assignats a mi
345 label_last_login: Última connexió
346 label_registered_on: Informat el
347 label_activity: Activitat
348 label_overall_activity: Activitat global
349 label_new: Nou
350 label_logged_as: Heu entrat com a
351 label_environment: Entorn
352 label_authentication: Autenticació
353 label_auth_source: "Mode d'autenticació"
354 label_auth_source_new: "Mode d'autenticació nou"
355 label_auth_source_plural: "Modes d'autenticació"
356 label_subproject_plural: Subprojectes
357 label_and_its_subprojects: "{{value}} i els seus subprojectes"
358 label_min_max_length: Longitud mín - max
359 label_list: Llist
360 label_date: Data
361 label_integer: Enter
362 label_float: Flotant
363 label_boolean: Booleà
364 label_string: Text
365 label_text: Text llarg
366 label_attribute: Atribut
367 label_attribute_plural: Atributs
368 label_download: "{{count}} baixada"
369 label_download_plural: "{{count}} baixades"
370 label_no_data: Sense dades a mostrar
371 label_change_status: "Canvia l'estat"
372 label_history: Historial
373 label_attachment: Fitxer
374 label_attachment_new: Fitxer nou
375 label_attachment_delete: Suprimeix el fitxer
376 label_attachment_plural: Fitxers
377 label_file_added: Fitxer afegit
378 label_report: Informe
379 label_report_plural: Informes
380 label_news: Noticies
381 label_news_new: Afegeix noticies
382 label_news_plural: Noticies
383 label_news_latest: Últimes noticies
384 label_news_view_all: Visualitza totes les noticies
385 label_news_added: Noticies afegides
386 label_change_log: Registre de canvis
387 label_settings: Paràmetres
388 label_overview: Resum
389 label_version: Versió
390 label_version_new: Versió nova
391 label_version_plural: Versions
392 label_confirmation: Confirmació
393 label_export_to: 'També disponible a:'
394 label_read: Llegeix...
395 label_public_projects: Projectes públics
396 label_open_issues: obert
397 label_open_issues_plural: oberts
398 label_closed_issues: tancat
399 label_closed_issues_plural: tancats
400 label_x_open_issues_abbr_on_total:
401 zero: 0 open / {{total}}
402 one: 1 open / {{total}}
403 other: "{{count}} open / {{total}}"
404 label_x_open_issues_abbr:
405 zero: 0 open
406 one: 1 open
407 other: "{{count}} open"
408 label_x_closed_issues_abbr:
409 zero: 0 closed
410 one: 1 closed
411 other: "{{count}} closed"
412 label_total: Total
413 label_permissions: Permisos
414 label_current_status: Estat actual
415 label_new_statuses_allowed: Nous estats autoritzats
416 label_all: tots
417 label_none: cap
418 label_nobody: ningú
419 label_next: Següent
420 label_previous: Anterior
421 label_used_by: Utilitzat per
422 label_details: Detalls
423 label_add_note: Afegeix una nota
424 label_per_page: Per pàgina
425 label_calendar: Calendari
426 label_months_from: mesos des de
427 label_gantt: Gantt
428 label_internal: Intern
429 label_last_changes: "últims {{count}} canvis"
430 label_change_view_all: Visualitza tots els canvis
431 label_personalize_page: Personalitza aquesta pàgina
432 label_comment: Comentari
433 label_comment_plural: Comentaris
434 label_x_comments:
435 zero: no comments
436 one: 1 comment
437 other: "{{count}} comments"
438 label_comment_add: Afegeix un comentari
439 label_comment_added: Comentari afegit
440 label_comment_delete: Suprimeix comentaris
441 label_query: Consulta personalitzada
442 label_query_plural: Consultes personalitzades
443 label_query_new: Consulta nova
444 label_filter_add: Afegeix un filtre
445 label_filter_plural: Filtres
446 label_equals: és
447 label_not_equals: no és
448 label_in_less_than: en menys de
449 label_in_more_than: en més de
450 label_in: en
451 label_today: avui
452 label_all_time: tot el temps
453 label_yesterday: ahir
454 label_this_week: aquesta setmana
455 label_last_week: "l'última setmana"
456 label_last_n_days: "els últims {{count}} dies"
457 label_this_month: aquest més
458 label_last_month: "l'últim més"
459 label_this_year: aquest any
460 label_date_range: Abast de les dates
461 label_less_than_ago: fa menys de
462 label_more_than_ago: fa més de
463 label_ago: fa
464 label_contains: conté
465 label_not_contains: no conté
466 label_day_plural: dies
467 label_repository: Dipòsit
468 label_repository_plural: Dipòsits
469 label_browse: Navega
470 label_modification: "{{count}} canvi"
471 label_modification_plural: "{{count}} canvis"
472 label_revision: Revisió
473 label_revision_plural: Revisions
474 label_associated_revisions: Revisions associades
475 label_added: afegit
476 label_modified: modificat
477 label_renamed: reanomenat
478 label_copied: copiat
479 label_deleted: suprimit
480 label_latest_revision: Última revisió
481 label_latest_revision_plural: Últimes revisions
482 label_view_revisions: Visualitza les revisions
483 label_max_size: Mida màxima
484 label_sort_highest: Mou a la part superior
485 label_sort_higher: Mou cap amunt
486 label_sort_lower: Mou cap avall
487 label_sort_lowest: Mou a la part inferior
488 label_roadmap: Planificació
489 label_roadmap_due_in: "Venç en {{value}}"
490 label_roadmap_overdue: "{{value}} tard"
491 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
492 label_search: Cerca
493 label_result_plural: Resultats
494 label_all_words: Totes les paraules
495 label_wiki: Wiki
496 label_wiki_edit: Edició wiki
497 label_wiki_edit_plural: Edicions wiki
498 label_wiki_page: Pàgina wiki
499 label_wiki_page_plural: Pàgines wiki
500 label_index_by_title: Índex per títol
501 label_index_by_date: Índex per data
502 label_current_version: Versió actual
503 label_preview: Previsualització
504 label_feed_plural: Canals
505 label_changes_details: Detalls de tots els canvis
506 label_issue_tracking: "Seguiment d'assumptes"
507 label_spent_time: Temps invertit
508 label_f_hour: "{{value}} hora"
509 label_f_hour_plural: "{{value}} hores"
510 label_time_tracking: Temps de seguiment
511 label_change_plural: Canvis
512 label_statistics: Estadístiques
513 label_commits_per_month: Publicacions per mes
514 label_commits_per_author: Publicacions per autor
515 label_view_diff: Visualitza les diferències
516 label_diff_inline: en línia
517 label_diff_side_by_side: costat per costat
518 label_options: Opcions
519 label_copy_workflow_from: Copia el flux de treball des de
520 label_permissions_report: Informe de permisos
521 label_watched_issues: Assumptes vigilats
522 label_related_issues: Assumptes relacionats
523 label_applied_status: Estat aplicat
524 label_loading: "S'està carregant..."
525 label_relation_new: Relació nova
526 label_relation_delete: Suprimeix la relació
527 label_relates_to: relacionat amb
528 label_duplicates: duplicats
529 label_duplicated_by: duplicat per
530 label_blocks: bloqueja
531 label_blocked_by: bloquejats per
532 label_precedes: anterior a
533 label_follows: posterior a
534 label_end_to_start: final al començament
535 label_end_to_end: final al final
536 label_start_to_start: començament al començament
537 label_start_to_end: començament al final
538 label_stay_logged_in: "Manté l'entrada"
539 label_disabled: inhabilitat
540 label_show_completed_versions: Mostra les versions completes
541 label_me: jo mateix
542 label_board: Fòrum
543 label_board_new: Fòrum nou
544 label_board_plural: Fòrums
545 label_topic_plural: Temes
546 label_message_plural: Missatges
547 label_message_last: Últim missatge
548 label_message_new: Missatge nou
549 label_message_posted: Missatge afegit
550 label_reply_plural: Respostes
551 label_send_information: "Envia la informació del compte a l'usuari"
552 label_year: Any
553 label_month: Mes
554 label_week: Setmana
555 label_date_from: Des de
556 label_date_to: A
557 label_language_based: "Basat en l'idioma de l'usuari"
558 label_sort_by: "Ordena per {{value}}"
559 label_send_test_email: Envia un correu electrònic de prova
560 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa {{value}}"
561 label_module_plural: Mòduls
562 label_added_time_by: "Afegit per {{author}} fa {{age}}"
563 label_updated_time: "Actualitzat fa {{value}}"
564 label_jump_to_a_project: Salta al projecte...
565 label_file_plural: Fitxers
566 label_changeset_plural: Conjunt de canvis
567 label_default_columns: Columnes predeterminades
568 label_no_change_option: (sense canvis)
569 label_bulk_edit_selected_issues: Edita en bloc els assumptes seleccionats
570 label_theme: Tema
571 label_default: Predeterminat
572 label_search_titles_only: Cerca només en els títols
573 label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes"
574 label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..."
575 label_user_mail_option_none: "Només per les coses que vigilo o hi estic implicat"
576 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix"
577 label_registration_activation_by_email: activació del compte per correu electrònic
578 label_registration_manual_activation: activació del compte manual
579 label_registration_automatic_activation: activació del compte automàtica
580 label_display_per_page: "Per pàgina: {{value}}'"
581 label_age: Edat
582 label_change_properties: Canvia les propietats
583 label_general: General
584 label_more: Més
585 label_scm: SCM
586 label_plugins: Connectors
587 label_ldap_authentication: Autenticació LDAP
588 label_downloads_abbr: Baixades
589 label_optional_description: Descripció opcional
590 label_add_another_file: Afegeix un altre fitxer
591 label_preferences: Preferències
592 label_chronological_order: En ordre cronològic
593 label_reverse_chronological_order: En ordre cronològic invers
594 label_planning: Planificació
595 label_incoming_emails: "Correu electrònics d'entrada"
596 label_generate_key: Genera una clau
597 label_issue_watchers: Vigilants
598
599 button_login: Entra
600 button_submit: Tramet
601 button_save: Desa
602 button_check_all: Activa-ho tot
603 button_uncheck_all: Desactiva-ho tot
604 button_delete: Suprimeix
605 button_create: Crea
606 button_test: Test
607 button_edit: Edit
608 button_add: Afegeix
609 button_change: Canvia
610 button_apply: Aplica
611 button_clear: Neteja
612 button_lock: Bloca
613 button_unlock: Desbloca
614 button_download: Baixa
615 button_list: Llista
616 button_view: Visualitza
617 button_move: Mou
618 button_back: Enrere
619 button_cancel: Cancel·la
620 button_activate: Activa
621 button_sort: Ordena
622 button_log_time: "Hora d'entrada"
623 button_rollback: Torna a aquesta versió
624 button_watch: Vigila
625 button_unwatch: No vigilis
626 button_reply: Resposta
627 button_archive: Arxiva
628 button_unarchive: Desarxiva
629 button_reset: Reinicia
630 button_rename: Reanomena
631 button_change_password: Canvia la contrasenya
632 button_copy: Copia
633 button_annotate: Anota
634 button_update: Actualitza
635 button_configure: Configura
636 button_quote: Cita
637
638 status_active: actiu
639 status_registered: informat
640 status_locked: bloquejat
641
642 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria d'enviar una notificació per correu electrònic."
643 text_regexp_info: ex. ^[A-Z0-9]+$
644 text_min_max_length_info: 0 significa sense restricció
645 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
646 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: {{value}}."
647 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
648 text_are_you_sure: Segur?
649 text_journal_changed: "canviat des de {{old}} a {{new}}"
650 text_journal_set_to: "establert a {{value}}"
651 text_journal_deleted: suprimit
652 text_tip_task_begin_day: "tasca que s'inicia aquest dia"
653 text_tip_task_end_day: tasca que finalitza aquest dia
654 text_tip_task_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
655 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."
656 text_caracters_maximum: "{{count}} caràcters com a màxim."
657 text_caracters_minimum: "Com a mínim ha de tenir {{count}} caràcters."
658 text_length_between: "Longitud entre {{min}} i {{max}} caràcters."
659 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
660 text_unallowed_characters: Caràcters no permesos
661 text_comma_separated: Es permeten valors múltiples (separats per una coma).
662 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
663 text_issue_added: "L'assumpte {{id}} ha sigut informat per {{author}}."
664 text_issue_updated: "L'assumpte {{id}} ha sigut actualitzat per {{author}}."
665 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
666 text_issue_category_destroy_question: "Alguns assumptes ({{count}}) estan assignats a aquesta categoria. Què voleu fer?"
667 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
668 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
669 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)."
670 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."
671 text_load_default_configuration: Carrega la configuració predeterminada
672 text_status_changed_by_changeset: "Aplicat en el conjunt de canvis {{value}}."
673 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
674 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
675 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
676 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
677 text_rmagick_available: RMagick disponible (opcional)
678 text_destroy_time_entries_question: "S'han informat %.02f hores en els assumptes que aneu a suprimir. Què voleu fer?"
679 text_destroy_time_entries: Suprimeix les hores informades
680 text_assign_time_entries_to_project: Assigna les hores informades al projecte
681 text_reassign_time_entries: 'Torna a assignar les hores informades a aquest assumpte:'
682 text_user_wrote: "{{value}} va escriure:'"
683 text_enumeration_destroy_question: "{{count}} objectes estan assignats a aquest valor.'"
684 text_enumeration_category_reassign_to: 'Torna a assignar-los a aquest valor:'
685 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/email.yml i reinicieu l'aplicació per habilitar-lo."
686
687 default_role_manager: Gestor
688 default_role_developper: Desenvolupador
689 default_role_reporter: Informador
690 default_tracker_bug: Error
691 default_tracker_feature: Característica
692 default_tracker_support: Suport
693 default_issue_status_new: Nou
694 default_issue_status_assigned: Assignat
695 default_issue_status_resolved: Resolt
696 default_issue_status_feedback: Comentaris
697 default_issue_status_closed: Tancat
698 default_issue_status_rejected: Rebutjat
699 default_doc_category_user: "Documentació d'usuari"
700 default_doc_category_tech: Documentació tècnica
701 default_priority_low: Baixa
702 default_priority_normal: Normal
703 default_priority_high: Alta
704 default_priority_urgent: Urgent
705 default_priority_immediate: Immediata
706 default_activity_design: Disseny
707 default_activity_development: Desenvolupament
708
709 enumeration_issue_priorities: Prioritat dels assumptes
710 enumeration_doc_categories: Categories del document
711 enumeration_activities: Activitats (seguidor de temps)
712 setting_plain_text_mail: plain text only (no HTML)
713 permission_view_files: View files
714 permission_edit_issues: Edit issues
715 permission_edit_own_time_entries: Edit own time logs
716 permission_manage_public_queries: Manage public queries
717 permission_add_issues: Add issues
718 permission_log_time: Log spent time
719 permission_view_changesets: View changesets
720 permission_view_time_entries: View spent time
721 permission_manage_versions: Manage versions
722 permission_manage_wiki: Manage wiki
723 permission_manage_categories: Manage issue categories
724 permission_protect_wiki_pages: Protect wiki pages
725 permission_comment_news: Comment news
726 permission_delete_messages: Delete messages
727 permission_select_project_modules: Select project modules
728 permission_manage_documents: Manage documents
729 permission_edit_wiki_pages: Edit wiki pages
730 permission_add_issue_watchers: Add watchers
731 permission_view_gantt: View gantt chart
732 permission_move_issues: Move issues
733 permission_manage_issue_relations: Manage issue relations
734 permission_delete_wiki_pages: Delete wiki pages
735 permission_manage_boards: Manage boards
736 permission_delete_wiki_pages_attachments: Delete attachments
737 permission_view_wiki_edits: View wiki history
738 permission_add_messages: Post messages
739 permission_view_messages: View messages
740 permission_manage_files: Manage files
741 permission_edit_issue_notes: Edit notes
742 permission_manage_news: Manage news
743 permission_view_calendar: View calendrier
744 permission_manage_members: Manage members
745 permission_edit_messages: Edit messages
746 permission_delete_issues: Delete issues
747 permission_view_issue_watchers: View watchers list
748 permission_manage_repository: Manage repository
749 permission_commit_access: Commit access
750 permission_browse_repository: Browse repository
751 permission_view_documents: View documents
752 permission_edit_project: Edit project
753 permission_add_issue_notes: Add notes
754 permission_save_queries: Save queries
755 permission_view_wiki_pages: View wiki
756 permission_rename_wiki_pages: Rename wiki pages
757 permission_edit_time_entries: Edit time logs
758 permission_edit_own_issue_notes: Edit own notes
759 setting_gravatar_enabled: Use Gravatar user icons
760 label_example: Example
761 text_repository_usernames_mapping: "Select ou 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."
762 permission_edit_own_messages: Edit own messages
763 permission_delete_own_messages: Delete own messages
764 label_user_activity: "{{value}}'s activity"
765 label_updated_time_by: "Updated by {{author}} {{age}} ago"
766 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
767 setting_diff_max_lines_displayed: Max number of diff lines displayed
768 text_plugin_assets_writable: Plugin assets directory writable
769 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
770 button_create_and_continue: Create and continue
771 text_custom_field_possible_values_info: 'One line for each value'
772 label_display: Display
773 field_editable: Editable
774 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
This diff has been collapsed as it changes many lines, (1488 lines changed) Show them Hide them
@@ -1,714 +1,778
1 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
2 # Based on original CZ translation by Jan Kadleček
1 cs:
2 date:
3 formats:
4 # Use the strftime parameters for formats.
5 # When no format has been given, it uses default.
6 # You can provide other formats here if you like!
7 default: "%Y-%m-%d"
8 short: "%b %d"
9 long: "%B %d, %Y"
10
11 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
12 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
13
14 # Don't forget the nil at the beginning; there's no such thing as a 0th month
15 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
16 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
17 # Used in date_select and datime_select.
18 order: [ :year, :month, :day ]
3 19
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
20 time:
21 formats:
22 default: "%a, %d %b %Y %H:%M:%S %z"
23 short: "%d %b %H:%M"
24 long: "%B %d, %Y %H:%M"
25 am: "am"
26 pm: "pm"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: "half a minute"
31 less_than_x_seconds:
32 one: "less than 1 second"
33 other: "less than {{count}} seconds"
34 x_seconds:
35 one: "1 second"
36 other: "{{count}} seconds"
37 less_than_x_minutes:
38 one: "less than a minute"
39 other: "less than {{count}} minutes"
40 x_minutes:
41 one: "1 minute"
42 other: "{{count}} minutes"
43 about_x_hours:
44 one: "about 1 hour"
45 other: "about {{count}} hours"
46 x_days:
47 one: "1 day"
48 other: "{{count}} days"
49 about_x_months:
50 one: "about 1 month"
51 other: "about {{count}} months"
52 x_months:
53 one: "1 month"
54 other: "{{count}} months"
55 about_x_years:
56 one: "about 1 year"
57 other: "about {{count}} years"
58 over_x_years:
59 one: "over 1 year"
60 other: "over {{count}} years"
61
62 # Used in array.to_sentence.
63 support:
64 array:
65 sentence_connector: "and"
66 skip_last_comma: false
67
68 activerecord:
69 errors:
70 messages:
71 inclusion: "není zahrnuto v seznamu"
72 exclusion: "je rezervováno"
73 invalid: "je neplatné"
74 confirmation: "se neshoduje s potvrzením"
75 accepted: "musí být akceptováno"
76 empty: "nemůže být prázdný"
77 blank: "nemůže být prázdný"
78 too_long: "je příliš dlouhý"
79 too_short: "je příliš krátký"
80 wrong_length: "má chybnou délku"
81 taken: "je již použito"
82 not_a_number: "není číslo"
83 not_a_date: "není platné datum"
84 greater_than: "must be greater than {{count}}"
85 greater_than_or_equal_to: "must be greater than or equal to {{count}}"
86 equal_to: "must be equal to {{count}}"
87 less_than: "must be less than {{count}}"
88 less_than_or_equal_to: "must be less than or equal to {{count}}"
89 odd: "must be odd"
90 even: "must be even"
91 greater_than_start_date: "musí být větší než počáteční datum"
92 not_same_project: "nepatří stejnému projektu"
93 circular_dependency: "Tento vztah by vytvořil cyklickou závislost"
5 94
6 actionview_datehelper_select_day_prefix:
7 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
8 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
9 actionview_datehelper_select_month_prefix:
10 actionview_datehelper_select_year_prefix:
11 actionview_datehelper_time_in_words_day: 1 den
12 actionview_datehelper_time_in_words_day_plural: %d dny
13 actionview_datehelper_time_in_words_hour_about: asi hodinou
14 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodinami
15 actionview_datehelper_time_in_words_hour_about_single: asi hodinou
16 actionview_datehelper_time_in_words_minute: 1 minutou
17 actionview_datehelper_time_in_words_minute_half: půl minutou
18 actionview_datehelper_time_in_words_minute_less_than: méně než minutou
19 actionview_datehelper_time_in_words_minute_plural: %d minutami
20 actionview_datehelper_time_in_words_minute_single: 1 minutou
21 actionview_datehelper_time_in_words_second_less_than: méně než sekundou
22 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekundami
23 actionview_instancetag_blank_option: Prosím vyberte
24
25 activerecord_error_inclusion: není zahrnuto v seznamu
26 activerecord_error_exclusion: je rezervováno
27 activerecord_error_invalid: je neplatné
28 activerecord_error_confirmation: se neshoduje s potvrzením
29 activerecord_error_accepted: musí být akceptováno
30 activerecord_error_empty: nemůže být prázdný
31 activerecord_error_blank: nemůže být prázdný
32 activerecord_error_too_long: je příliš dlouhý
33 activerecord_error_too_short: je příliš krátký
34 activerecord_error_wrong_length: má chybnou délku
35 activerecord_error_taken: je již použito
36 activerecord_error_not_a_number: není číslo
37 activerecord_error_not_a_date: není platné datum
38 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
39 activerecord_error_not_same_project: nepatří stejnému projektu
40 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
41
42 general_fmt_age: %d rok
43 general_fmt_age_plural: %d roků
44 general_fmt_date: %%m/%%d/%%Y
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
48 general_text_No: 'Ne'
49 general_text_Yes: 'Ano'
50 general_text_no: 'ne'
51 general_text_yes: 'ano'
52 general_lang_name: 'Čeština'
53 general_csv_separator: ','
54 general_csv_decimal_separator: '.'
55 general_csv_encoding: UTF-8
56 general_pdf_encoding: UTF-8
57 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
58 general_first_day_of_week: '1'
59
60 notice_account_updated: Účet byl úspěšně změněn.
61 notice_account_invalid_creditentials: Chybné jméno nebo heslo
62 notice_account_password_updated: Heslo bylo úspěšně změněno.
63 notice_account_wrong_password: Chybné heslo
64 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.
65 notice_account_unknown_email: Neznámý uživatel.
66 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
67 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
68 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
69 notice_successful_create: Úspěšně vytvořeno.
70 notice_successful_update: Úspěšně aktualizováno.
71 notice_successful_delete: Úspěšně odstraněno.
72 notice_successful_connection: Úspěšné připojení.
73 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
74 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
75 notice_scm_error: Entry and/or revision doesn't exist in the repository.
76 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
77 notice_email_sent: Na adresu %s byl odeslán email
78 notice_email_error: Při odesílání emailu nastala chyba (%s)
79 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
80 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
81 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
82 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
83 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
84
85 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %s"
86 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
87 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: %s"
88 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
89
90 mail_subject_lost_password: Vaše heslo (%s)
91 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
92 mail_subject_register: Aktivace účtu (%s)
93 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
94 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit.
95 mail_body_account_information: Informace o vašem účtu
96 mail_subject_account_activation_request: Aktivace %s účtu
97 mail_body_account_activation_request: Byl zaregistrován nový uživatel "%s". Aktivace jeho účtu závisí na vašem potvrzení.
98
99 gui_validation_error: 1 chyba
100 gui_validation_error_plural: %d chyb(y)
101
102 field_name: Název
103 field_description: Popis
104 field_summary: Přehled
105 field_is_required: Povinné pole
106 field_firstname: Jméno
107 field_lastname: Příjmení
108 field_mail: Email
109 field_filename: Soubor
110 field_filesize: Velikost
111 field_downloads: Staženo
112 field_author: Autor
113 field_created_on: Vytvořeno
114 field_updated_on: Aktualizováno
115 field_field_format: Formát
116 field_is_for_all: Pro všechny projekty
117 field_possible_values: Možné hodnoty
118 field_regexp: Regulární výraz
119 field_min_length: Minimální délka
120 field_max_length: Maximální délka
121 field_value: Hodnota
122 field_category: Kategorie
123 field_title: Název
124 field_project: Projekt
125 field_issue: Úkol
126 field_status: Stav
127 field_notes: Poznámka
128 field_is_closed: Úkol uzavřen
129 field_is_default: Výchozí stav
130 field_tracker: Fronta
131 field_subject: Předmět
132 field_due_date: Uzavřít do
133 field_assigned_to: Přiřazeno
134 field_priority: Priorita
135 field_fixed_version: Přiřazeno k verzi
136 field_user: Uživatel
137 field_role: Role
138 field_homepage: Homepage
139 field_is_public: Veřejný
140 field_parent: Nadřazený projekt
141 field_is_in_chlog: Úkoly zobrazené v změnovém logu
142 field_is_in_roadmap: Úkoly zobrazené v plánu
143 field_login: Přihlášení
144 field_mail_notification: Emailová oznámení
145 field_admin: Administrátor
146 field_last_login_on: Poslední přihlášení
147 field_language: Jazyk
148 field_effective_date: Datum
149 field_password: Heslo
150 field_new_password: Nové heslo
151 field_password_confirmation: Potvrzení
152 field_version: Verze
153 field_type: Typ
154 field_host: Host
155 field_port: Port
156 field_account: Účet
157 field_base_dn: Base DN
158 field_attr_login: Přihlášení (atribut)
159 field_attr_firstname: Jméno (atribut)
160 field_attr_lastname: Příjemní (atribut)
161 field_attr_mail: Email (atribut)
162 field_onthefly: Automatické vytváření uživatelů
163 field_start_date: Začátek
164 field_done_ratio: %% Hotovo
165 field_auth_source: Autentifikační mód
166 field_hide_mail: Nezobrazovat můj email
167 field_comments: Komentář
168 field_url: URL
169 field_start_page: Výchozí stránka
170 field_subproject: Podprojekt
171 field_hours: Hodiny
172 field_activity: Aktivita
173 field_spent_on: Datum
174 field_identifier: Identifikátor
175 field_is_filter: Použít jako filtr
176 field_issue_to_id: Související úkol
177 field_delay: Zpoždění
178 field_assignable: Úkoly mohou být přiřazeny této roli
179 field_redirect_existing_links: Přesměrovat stvávající odkazy
180 field_estimated_hours: Odhadovaná doba
181 field_column_names: Sloupce
182 field_time_zone: Časové pásmo
183 field_searchable: Umožnit vyhledávání
184 field_default_value: Výchozí hodnota
185 field_comments_sorting: Zobrazit komentáře
186
187 setting_app_title: Název aplikace
188 setting_app_subtitle: Podtitulek aplikace
189 setting_welcome_text: Uvítací text
190 setting_default_language: Výchozí jazyk
191 setting_login_required: Auten. vyžadována
192 setting_self_registration: Povolena automatická registrace
193 setting_attachment_max_size: Maximální velikost přílohy
194 setting_issues_export_limit: Limit pro export úkolů
195 setting_mail_from: Odesílat emaily z adresy
196 setting_bcc_recipients: Příjemci skryté kopie (bcc)
197 setting_host_name: Host name
198 setting_text_formatting: Formátování textu
199 setting_wiki_compression: Komperese historie Wiki
200 setting_feeds_limit: Feed content limit
201 setting_default_projects_public: Nové projekty nastavovat jako veřejné
202 setting_autofetch_changesets: Autofetch commits
203 setting_sys_api_enabled: Povolit WS pro správu repozitory
204 setting_commit_ref_keywords: Klíčová slova pro odkazy
205 setting_commit_fix_keywords: Klíčová slova pro uzavření
206 setting_autologin: Automatické přihlašování
207 setting_date_format: Formát data
208 setting_time_format: Formát času
209 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
210 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
211 setting_repositories_encodings: Kódování
212 setting_emails_footer: Patička emailů
213 setting_protocol: Protokol
214 setting_per_page_options: Povolené počty řádků na stránce
215 setting_user_format: Formát zobrazení uživatele
216 setting_activity_days_default: Days displayed on project activity
217 setting_display_subprojects_issues: Display subprojects issues on main projects by default
218
219 project_module_issue_tracking: Sledování úkolů
220 project_module_time_tracking: Sledování času
221 project_module_news: Novinky
222 project_module_documents: Dokumenty
223 project_module_files: Soubory
224 project_module_wiki: Wiki
225 project_module_repository: Repository
226 project_module_boards: Diskuse
227
228 label_user: Uživatel
229 label_user_plural: Uživatelé
230 label_user_new: Nový uživatel
231 label_project: Projekt
232 label_project_new: Nový projekt
233 label_project_plural: Projekty
234 label_project_all: Všechny projekty
235 label_project_latest: Poslední projekty
236 label_issue: Úkol
237 label_issue_new: Nový úkol
238 label_issue_plural: Úkoly
239 label_issue_view_all: Všechny úkoly
240 label_issues_by: Úkoly od uživatele %s
241 label_issue_added: Úkol přidán
242 label_issue_updated: Úkol aktualizován
243 label_document: Dokument
244 label_document_new: Nový dokument
245 label_document_plural: Dokumenty
246 label_document_added: Dokument přidán
247 label_role: Role
248 label_role_plural: Role
249 label_role_new: Nová role
250 label_role_and_permissions: Role a práva
251 label_member: Člen
252 label_member_new: Nový člen
253 label_member_plural: Členové
254 label_tracker: Fronta
255 label_tracker_plural: Fronty
256 label_tracker_new: Nová fronta
257 label_workflow: Workflow
258 label_issue_status: Stav úkolu
259 label_issue_status_plural: Stavy úkolů
260 label_issue_status_new: Nový stav
261 label_issue_category: Kategorie úkolu
262 label_issue_category_plural: Kategorie úkolů
263 label_issue_category_new: Nová kategorie
264 label_custom_field: Uživatelské pole
265 label_custom_field_plural: Uživatelská pole
266 label_custom_field_new: Nové uživatelské pole
267 label_enumerations: Seznamy
268 label_enumeration_new: Nová hodnota
269 label_information: Informace
270 label_information_plural: Informace
271 label_please_login: Prosím přihlašte se
272 label_register: Registrovat
273 label_password_lost: Zapomenuté heslo
274 label_home: Úvodní
275 label_my_page: Moje stránka
276 label_my_account: Můj účet
277 label_my_projects: Moje projekty
278 label_administration: Administrace
279 label_login: Přihlášení
280 label_logout: Odhlášení
281 label_help: Nápověda
282 label_reported_issues: Nahlášené úkoly
283 label_assigned_to_me_issues: Mé úkoly
284 label_last_login: Poslední přihlášení
285 label_last_updates: Poslední změna
286 label_last_updates_plural: %d poslední změny
287 label_registered_on: Registrován
288 label_activity: Aktivita
289 label_overall_activity: Celková aktivita
290 label_new: Nový
291 label_logged_as: Přihlášen jako
292 label_environment: Prostředí
293 label_authentication: Autentifikace
294 label_auth_source: Mód autentifikace
295 label_auth_source_new: Nový mód autentifikace
296 label_auth_source_plural: Módy autentifikace
297 label_subproject_plural: Podprojekty
298 label_min_max_length: Min - Max délka
299 label_list: Seznam
300 label_date: Datum
301 label_integer: Celé číslo
302 label_float: Desetiné číslo
303 label_boolean: Ano/Ne
304 label_string: Text
305 label_text: Dlouhý text
306 label_attribute: Atribut
307 label_attribute_plural: Atributy
308 label_download: %d Download
309 label_download_plural: %d Downloads
310 label_no_data: Žádné položky
311 label_change_status: Změnit stav
312 label_history: Historie
313 label_attachment: Soubor
314 label_attachment_new: Nový soubor
315 label_attachment_delete: Odstranit soubor
316 label_attachment_plural: Soubory
317 label_file_added: Soubor přidán
318 label_report: Přeheled
319 label_report_plural: Přehledy
320 label_news: Novinky
321 label_news_new: Přidat novinku
322 label_news_plural: Novinky
323 label_news_latest: Poslední novinky
324 label_news_view_all: Zobrazit všechny novinky
325 label_news_added: Novinka přidána
326 label_change_log: Protokol změn
327 label_settings: Nastavení
328 label_overview: Přehled
329 label_version: Verze
330 label_version_new: Nová verze
331 label_version_plural: Verze
332 label_confirmation: Potvrzení
333 label_export_to: 'Také k dispozici:'
334 label_read: Načítá se...
335 label_public_projects: Veřejné projekty
336 label_open_issues: otevřený
337 label_open_issues_plural: otevřené
338 label_closed_issues: uzavřený
339 label_closed_issues_plural: uzavřené
340 label_total: Celkem
341 label_permissions: Práva
342 label_current_status: Aktuální stav
343 label_new_statuses_allowed: Nové povolené stavy
344 label_all: vše
345 label_none: nic
346 label_nobody: nikdo
347 label_next: Další
348 label_previous: Předchozí
349 label_used_by: Použito
350 label_details: Detaily
351 label_add_note: Přidat poznámku
352 label_per_page: Na stránku
353 label_calendar: Kalendář
354 label_months_from: měsíců od
355 label_gantt: Ganttův graf
356 label_internal: Interní
357 label_last_changes: posledních %d změn
358 label_change_view_all: Zobrazit všechny změny
359 label_personalize_page: Přizpůsobit tuto stránku
360 label_comment: Komentář
361 label_comment_plural: Komentáře
362 label_comment_add: Přidat komentáře
363 label_comment_added: Komentář přidán
364 label_comment_delete: Odstranit komentář
365 label_query: Uživatelský dotaz
366 label_query_plural: Uživatelské dotazy
367 label_query_new: Nový dotaz
368 label_filter_add: Přidat filtr
369 label_filter_plural: Filtry
370 label_equals: je
371 label_not_equals: není
372 label_in_less_than: je měší než
373 label_in_more_than: je větší než
374 label_in: v
375 label_today: dnes
376 label_all_time: vše
377 label_yesterday: včera
378 label_this_week: tento týden
379 label_last_week: minulý týden
380 label_last_n_days: posledních %d dnů
381 label_this_month: tento měsíc
382 label_last_month: minulý měsíc
383 label_this_year: tento rok
384 label_date_range: Časový rozsah
385 label_less_than_ago: před méně jak (dny)
386 label_more_than_ago: před více jak (dny)
387 label_ago: před (dny)
388 label_contains: obsahuje
389 label_not_contains: neobsahuje
390 label_day_plural: dny
391 label_repository: Repository
392 label_repository_plural: Repository
393 label_browse: Procházet
394 label_modification: %d změna
395 label_modification_plural: %d změn
396 label_revision: Revize
397 label_revision_plural: Revizí
398 label_associated_revisions: Související verze
399 label_added: přidáno
400 label_modified: změněno
401 label_deleted: odstraněno
402 label_latest_revision: Poslední revize
403 label_latest_revision_plural: Poslední revize
404 label_view_revisions: Zobrazit revize
405 label_max_size: Maximální velikost
406 label_on: 'zapnuto'
407 label_sort_highest: Přesunout na začátek
408 label_sort_higher: Přesunout nahoru
409 label_sort_lower: Přesunout dolů
410 label_sort_lowest: Přesunout na konec
411 label_roadmap: Plán
412 label_roadmap_due_in: Zbývá %s
413 label_roadmap_overdue: %s pozdě
414 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
415 label_search: Hledat
416 label_result_plural: Výsledky
417 label_all_words: Všechna slova
418 label_wiki: Wiki
419 label_wiki_edit: Wiki úprava
420 label_wiki_edit_plural: Wiki úpravy
421 label_wiki_page: Wiki stránka
422 label_wiki_page_plural: Wiki stránky
423 label_index_by_title: Index dle názvu
424 label_index_by_date: Index dle data
425 label_current_version: Aktuální verze
426 label_preview: Náhled
427 label_feed_plural: Příspěvky
428 label_changes_details: Detail všech změn
429 label_issue_tracking: Sledování úkolů
430 label_spent_time: Strávený čas
431 label_f_hour: %.2f hodina
432 label_f_hour_plural: %.2f hodin
433 label_time_tracking: Sledování času
434 label_change_plural: Změny
435 label_statistics: Statistiky
436 label_commits_per_month: Commitů za měsíc
437 label_commits_per_author: Commitů za autora
438 label_view_diff: Zobrazit rozdíly
439 label_diff_inline: uvnitř
440 label_diff_side_by_side: vedle sebe
441 label_options: Nastavení
442 label_copy_workflow_from: Kopírovat workflow z
443 label_permissions_report: Přehled práv
444 label_watched_issues: Sledované úkoly
445 label_related_issues: Související úkoly
446 label_applied_status: Použitý stav
447 label_loading: Nahrávám...
448 label_relation_new: Nová souvislost
449 label_relation_delete: Odstranit souvislost
450 label_relates_to: související s
451 label_duplicates: duplicity
452 label_blocks: bloků
453 label_blocked_by: zablokován
454 label_precedes: předchází
455 label_follows: následuje
456 label_end_to_start: od konce do začátku
457 label_end_to_end: od konce do konce
458 label_start_to_start: od začátku do začátku
459 label_start_to_end: od začátku do konce
460 label_stay_logged_in: Zůstat přihlášený
461 label_disabled: zakázán
462 label_show_completed_versions: Ukázat dokončené verze
463 label_me:
464 label_board: Fórum
465 label_board_new: Nové fórum
466 label_board_plural: Fóra
467 label_topic_plural: Témata
468 label_message_plural: Zprávy
469 label_message_last: Poslední zpráva
470 label_message_new: Nová zpráva
471 label_message_posted: Zpráva přidána
472 label_reply_plural: Odpovědi
473 label_send_information: Zaslat informace o účtu uživateli
474 label_year: Rok
475 label_month: Měsíc
476 label_week: Týden
477 label_date_from: Od
478 label_date_to: Do
479 label_language_based: Podle výchozího jazyku
480 label_sort_by: Seřadit podle %s
481 label_send_test_email: Poslat testovací email
482 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
483 label_module_plural: Moduly
484 label_added_time_by: 'Přidáno uživatelem %s před %s'
485 label_updated_time: 'Aktualizováno před %s'
486 label_jump_to_a_project: Zvolit projekt...
487 label_file_plural: Soubory
488 label_changeset_plural: Changesety
489 label_default_columns: Výchozí sloupce
490 label_no_change_option: (beze změny)
491 label_bulk_edit_selected_issues: Bulk edit selected issues
492 label_theme: Téma
493 label_default: Výchozí
494 label_search_titles_only: Vyhledávat pouze v názvech
495 label_user_mail_option_all: "Pro všechny události všech mých projektů"
496 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
497 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
498 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
499 label_registration_activation_by_email: aktivace účtu emailem
500 label_registration_manual_activation: manuální aktivace účtu
501 label_registration_automatic_activation: automatická aktivace účtu
502 label_display_per_page: '%s na stránku'
503 label_age: Věk
504 label_change_properties: Změnit vlastnosti
505 label_general: Obecné
506 label_more: Více
507 label_scm: SCM
508 label_plugins: Doplňky
509 label_ldap_authentication: Autentifikace LDAP
510 label_downloads_abbr: D/L
511 label_optional_description: Volitelný popis
512 label_add_another_file: Přidat další soubor
513 label_preferences: Nastavení
514 label_chronological_order: V chronologickém pořadí
515 label_reverse_chronological_order: V obrácaném chronologickém pořadí
516
517 button_login: Přihlásit
518 button_submit: Potvrdit
519 button_save: Uložit
520 button_check_all: Zašrtnout vše
521 button_uncheck_all: Odšrtnout vše
522 button_delete: Odstranit
523 button_create: Vytvořit
524 button_test: Test
525 button_edit: Upravit
526 button_add: Přidat
527 button_change: Změnit
528 button_apply: Použít
529 button_clear: Smazat
530 button_lock: Zamknout
531 button_unlock: Odemknout
532 button_download: Stáhnout
533 button_list: Vypsat
534 button_view: Zobrazit
535 button_move: Přesunout
536 button_back: Zpět
537 button_cancel: Storno
538 button_activate: Aktivovat
539 button_sort: Seřadit
540 button_log_time: Přidat čas
541 button_rollback: Zpět k této verzi
542 button_watch: Sledovat
543 button_unwatch: Nesledovat
544 button_reply: Odpovědět
545 button_archive: Archivovat
546 button_unarchive: Odarchivovat
547 button_reset: Reset
548 button_rename: Přejmenovat
549 button_change_password: Změnit heslo
550 button_copy: Kopírovat
551 button_annotate: Komentovat
552 button_update: Aktualizovat
553 button_configure: Konfigurovat
554
555 status_active: aktivní
556 status_registered: registrovaný
557 status_locked: uzamčený
558
559 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
560 text_regexp_info: např. ^[A-Z0-9]+$
561 text_min_max_length_info: 0 znamená bez limitu
562 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
563 text_workflow_edit: Vyberte roli a frontu k editaci workflow
564 text_are_you_sure: Jste si jisti?
565 text_journal_changed: změněno z %s na %s
566 text_journal_set_to: nastaveno na %s
567 text_journal_deleted: odstraněno
568 text_tip_task_begin_day: úkol začíná v tento den
569 text_tip_task_end_day: úkol končí v tento den
570 text_tip_task_begin_end_day: úkol začíná a končí v tento den
571 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.'
572 text_caracters_maximum: %d znaků maximálně.
573 text_caracters_minimum: Musí být alespoň %d znaků dlouhé.
574 text_length_between: Délka mezi %d a %d znaky.
575 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
576 text_unallowed_characters: Nepovolené znaky
577 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
578 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
579 text_issue_added: Úkol %s byl vytvořen uživatelem %s.
580 text_issue_updated: Úkol %s byl aktualizován uživatelem %s.
581 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
582 text_issue_category_destroy_question: Některé úkoly (%d) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?
583 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
584 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
585 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))."
586 text_no_configuration_data: "Role, fronty, stavy úkolů ani workflow nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci.Po si můžete vše upravit"
587 text_load_default_configuration: Nahrát výchozí konfiguraci
588 text_status_changed_by_changeset: Použito v changesetu %s.
589 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
590 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
591 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
592 text_file_repository_writable: Povolen zápis do repository
593 text_rmagick_available: RMagick k dispozici (volitelné)
594 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
595 text_destroy_time_entries: Odstranit evidované hodiny.
596 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
597 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
598
599 default_role_manager: Manažer
600 default_role_developper: Vývojář
601 default_role_reporter: Reportér
602 default_tracker_bug: Chyba
603 default_tracker_feature: Požadavek
604 default_tracker_support: Podpora
605 default_issue_status_new: Nový
606 default_issue_status_assigned: Přiřazený
607 default_issue_status_resolved: Vyřešený
608 default_issue_status_feedback: Čeká se
609 default_issue_status_closed: Uzavřený
610 default_issue_status_rejected: Odmítnutý
611 default_doc_category_user: Uživatelská dokumentace
612 default_doc_category_tech: Technická dokumentace
613 default_priority_low: Nízká
614 default_priority_normal: Normální
615 default_priority_high: Vysoká
616 default_priority_urgent: Urgentní
617 default_priority_immediate: Okamžitá
618 default_activity_design: Design
619 default_activity_development: Vývoj
620
621 enumeration_issue_priorities: Priority úkolů
622 enumeration_doc_categories: Kategorie dokumentů
623 enumeration_activities: Aktivity (sledování času)
624 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
625 label_planning: Plánování
626 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
627 label_and_its_subprojects: %s and its subprojects
628 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
629 mail_subject_reminder: "%d issue(s) due in the next days"
630 text_user_wrote: '%s wrote:'
631 label_duplicated_by: duplicated by
632 setting_enabled_scm: Enabled SCM
633 text_enumeration_category_reassign_to: 'Reassign them to this value:'
634 text_enumeration_destroy_question: '%d objects are assigned to this value.'
635 label_incoming_emails: Incoming emails
636 label_generate_key: Generate a key
637 setting_mail_handler_api_enabled: Enable WS for incoming emails
638 setting_mail_handler_api_key: API key
639 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
640 field_parent_title: Parent page
641 label_issue_watchers: Watchers
642 setting_commit_logs_encoding: Commit messages encoding
643 button_quote: Quote
644 setting_sequential_project_identifiers: Generate sequential project identifiers
645 notice_unable_delete_version: Unable to delete version
646 label_renamed: renamed
647 label_copied: copied
648 setting_plain_text_mail: plain text only (no HTML)
649 permission_view_files: View files
650 permission_edit_issues: Edit issues
651 permission_edit_own_time_entries: Edit own time logs
652 permission_manage_public_queries: Manage public queries
653 permission_add_issues: Add issues
654 permission_log_time: Log spent time
655 permission_view_changesets: View changesets
656 permission_view_time_entries: View spent time
657 permission_manage_versions: Manage versions
658 permission_manage_wiki: Manage wiki
659 permission_manage_categories: Manage issue categories
660 permission_protect_wiki_pages: Protect wiki pages
661 permission_comment_news: Comment news
662 permission_delete_messages: Delete messages
663 permission_select_project_modules: Select project modules
664 permission_manage_documents: Manage documents
665 permission_edit_wiki_pages: Edit wiki pages
666 permission_add_issue_watchers: Add watchers
667 permission_view_gantt: View gantt chart
668 permission_move_issues: Move issues
669 permission_manage_issue_relations: Manage issue relations
670 permission_delete_wiki_pages: Delete wiki pages
671 permission_manage_boards: Manage boards
672 permission_delete_wiki_pages_attachments: Delete attachments
673 permission_view_wiki_edits: View wiki history
674 permission_add_messages: Post messages
675 permission_view_messages: View messages
676 permission_manage_files: Manage files
677 permission_edit_issue_notes: Edit notes
678 permission_manage_news: Manage news
679 permission_view_calendar: View calendrier
680 permission_manage_members: Manage members
681 permission_edit_messages: Edit messages
682 permission_delete_issues: Delete issues
683 permission_view_issue_watchers: View watchers list
684 permission_manage_repository: Manage repository
685 permission_commit_access: Commit access
686 permission_browse_repository: Browse repository
687 permission_view_documents: View documents
688 permission_edit_project: Edit project
689 permission_add_issue_notes: Add notes
690 permission_save_queries: Save queries
691 permission_view_wiki_pages: View wiki
692 permission_rename_wiki_pages: Rename wiki pages
693 permission_edit_time_entries: Edit time logs
694 permission_edit_own_issue_notes: Edit own notes
695 setting_gravatar_enabled: Use Gravatar user icons
696 label_example: Example
697 text_repository_usernames_mapping: "Select ou 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."
698 permission_edit_own_messages: Edit own messages
699 permission_delete_own_messages: Delete own messages
700 label_user_activity: "%s's activity"
701 label_updated_time_by: Updated by %s %s ago
702 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
703 setting_diff_max_lines_displayed: Max number of diff lines displayed
704 text_plugin_assets_writable: Plugin assets directory writable
705 warning_attachments_not_saved: "%d file(s) could not be saved."
706 button_create_and_continue: Create and continue
707 text_custom_field_possible_values_info: 'One line for each value'
708 label_display: Display
709 field_editable: Editable
710 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
711 field_identity_url: OpenID URL
712 setting_openid: Allow OpenID login and registration
713 label_login_with_open_id_option: or login with OpenID
714 field_watcher: Watcher
95 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
96 # Based on original CZ translation by Jan Kadleček
97
98 actionview_instancetag_blank_option: Prosím vyberte
99
100 general_text_No: 'Ne'
101 general_text_Yes: 'Ano'
102 general_text_no: 'ne'
103 general_text_yes: 'ano'
104 general_lang_name: 'Čeština'
105 general_csv_separator: ','
106 general_csv_decimal_separator: '.'
107 general_csv_encoding: UTF-8
108 general_pdf_encoding: UTF-8
109 general_first_day_of_week: '1'
110
111 notice_account_updated: Účet byl úspěšně změněn.
112 notice_account_invalid_creditentials: Chybné jméno nebo heslo
113 notice_account_password_updated: Heslo bylo úspěšně změněno.
114 notice_account_wrong_password: Chybné heslo
115 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.
116 notice_account_unknown_email: Neznámý uživatel.
117 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
118 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
119 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
120 notice_successful_create: Úspěšně vytvořeno.
121 notice_successful_update: Úspěšně aktualizováno.
122 notice_successful_delete: Úspěšně odstraněno.
123 notice_successful_connection: Úspěšné připojení.
124 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
125 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
126 notice_scm_error: Entry and/or revision doesn't exist in the repository.
127 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
128 notice_email_sent: "Na adresu {{value}} byl odeslán email"
129 notice_email_error: "Při odesílání emailu nastala chyba ({{value}})"
130 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
131 notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}."
132 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
133 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
134 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
135
136 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: {{value}}"
137 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
138 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: {{value}}"
139 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
140
141 mail_subject_lost_password: "Vaše heslo ({{value}})"
142 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
143 mail_subject_register: "Aktivace účtu ({{value}})"
144 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
145 mail_body_account_information_external: "Pomocí vašeho účtu {{value}} se můžete přihlásit."
146 mail_body_account_information: Informace o vašem účtu
147 mail_subject_account_activation_request: "Aktivace {{value}} účtu"
148 mail_body_account_activation_request: "Byl zaregistrován nový uživatel {{value}}. Aktivace jeho účtu závisí na vašem potvrzení."
149
150 gui_validation_error: 1 chyba
151 gui_validation_error_plural: "{{count}} chyb(y)"
152
153 field_name: Název
154 field_description: Popis
155 field_summary: Přehled
156 field_is_required: Povinné pole
157 field_firstname: Jméno
158 field_lastname: Příjmení
159 field_mail: Email
160 field_filename: Soubor
161 field_filesize: Velikost
162 field_downloads: Staženo
163 field_author: Autor
164 field_created_on: Vytvořeno
165 field_updated_on: Aktualizováno
166 field_field_format: Formát
167 field_is_for_all: Pro všechny projekty
168 field_possible_values: Možné hodnoty
169 field_regexp: Regulární výraz
170 field_min_length: Minimální délka
171 field_max_length: Maximální délka
172 field_value: Hodnota
173 field_category: Kategorie
174 field_title: Název
175 field_project: Projekt
176 field_issue: Úkol
177 field_status: Stav
178 field_notes: Poznámka
179 field_is_closed: Úkol uzavřen
180 field_is_default: Výchozí stav
181 field_tracker: Fronta
182 field_subject: Předmět
183 field_due_date: Uzavřít do
184 field_assigned_to: Přiřazeno
185 field_priority: Priorita
186 field_fixed_version: Přiřazeno k verzi
187 field_user: Uživatel
188 field_role: Role
189 field_homepage: Homepage
190 field_is_public: Veřejný
191 field_parent: Nadřazený projekt
192 field_is_in_chlog: Úkoly zobrazené v změnovém logu
193 field_is_in_roadmap: Úkoly zobrazené v plánu
194 field_login: Přihlášení
195 field_mail_notification: Emailová oznámení
196 field_admin: Administrátor
197 field_last_login_on: Poslední přihlášení
198 field_language: Jazyk
199 field_effective_date: Datum
200 field_password: Heslo
201 field_new_password: Nové heslo
202 field_password_confirmation: Potvrzení
203 field_version: Verze
204 field_type: Typ
205 field_host: Host
206 field_port: Port
207 field_account: Účet
208 field_base_dn: Base DN
209 field_attr_login: Přihlášení (atribut)
210 field_attr_firstname: Jméno (atribut)
211 field_attr_lastname: Příjemní (atribut)
212 field_attr_mail: Email (atribut)
213 field_onthefly: Automatické vytváření uživatelů
214 field_start_date: Začátek
215 field_done_ratio: %% Hotovo
216 field_auth_source: Autentifikační mód
217 field_hide_mail: Nezobrazovat můj email
218 field_comments: Komentář
219 field_url: URL
220 field_start_page: Výchozí stránka
221 field_subproject: Podprojekt
222 field_hours: Hodiny
223 field_activity: Aktivita
224 field_spent_on: Datum
225 field_identifier: Identifikátor
226 field_is_filter: Použít jako filtr
227 field_issue_to_id: Související úkol
228 field_delay: Zpoždění
229 field_assignable: Úkoly mohou být přiřazeny této roli
230 field_redirect_existing_links: Přesměrovat stvávající odkazy
231 field_estimated_hours: Odhadovaná doba
232 field_column_names: Sloupce
233 field_time_zone: Časové pásmo
234 field_searchable: Umožnit vyhledávání
235 field_default_value: Výchozí hodnota
236 field_comments_sorting: Zobrazit komentáře
237
238 setting_app_title: Název aplikace
239 setting_app_subtitle: Podtitulek aplikace
240 setting_welcome_text: Uvítací text
241 setting_default_language: Výchozí jazyk
242 setting_login_required: Auten. vyžadována
243 setting_self_registration: Povolena automatická registrace
244 setting_attachment_max_size: Maximální velikost přílohy
245 setting_issues_export_limit: Limit pro export úkolů
246 setting_mail_from: Odesílat emaily z adresy
247 setting_bcc_recipients: Příjemci skryté kopie (bcc)
248 setting_host_name: Host name
249 setting_text_formatting: Formátování textu
250 setting_wiki_compression: Komperese historie Wiki
251 setting_feeds_limit: Feed content limit
252 setting_default_projects_public: Nové projekty nastavovat jako veřejné
253 setting_autofetch_changesets: Autofetch commits
254 setting_sys_api_enabled: Povolit WS pro správu repozitory
255 setting_commit_ref_keywords: Klíčová slova pro odkazy
256 setting_commit_fix_keywords: Klíčová slova pro uzavření
257 setting_autologin: Automatické přihlašování
258 setting_date_format: Formát data
259 setting_time_format: Formát času
260 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
261 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
262 setting_repositories_encodings: Kódování
263 setting_emails_footer: Patička emailů
264 setting_protocol: Protokol
265 setting_per_page_options: Povolené počty řádků na stránce
266 setting_user_format: Formát zobrazení uživatele
267 setting_activity_days_default: Days displayed on project activity
268 setting_display_subprojects_issues: Display subprojects issues on main projects by default
269
270 project_module_issue_tracking: Sledování úkolů
271 project_module_time_tracking: Sledování času
272 project_module_news: Novinky
273 project_module_documents: Dokumenty
274 project_module_files: Soubory
275 project_module_wiki: Wiki
276 project_module_repository: Repository
277 project_module_boards: Diskuse
278
279 label_user: Uživatel
280 label_user_plural: Uživatelé
281 label_user_new: Nový uživatel
282 label_project: Projekt
283 label_project_new: Nový projekt
284 label_project_plural: Projekty
285 label_x_projects:
286 zero: no projects
287 one: 1 project
288 other: "{{count}} projects"
289 label_project_all: Všechny projekty
290 label_project_latest: Poslední projekty
291 label_issue: Úkol
292 label_issue_new: Nový úkol
293 label_issue_plural: Úkoly
294 label_issue_view_all: Všechny úkoly
295 label_issues_by: "Úkoly od uživatele {{value}}"
296 label_issue_added: Úkol přidán
297 label_issue_updated: Úkol aktualizován
298 label_document: Dokument
299 label_document_new: Nový dokument
300 label_document_plural: Dokumenty
301 label_document_added: Dokument přidán
302 label_role: Role
303 label_role_plural: Role
304 label_role_new: Nová role
305 label_role_and_permissions: Role a práva
306 label_member: Člen
307 label_member_new: Nový člen
308 label_member_plural: Členové
309 label_tracker: Fronta
310 label_tracker_plural: Fronty
311 label_tracker_new: Nová fronta
312 label_workflow: Workflow
313 label_issue_status: Stav úkolu
314 label_issue_status_plural: Stavy úkolů
315 label_issue_status_new: Nový stav
316 label_issue_category: Kategorie úkolu
317 label_issue_category_plural: Kategorie úkolů
318 label_issue_category_new: Nová kategorie
319 label_custom_field: Uživatelské pole
320 label_custom_field_plural: Uživatelská pole
321 label_custom_field_new: Nové uživatelské pole
322 label_enumerations: Seznamy
323 label_enumeration_new: Nová hodnota
324 label_information: Informace
325 label_information_plural: Informace
326 label_please_login: Prosím přihlašte se
327 label_register: Registrovat
328 label_password_lost: Zapomenuté heslo
329 label_home: Úvodní
330 label_my_page: Moje stránka
331 label_my_account: Můj účet
332 label_my_projects: Moje projekty
333 label_administration: Administrace
334 label_login: Přihlášení
335 label_logout: Odhlášení
336 label_help: Nápověda
337 label_reported_issues: Nahlášené úkoly
338 label_assigned_to_me_issues: Mé úkoly
339 label_last_login: Poslední přihlášení
340 label_registered_on: Registrován
341 label_activity: Aktivita
342 label_overall_activity: Celková aktivita
343 label_new: Nový
344 label_logged_as: Přihlášen jako
345 label_environment: Prostředí
346 label_authentication: Autentifikace
347 label_auth_source: Mód autentifikace
348 label_auth_source_new: Nový mód autentifikace
349 label_auth_source_plural: Módy autentifikace
350 label_subproject_plural: Podprojekty
351 label_min_max_length: Min - Max délka
352 label_list: Seznam
353 label_date: Datum
354 label_integer: Celé číslo
355 label_float: Desetiné číslo
356 label_boolean: Ano/Ne
357 label_string: Text
358 label_text: Dlouhý text
359 label_attribute: Atribut
360 label_attribute_plural: Atributy
361 label_download: "{{count}} Download"
362 label_download_plural: "{{count}} Downloads"
363 label_no_data: Žádné položky
364 label_change_status: Změnit stav
365 label_history: Historie
366 label_attachment: Soubor
367 label_attachment_new: Nový soubor
368 label_attachment_delete: Odstranit soubor
369 label_attachment_plural: Soubory
370 label_file_added: Soubor přidán
371 label_report: Přeheled
372 label_report_plural: Přehledy
373 label_news: Novinky
374 label_news_new: Přidat novinku
375 label_news_plural: Novinky
376 label_news_latest: Poslední novinky
377 label_news_view_all: Zobrazit všechny novinky
378 label_news_added: Novinka přidána
379 label_change_log: Protokol změn
380 label_settings: Nastavení
381 label_overview: Přehled
382 label_version: Verze
383 label_version_new: Nová verze
384 label_version_plural: Verze
385 label_confirmation: Potvrzení
386 label_export_to: 'Také k dispozici:'
387 label_read: Načítá se...
388 label_public_projects: Veřejné projekty
389 label_open_issues: otevřený
390 label_open_issues_plural: otevřené
391 label_closed_issues: uzavřený
392 label_closed_issues_plural: uzavřené
393 label_x_open_issues_abbr_on_total:
394 zero: 0 open / {{total}}
395 one: 1 open / {{total}}
396 other: "{{count}} open / {{total}}"
397 label_x_open_issues_abbr:
398 zero: 0 open
399 one: 1 open
400 other: "{{count}} open"
401 label_x_closed_issues_abbr:
402 zero: 0 closed
403 one: 1 closed
404 other: "{{count}} closed"
405 label_total: Celkem
406 label_permissions: Práva
407 label_current_status: Aktuální stav
408 label_new_statuses_allowed: Nové povolené stavy
409 label_all: vše
410 label_none: nic
411 label_nobody: nikdo
412 label_next: Další
413 label_previous: Předchozí
414 label_used_by: Použito
415 label_details: Detaily
416 label_add_note: Přidat poznámku
417 label_per_page: Na stránku
418 label_calendar: Kalendář
419 label_months_from: měsíců od
420 label_gantt: Ganttův graf
421 label_internal: Interní
422 label_last_changes: "posledních {{count}} změn"
423 label_change_view_all: Zobrazit všechny změny
424 label_personalize_page: Přizpůsobit tuto stránku
425 label_comment: Komentář
426 label_comment_plural: Komentáře
427 label_x_comments:
428 zero: no comments
429 one: 1 comment
430 other: "{{count}} comments"
431 label_comment_add: Přidat komentáře
432 label_comment_added: Komentář přidán
433 label_comment_delete: Odstranit komentář
434 label_query: Uživatelský dotaz
435 label_query_plural: Uživatelské dotazy
436 label_query_new: Nový dotaz
437 label_filter_add: Přidat filtr
438 label_filter_plural: Filtry
439 label_equals: je
440 label_not_equals: není
441 label_in_less_than: je měší než
442 label_in_more_than: je větší než
443 label_in: v
444 label_today: dnes
445 label_all_time: vše
446 label_yesterday: včera
447 label_this_week: tento týden
448 label_last_week: minulý týden
449 label_last_n_days: "posledních {{count}} dnů"
450 label_this_month: tento měsíc
451 label_last_month: minulý měsíc
452 label_this_year: tento rok
453 label_date_range: Časový rozsah
454 label_less_than_ago: před méně jak (dny)
455 label_more_than_ago: před více jak (dny)
456 label_ago: před (dny)
457 label_contains: obsahuje
458 label_not_contains: neobsahuje
459 label_day_plural: dny
460 label_repository: Repository
461 label_repository_plural: Repository
462 label_browse: Procházet
463 label_modification: "{{count}} změna"
464 label_modification_plural: "{{count}} změn"
465 label_revision: Revize
466 label_revision_plural: Revizí
467 label_associated_revisions: Související verze
468 label_added: přidáno
469 label_modified: změněno
470 label_deleted: odstraněno
471 label_latest_revision: Poslední revize
472 label_latest_revision_plural: Poslední revize
473 label_view_revisions: Zobrazit revize
474 label_max_size: Maximální velikost
475 label_sort_highest: Přesunout na začátek
476 label_sort_higher: Přesunout nahoru
477 label_sort_lower: Přesunout dolů
478 label_sort_lowest: Přesunout na konec
479 label_roadmap: Plán
480 label_roadmap_due_in: "Zbývá {{value}}"
481 label_roadmap_overdue: "{{value}} pozdě"
482 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
483 label_search: Hledat
484 label_result_plural: Výsledky
485 label_all_words: Všechna slova
486 label_wiki: Wiki
487 label_wiki_edit: Wiki úprava
488 label_wiki_edit_plural: Wiki úpravy
489 label_wiki_page: Wiki stránka
490 label_wiki_page_plural: Wiki stránky
491 label_index_by_title: Index dle názvu
492 label_index_by_date: Index dle data
493 label_current_version: Aktuální verze
494 label_preview: Náhled
495 label_feed_plural: Příspěvky
496 label_changes_details: Detail všech změn
497 label_issue_tracking: Sledování úkolů
498 label_spent_time: Strávený čas
499 label_f_hour: "{{value}} hodina"
500 label_f_hour_plural: "{{value}} hodin"
501 label_time_tracking: Sledování času
502 label_change_plural: Změny
503 label_statistics: Statistiky
504 label_commits_per_month: Commitů za měsíc
505 label_commits_per_author: Commitů za autora
506 label_view_diff: Zobrazit rozdíly
507 label_diff_inline: uvnitř
508 label_diff_side_by_side: vedle sebe
509 label_options: Nastavení
510 label_copy_workflow_from: Kopírovat workflow z
511 label_permissions_report: Přehled práv
512 label_watched_issues: Sledované úkoly
513 label_related_issues: Související úkoly
514 label_applied_status: Použitý stav
515 label_loading: Nahrávám...
516 label_relation_new: Nová souvislost
517 label_relation_delete: Odstranit souvislost
518 label_relates_to: související s
519 label_duplicates: duplicity
520 label_blocks: bloků
521 label_blocked_by: zablokován
522 label_precedes: předchází
523 label_follows: následuje
524 label_end_to_start: od konce do začátku
525 label_end_to_end: od konce do konce
526 label_start_to_start: od začátku do začátku
527 label_start_to_end: od začátku do konce
528 label_stay_logged_in: Zůstat přihlášený
529 label_disabled: zakázán
530 label_show_completed_versions: Ukázat dokončené verze
531 label_me:
532 label_board: Fórum
533 label_board_new: Nové fórum
534 label_board_plural: Fóra
535 label_topic_plural: Témata
536 label_message_plural: Zprávy
537 label_message_last: Poslední zpráva
538 label_message_new: Nová zpráva
539 label_message_posted: Zpráva přidána
540 label_reply_plural: Odpovědi
541 label_send_information: Zaslat informace o účtu uživateli
542 label_year: Rok
543 label_month: Měsíc
544 label_week: Týden
545 label_date_from: Od
546 label_date_to: Do
547 label_language_based: Podle výchozího jazyku
548 label_sort_by: "Seřadit podle {{value}}"
549 label_send_test_email: Poslat testovací email
550 label_feeds_access_key_created_on: "Přístupový klíč pro RSS byl vytvořen před {{value}}"
551 label_module_plural: Moduly
552 label_added_time_by: "'Přidáno uživatelem {{author}} před {{age}}'"
553 label_updated_time: "Aktualizováno před {{value}}'"
554 label_jump_to_a_project: Zvolit projekt...
555 label_file_plural: Soubory
556 label_changeset_plural: Changesety
557 label_default_columns: Výchozí sloupce
558 label_no_change_option: (beze změny)
559 label_bulk_edit_selected_issues: Bulk edit selected issues
560 label_theme: Téma
561 label_default: Výchozí
562 label_search_titles_only: Vyhledávat pouze v názvech
563 label_user_mail_option_all: "Pro všechny události všech mých projektů"
564 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
565 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
566 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
567 label_registration_activation_by_email: aktivace účtu emailem
568 label_registration_manual_activation: manuální aktivace účtu
569 label_registration_automatic_activation: automatická aktivace účtu
570 label_display_per_page: "{{value}} na stránku'"
571 label_age: Věk
572 label_change_properties: Změnit vlastnosti
573 label_general: Obecné
574 label_more: Více
575 label_scm: SCM
576 label_plugins: Doplňky
577 label_ldap_authentication: Autentifikace LDAP
578 label_downloads_abbr: D/L
579 label_optional_description: Volitelný popis
580 label_add_another_file: Přidat další soubor
581 label_preferences: Nastavení
582 label_chronological_order: V chronologickém pořadí
583 label_reverse_chronological_order: V obrácaném chronologickém pořadí
584
585 button_login: Přihlásit
586 button_submit: Potvrdit
587 button_save: Uložit
588 button_check_all: Zašrtnout vše
589 button_uncheck_all: Odšrtnout vše
590 button_delete: Odstranit
591 button_create: Vytvořit
592 button_test: Test
593 button_edit: Upravit
594 button_add: Přidat
595 button_change: Změnit
596 button_apply: Použít
597 button_clear: Smazat
598 button_lock: Zamknout
599 button_unlock: Odemknout
600 button_download: Stáhnout
601 button_list: Vypsat
602 button_view: Zobrazit
603 button_move: Přesunout
604 button_back: Zpět
605 button_cancel: Storno
606 button_activate: Aktivovat
607 button_sort: Seřadit
608 button_log_time: Přidat čas
609 button_rollback: Zpět k této verzi
610 button_watch: Sledovat
611 button_unwatch: Nesledovat
612 button_reply: Odpovědět
613 button_archive: Archivovat
614 button_unarchive: Odarchivovat
615 button_reset: Reset
616 button_rename: Přejmenovat
617 button_change_password: Změnit heslo
618 button_copy: Kopírovat
619 button_annotate: Komentovat
620 button_update: Aktualizovat
621 button_configure: Konfigurovat
622
623 status_active: aktivní
624 status_registered: registrovaný
625 status_locked: uzamčený
626
627 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
628 text_regexp_info: např. ^[A-Z0-9]+$
629 text_min_max_length_info: 0 znamená bez limitu
630 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
631 text_workflow_edit: Vyberte roli a frontu k editaci workflow
632 text_are_you_sure: Jste si jisti?
633 text_journal_changed: "změněno z {{old}} na {{new}}"
634 text_journal_set_to: "nastaveno na {{value}}"
635 text_journal_deleted: odstraněno
636 text_tip_task_begin_day: úkol začíná v tento den
637 text_tip_task_end_day: úkol končí v tento den
638 text_tip_task_begin_end_day: úkol začíná a končí v tento den
639 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.'
640 text_caracters_maximum: "{{count}} znaků maximálně."
641 text_caracters_minimum: "Musí být alespoň {{count}} znaků dlouhé."
642 text_length_between: "Délka mezi {{min}} a {{max}} znaky."
643 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
644 text_unallowed_characters: Nepovolené znaky
645 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
646 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
647 text_issue_added: "Úkol {{id}} byl vytvořen uživatelem {{author}}."
648 text_issue_updated: "Úkol {{id}} byl aktualizován uživatelem {{author}}."
649 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
650 text_issue_category_destroy_question: "Některé úkoly ({{count}}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?"
651 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
652 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
653 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))."
654 text_no_configuration_data: "Role, fronty, stavy úkolů ani workflow nebyly zatím nakonfigurovány.\nVelice doporučujeme nahrát výchozí konfiguraci.Po si můžete vše upravit"
655 text_load_default_configuration: Nahrát výchozí konfiguraci
656 text_status_changed_by_changeset: "Použito v changesetu {{value}}."
657 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
658 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
659 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
660 text_file_repository_writable: Povolen zápis do repository
661 text_rmagick_available: RMagick k dispozici (volitelné)
662 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
663 text_destroy_time_entries: Odstranit evidované hodiny.
664 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
665 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
666
667 default_role_manager: Manažer
668 default_role_developper: Vývojář
669 default_role_reporter: Reportér
670 default_tracker_bug: Chyba
671 default_tracker_feature: Požadavek
672 default_tracker_support: Podpora
673 default_issue_status_new: Nový
674 default_issue_status_assigned: Přiřazený
675 default_issue_status_resolved: Vyřešený
676 default_issue_status_feedback: Čeká se
677 default_issue_status_closed: Uzavřený
678 default_issue_status_rejected: Odmítnutý
679 default_doc_category_user: Uživatelská dokumentace
680 default_doc_category_tech: Technická dokumentace
681 default_priority_low: Nízká
682 default_priority_normal: Normální
683 default_priority_high: Vysoká
684 default_priority_urgent: Urgentní
685 default_priority_immediate: Okamžitá
686 default_activity_design: Design
687 default_activity_development: Vývoj
688
689 enumeration_issue_priorities: Priority úkolů
690 enumeration_doc_categories: Kategorie dokumentů
691 enumeration_activities: Aktivity (sledování času)
692 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
693 label_planning: Plánování
694 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
695 label_and_its_subprojects: "{{value}} and its subprojects"
696 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
697 mail_subject_reminder: "{{count}} issue(s) due in the next days"
698 text_user_wrote: "{{value}} wrote:'"
699 label_duplicated_by: duplicated by
700 setting_enabled_scm: Enabled SCM
701 text_enumeration_category_reassign_to: 'Reassign them to this value:'
702 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
703 label_incoming_emails: Incoming emails
704 label_generate_key: Generate a key
705 setting_mail_handler_api_enabled: Enable WS for incoming emails
706 setting_mail_handler_api_key: API key
707 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
708 field_parent_title: Parent page
709 label_issue_watchers: Watchers
710 setting_commit_logs_encoding: Commit messages encoding
711 button_quote: Quote
712 setting_sequential_project_identifiers: Generate sequential project identifiers
713 notice_unable_delete_version: Unable to delete version
714 label_renamed: renamed
715 label_copied: copied
716 setting_plain_text_mail: plain text only (no HTML)
717 permission_view_files: View files
718 permission_edit_issues: Edit issues
719 permission_edit_own_time_entries: Edit own time logs
720 permission_manage_public_queries: Manage public queries
721 permission_add_issues: Add issues
722 permission_log_time: Log spent time
723 permission_view_changesets: View changesets
724 permission_view_time_entries: View spent time
725 permission_manage_versions: Manage versions
726 permission_manage_wiki: Manage wiki
727 permission_manage_categories: Manage issue categories
728 permission_protect_wiki_pages: Protect wiki pages
729 permission_comment_news: Comment news
730 permission_delete_messages: Delete messages
731 permission_select_project_modules: Select project modules
732 permission_manage_documents: Manage documents
733 permission_edit_wiki_pages: Edit wiki pages
734 permission_add_issue_watchers: Add watchers
735 permission_view_gantt: View gantt chart
736 permission_move_issues: Move issues
737 permission_manage_issue_relations: Manage issue relations
738 permission_delete_wiki_pages: Delete wiki pages
739 permission_manage_boards: Manage boards
740 permission_delete_wiki_pages_attachments: Delete attachments
741 permission_view_wiki_edits: View wiki history
742 permission_add_messages: Post messages
743 permission_view_messages: View messages
744 permission_manage_files: Manage files
745 permission_edit_issue_notes: Edit notes
746 permission_manage_news: Manage news
747 permission_view_calendar: View calendrier
748 permission_manage_members: Manage members
749 permission_edit_messages: Edit messages
750 permission_delete_issues: Delete issues
751 permission_view_issue_watchers: View watchers list
752 permission_manage_repository: Manage repository
753 permission_commit_access: Commit access
754 permission_browse_repository: Browse repository
755 permission_view_documents: View documents
756 permission_edit_project: Edit project
757 permission_add_issue_notes: Add notes
758 permission_save_queries: Save queries
759 permission_view_wiki_pages: View wiki
760 permission_rename_wiki_pages: Rename wiki pages
761 permission_edit_time_entries: Edit time logs
762 permission_edit_own_issue_notes: Edit own notes
763 setting_gravatar_enabled: Use Gravatar user icons
764 label_example: Example
765 text_repository_usernames_mapping: "Select ou 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."
766 permission_edit_own_messages: Edit own messages
767 permission_delete_own_messages: Delete own messages
768 label_user_activity: "{{value}}'s activity"
769 label_updated_time_by: "Updated by {{author}} {{age}} ago"
770 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
771 setting_diff_max_lines_displayed: Max number of diff lines displayed
772 text_plugin_assets_writable: Plugin assets directory writable
773 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
774 button_create_and_continue: Create and continue
775 text_custom_field_possible_values_info: 'One line for each value'
776 label_display: Display
777 field_editable: Editable
778 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
This diff has been collapsed as it changes many lines, (1500 lines changed) Show them Hide them
@@ -1,711 +1,805
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Danish translation file for standard Ruby on Rails internationalization
2 # by Lars Hoeg (http://www.lenio.dk/)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dage
10 actionview_datehelper_time_in_words_hour_about: cirka en time
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timer
12 actionview_datehelper_time_in_words_hour_about_single: cirka en time
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: et halvt minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre end et minut
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mindre end et sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre end %d sekunder
20 actionview_instancetag_blank_option: Vælg venligst
4 da:
5 date:
6 formats:
7 default: "%d.%m.%Y"
8 short: "%e. %b %Y"
9 long: "%e. %B %Y"
21 10
22 activerecord_error_inclusion: er ikke i listen
23 activerecord_error_exclusion: er reserveret
24 activerecord_error_invalid: er ugyldig
25 activerecord_error_confirmation: passer ikke bekræftelsen
26 activerecord_error_accepted: skal accepteres
27 activerecord_error_empty: kan ikke være tom
28 activerecord_error_blank: kan ikke være blank
29 activerecord_error_too_long: er for lang
30 activerecord_error_too_short: er for kort
31 activerecord_error_wrong_length: har den forkerte længde
32 activerecord_error_taken: er allerede valgt
33 activerecord_error_not_a_number: er ikke et nummer
34 activerecord_error_not_a_date: er en ugyldig dato
35 activerecord_error_greater_than_start_date: skal være senere end startdatoen
36 activerecord_error_not_same_project: høre ikke til samme projekt
37 activerecord_error_circular_dependency: Denne relation vil skabe et afhængighedsforhold
11 day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
12 abbr_day_names: [, ma, ti, 'on', to, fr, ]
13 month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december]
14 abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
15 order: [ :day, :month, :year ]
38 16
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nej'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nej'
48 general_text_yes: 'ja'
49 general_lang_name: 'Danish (Dansk)'
50 general_csv_separator: ','
51 general_csv_encoding: ISO-8859-1
52 general_pdf_encoding: ISO-8859-1
53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
54 general_first_day_of_week: '1'
17 time:
18 formats:
19 default: "%e. %B %Y, %H:%M"
20 short: "%e. %b %Y, %H:%M"
21 long: "%A, %e. %B %Y, %H:%M"
22 am: ""
23 pm: ""
55 24
56 notice_account_updated: Kontoen er opdateret.
57 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
58 notice_account_password_updated: Kodeordet er opdateret.
59 notice_account_wrong_password: Forkert kodeord
60 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email.
61 notice_account_unknown_email: Ukendt bruger.
62 notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord.
63 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
64 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
65 notice_successful_create: Succesfuld oprettelse.
66 notice_successful_update: Succesfuld opdatering.
67 notice_successful_delete: Succesfuld sletning.
68 notice_successful_connection: Succesfuld forbindelse.
69 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
70 notice_locking_conflict: Data er opdateret af en anden bruger.
71 notice_not_authorized: Du har ikke adgang til denne side.
72 notice_email_sent: En email er sendt til %s
73 notice_email_error: En fejl opstod under afsendelse af email (%s)
74 notice_feeds_access_key_reseted: Din adgangsnøgle til RSS er nulstillet.
75 notice_failed_to_save_issues: "Det mislykkedes at gemme %d sage(r) %d valgt: %s."
76 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
77 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
78 notice_default_data_loaded: Standardopsætningen er indlæst.
25 support:
26 array:
27 sentence_connector: "og"
28 skip_last_comma: true
79 29
80 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %s"
81 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
82 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: %s"
30 datetime:
31 distance_in_words:
32 half_a_minute: "et halvt minut"
33 less_than_x_seconds:
34 one: "mindre end et sekund"
35 other: "mindre end {{count}} sekunder"
36 x_seconds:
37 one: "et sekund"
38 other: "{{count}} sekunder"
39 less_than_x_minutes:
40 one: "mindre end et minut"
41 other: "mindre end {{count}} minutter"
42 x_minutes:
43 one: "et minut"
44 other: "{{count}} minutter"
45 about_x_hours:
46 one: "cirka en time"
47 other: "cirka {{count}} timer"
48 x_days:
49 one: "en dag"
50 other: "{{count}} dage"
51 about_x_months:
52 one: "cirka en måned"
53 other: "cirka {{count}} måneder"
54 x_months:
55 one: "en måned"
56 other: "{{count}} måneder"
57 about_x_years:
58 one: "cirka et år"
59 other: "cirka {{count}} år"
60 over_x_years:
61 one: "mere end et år"
62 other: "mere end {{count}} år"
83 63
84 mail_subject_lost_password: Dit %s kodeord
85 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
86 mail_subject_register: %s kontoaktivering
87 mail_body_register: 'For at aktivere din konto, klik dette link:'
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind.
89 mail_body_account_information: Din kontoinformation
90 mail_subject_account_activation_request: %s kontoaktivering
91 mail_body_account_activation_request: 'En ny bruger (%s) er registreret. Godkend venligst kontoen:'
64 number:
65 format:
66 separator: ","
67 delimiter: "."
68 precision: 3
69 currency:
70 format:
71 format: "%u %n"
72 unit: "DKK"
73 separator: ","
74 delimiter: "."
75 precision: 2
76 precision:
77 format:
78 # separator:
79 delimiter: ""
80 # precision:
81 human:
82 format:
83 # separator:
84 delimiter: ""
85 precision: 1
86 storage_units: [Bytes, KB, MB, GB, TB]
87 percentage:
88 format:
89 # separator:
90 delimiter: ""
91 # precision:
92 92
93 gui_validation_error: 1 fejl
94 gui_validation_error_plural: %d fejl
93 activerecord:
94 errors:
95 messages:
96 inclusion: "er ikke i listen"
97 exclusion: "er reserveret"
98 invalid: "er ikke gyldig"
99 confirmation: "stemmer ikke overens"
100 accepted: "skal accepteres"
101 empty: "må ikke udelades"
102 blank: "skal udfyldes"
103 too_long: "er for lang (maksimum {{count}} tegn)"
104 too_short: "er for kort (minimum {{count}} tegn)"
105 wrong_length: "har forkert længde (skulle være {{count}} tegn)"
106 taken: "er allerede brugt"
107 not_a_number: "er ikke et tal"
108 greater_than: "skal være større end {{count}}"
109 greater_than_or_equal_to: "skal være større end eller lig med {{count}}"
110 equal_to: "skal være lig med {{count}}"
111 less_than: "skal være mindre end {{count}}"
112 less_than_or_equal_to: "skal være mindre end eller lig med {{count}}"
113 odd: "skal være ulige"
114 even: "skal være lige"
115 greater_than_start_date: "skal være senere end startdatoen"
116 not_same_project: "høre ikke til samme projekt"
117 circular_dependency: "Denne relation vil skabe et afhængighedsforhold"
95 118
96 field_name: Navn
97 field_description: Beskrivelse
98 field_summary: Sammenfatning
99 field_is_required: Skal udfyldes
100 field_firstname: Fornavn
101 field_lastname: Efternavn
102 field_mail: Email
103 field_filename: Fil
104 field_filesize: Størrelse
105 field_downloads: Downloads
106 field_author: Forfatter
107 field_created_on: Oprettet
108 field_updated_on: Opdateret
109 field_field_format: Format
110 field_is_for_all: For alle projekter
111 field_possible_values: Mulige værdier
112 field_regexp: Regulære udtryk
113 field_min_length: Mindste længde
114 field_max_length: Største længde
115 field_value: Værdi
116 field_category: Kategori
117 field_title: Titel
118 field_project: Projekt
119 field_issue: Sag
120 field_status: Status
121 field_notes: Noter
122 field_is_closed: Sagen er lukket
123 field_is_default: Standardværdi
124 field_tracker: Type
125 field_subject: Emne
126 field_due_date: Deadline
127 field_assigned_to: Tildelt til
128 field_priority: Prioritet
129 field_fixed_version: Target version
130 field_user: Bruger
131 field_role: Rolle
132 field_homepage: Hjemmeside
133 field_is_public: Offentlig
134 field_parent: Underprojekt af
135 field_is_in_chlog: Sager vist i ændringer
136 field_is_in_roadmap: Sager vist i roadmap
137 field_login: Login
138 field_mail_notification: Email-påmindelser
139 field_admin: Administrator
140 field_last_login_on: Sidste forbindelse
141 field_language: Sprog
142 field_effective_date: Dato
143 field_password: Kodeord
144 field_new_password: Nyt kodeord
145 field_password_confirmation: Bekræft
146 field_version: Version
147 field_type: Type
148 field_host: Vært
149 field_port: Port
150 field_account: Kode
151 field_base_dn: Base DN
152 field_attr_login: Login attribut
153 field_attr_firstname: Fornavn attribut
154 field_attr_lastname: Efternavn attribut
155 field_attr_mail: Email attribut
156 field_onthefly: løbende brugeroprettelse
157 field_start_date: Start
158 field_done_ratio: %% Færdig
159 field_auth_source: Sikkerhedsmetode
160 field_hide_mail: Skjul min email
161 field_comments: Kommentar
162 field_url: URL
163 field_start_page: Startside
164 field_subproject: Underprojekt
165 field_hours: Timer
166 field_activity: Aktivitet
167 field_spent_on: Dato
168 field_identifier: Identificering
169 field_is_filter: Brugt som et filter
170 field_issue_to_id: Beslægtede sag
171 field_delay: Udsættelse
172 field_assignable: Sager kan tildeles denne rolle
173 field_redirect_existing_links: Videresend eksisterende links
174 field_estimated_hours: Anslået tid
175 field_column_names: Kolonner
176 field_time_zone: Tidszone
177 field_searchable: Søgbar
178 field_default_value: Standardværdi
179
180 setting_app_title: Applikationstitel
181 setting_app_subtitle: Applikationsundertekst
182 setting_welcome_text: Velkomsttekst
183 setting_default_language: Standardsporg
184 setting_login_required: Sikkerhed påkrævet
185 setting_self_registration: Brugeroprettelse
186 setting_attachment_max_size: Vedhæftede filers max størrelse
187 setting_issues_export_limit: Sagseksporteringsbegrænsning
188 setting_mail_from: Afsender-email
189 setting_bcc_recipients: Skjult modtager (bcc)
190 setting_host_name: Værts navn
191 setting_text_formatting: Tekstformatering
192 setting_wiki_compression: Wiki historikkomprimering
193 setting_feeds_limit: Feed indholdsbegrænsning
194 setting_autofetch_changesets: Automatisk hent commits
195 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
196 setting_commit_ref_keywords: Referencenøgleord
197 setting_commit_fix_keywords: Afslutningsnøgleord
198 setting_autologin: Autologin
199 setting_date_format: Datoformat
200 setting_time_format: Tidsformat
201 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
202 setting_issue_list_default_columns: Standardkolonner på sagslisten
203 setting_repositories_encodings: Repository-tegnsæt
204 setting_emails_footer: Email-fodnote
205 setting_protocol: Protokol
206 setting_per_page_options: Objekter pr. side-indstillinger
207 setting_user_format: Brugervisningsformat
208
209 project_module_issue_tracking: Sagssøgning
210 project_module_time_tracking: Tidsstyring
211 project_module_news: Nyheder
212 project_module_documents: Dokumenter
213 project_module_files: Filer
214 project_module_wiki: Wiki
215 project_module_repository: Repository
216 project_module_boards: Opslagstavle
217
218 label_user: Bruger
219 label_user_plural: Brugere
220 label_user_new: Ny bruger
221 label_project: Projekt
222 label_project_new: Nyt projekt
223 label_project_plural: Projekter
224 label_project_all: Alle projekter
225 label_project_latest: Seneste projekter
226 label_issue: Sag
227 label_issue_new: Opret sag
228 label_issue_plural: Sager
229 label_issue_view_all: Vis alle sager
230 label_issues_by: Sager fra %s
231 label_issue_added: Sagen er oprettet
232 label_issue_updated: Sagen er opdateret
233 label_document: Dokument
234 label_document_new: Nyt dokument
235 label_document_plural: Dokumenter
236 label_document_added: Dokument tilføjet
237 label_role: Rolle
238 label_role_plural: Roller
239 label_role_new: Ny rolle
240 label_role_and_permissions: Roller og rettigheder
241 label_member: Medlem
242 label_member_new: Nyt medlem
243 label_member_plural: Medlemmer
244 label_tracker: Type
245 label_tracker_plural: Typer
246 label_tracker_new: Ny type
247 label_workflow: Arbejdsgang
248 label_issue_status: Sagsstatus
249 label_issue_status_plural: Sagsstatuser
250 label_issue_status_new: Ny status
251 label_issue_category: Sagskategori
252 label_issue_category_plural: Sagskategorier
253 label_issue_category_new: Ny kategori
254 label_custom_field: Brugerdefineret felt
255 label_custom_field_plural: Brugerdefineret felt
256 label_custom_field_new: Nyt brugerdefineret felt
257 label_enumerations: Værdier
258 label_enumeration_new: Ny værdi
259 label_information: Information
260 label_information_plural: Information
261 label_please_login: Login
262 label_register: Registrer
263 label_password_lost: Glemt kodeord
264 label_home: Forside
265 label_my_page: Min side
266 label_my_account: Min konto
267 label_my_projects: Mine projekter
268 label_administration: Administration
269 label_login: Log ind
270 label_logout: Log ud
271 label_help: Hjælp
272 label_reported_issues: Rapporterede sager
273 label_assigned_to_me_issues: Sager tildelt til mig
274 label_last_login: Sidste forbindelse
275 label_last_updates: Sidst opdateret
276 label_last_updates_plural: %d sidst opdateret
277 label_registered_on: Registeret den
278 label_activity: Aktivitet
279 label_new: Ny
280 label_logged_as: Registreret som
281 label_environment: Miljø
282 label_authentication: Sikkerhed
283 label_auth_source: Sikkerhedsmetode
284 label_auth_source_new: Ny sikkerhedsmetode
285 label_auth_source_plural: Sikkerhedsmetoder
286 label_subproject_plural: Underprojekter
287 label_min_max_length: Min - Max længde
288 label_list: Liste
289 label_date: Dato
290 label_integer: Heltal
291 label_float: Kommatal
292 label_boolean: Sand/falsk
293 label_string: Tekst
294 label_text: Lang tekst
295 label_attribute: Attribut
296 label_attribute_plural: Attributter
297 label_download: %d Download
298 label_download_plural: %d Downloads
299 label_no_data: Ingen data at vise
300 label_change_status: Ændringsstatus
301 label_history: Historik
302 label_attachment: Fil
303 label_attachment_new: Ny fil
304 label_attachment_delete: Slet fil
305 label_attachment_plural: Filer
306 label_file_added: Fil tilføjet
307 label_report: Rapport
308 label_report_plural: Rapporter
309 label_news: Nyheder
310 label_news_new: Tilføj nyheder
311 label_news_plural: Nyheder
312 label_news_latest: Seneste nyheder
313 label_news_view_all: Vis alle nyheder
314 label_news_added: Nyhed tilføjet
315 label_change_log: Ændringer
316 label_settings: Indstillinger
317 label_overview: Oversigt
318 label_version: Version
319 label_version_new: Ny version
320 label_version_plural: Versioner
321 label_confirmation: Bekræftigelser
322 label_export_to: Eksporter til
323 label_read: Læs...
324 label_public_projects: Offentlige projekter
325 label_open_issues: åben
326 label_open_issues_plural: åbne
327 label_closed_issues: lukket
328 label_closed_issues_plural: lukkede
329 label_total: Total
330 label_permissions: Rettigheder
331 label_current_status: Nuværende status
332 label_new_statuses_allowed: Ny status tilladt
333 label_all: alle
334 label_none: intet
335 label_nobody: ingen
336 label_next: Næste
337 label_previous: Forrig
338 label_used_by: Brugt af
339 label_details: Detaljer
340 label_add_note: Tilføj en note
341 label_per_page: Pr. side
342 label_calendar: Kalender
343 label_months_from: måneder frem
344 label_gantt: Gantt
345 label_internal: Intern
346 label_last_changes: sidste %d ændringer
347 label_change_view_all: Vis alle ændringer
348 label_personalize_page: Tilret denne side
349 label_comment: Kommentar
350 label_comment_plural: Kommentarer
351 label_comment_add: Tilføj en kommentar
352 label_comment_added: Kommentaren er tilføjet
353 label_comment_delete: Slet kommentar
354 label_query: Brugerdefineret forespørgsel
355 label_query_plural: Brugerdefinerede forespørgsler
356 label_query_new: Ny forespørgsel
357 label_filter_add: Tilføj filter
358 label_filter_plural: Filtre
359 label_equals: er
360 label_not_equals: er ikke
361 label_in_less_than: er mindre end
362 label_in_more_than: er større end
363 label_in: indeholdt i
364 label_today: i dag
365 label_all_time: altid
366 label_yesterday: i går
367 label_this_week: denne uge
368 label_last_week: sidste uge
369 label_last_n_days: sidste %d dage
370 label_this_month: denne måned
371 label_last_month: sidste måned
372 label_this_year: dette år
373 label_date_range: Dato interval
374 label_less_than_ago: mindre end dage siden
375 label_more_than_ago: mere end dage siden
376 label_ago: days siden
377 label_contains: indeholder
378 label_not_contains: ikke indeholder
379 label_day_plural: dage
380 label_repository: Repository
381 label_repository_plural: Repositories
382 label_browse: Gennemse
383 label_modification: %d ændring
384 label_modification_plural: %d ændringer
385 label_revision: Revision
386 label_revision_plural: Revisioner
387 label_associated_revisions: Tilnyttede revisioner
388 label_added: tilføjet
389 label_modified: ændret
390 label_deleted: slettet
391 label_latest_revision: Seneste revision
392 label_latest_revision_plural: Seneste revisioner
393 label_view_revisions: Se revisioner
394 label_max_size: Maximal størrelse
395 label_on: 'til'
396 label_sort_highest: Flyt til toppen
397 label_sort_higher: Flyt op
398 label_sort_lower: Flyt ned
399 label_sort_lowest: Flyt til bunden
400 label_roadmap: Roadmap
401 label_roadmap_due_in: Deadline
402 label_roadmap_overdue: %s forsinket
403 label_roadmap_no_issues: Ingen sager til denne version
404 label_search: Søg
405 label_result_plural: Resultater
406 label_all_words: Alle ord
407 label_wiki: Wiki
408 label_wiki_edit: Wiki ændring
409 label_wiki_edit_plural: Wiki ændringer
410 label_wiki_page: Wiki side
411 label_wiki_page_plural: Wiki sider
412 label_index_by_title: Indhold efter titel
413 label_index_by_date: Indhold efter dato
414 label_current_version: Nuværende version
415 label_preview: Forhåndsvisning
416 label_feed_plural: Feeds
417 label_changes_details: Detaljer for alle ænringer
418 label_issue_tracking: Sags søgning
419 label_spent_time: Brugt tid
420 label_f_hour: %.2f time
421 label_f_hour_plural: %.2f timer
422 label_time_tracking: Tidsstyring
423 label_change_plural: Ændringer
424 label_statistics: Statistik
425 label_commits_per_month: Commits pr. måned
426 label_commits_per_author: Commits pr. bruger
427 label_view_diff: Vis forskellighed
428 label_diff_inline: inline
429 label_diff_side_by_side: side om side
430 label_options: Optioner
431 label_copy_workflow_from: Kopier arbejdsgang fra
432 label_permissions_report: Godkendelsesrapport
433 label_watched_issues: Overvågede sager
434 label_related_issues: Relaterede sager
435 label_applied_status: Anvendte statuser
436 label_loading: Indlæser...
437 label_relation_new: Ny relation
438 label_relation_delete: Slet relation
439 label_relates_to: relaterer til
440 label_duplicates: kopierer
441 label_blocks: blokerer
442 label_blocked_by: blokeret af
443 label_precedes: kommer før
444 label_follows: følger
445 label_end_to_start: slut til start
446 label_end_to_end: slut til slut
447 label_start_to_start: start til start
448 label_start_to_end: start til slut
449 label_stay_logged_in: Forbliv indlogget
450 label_disabled: deaktiveret
451 label_show_completed_versions: Vis færdige versioner
452 label_me: mig
453 label_board: Forum
454 label_board_new: Nyt forum
455 label_board_plural: Fora
456 label_topic_plural: Emner
457 label_message_plural: Beskeder
458 label_message_last: Sidste besked
459 label_message_new: Ny besked
460 label_message_posted: Besked tilføjet
461 label_reply_plural: Besvarer
462 label_send_information: Send konto information til bruger
463 label_year: År
464 label_month: Måned
465 label_week: Uge
466 label_date_from: Fra
467 label_date_to: Til
468 label_language_based: Baseret på brugerens sprog
469 label_sort_by: Sorter efter %s
470 label_send_test_email: Send en test email
471 label_feeds_access_key_created_on: RSS adgangsnøgle danet for %s siden
472 label_module_plural: Moduler
473 label_added_time_by: Tilføjet af %s for %s siden
474 label_updated_time: Opdateret for %s siden
475 label_jump_to_a_project: Skift til projekt...
476 label_file_plural: Filer
477 label_changeset_plural: Ændringer
478 label_default_columns: Standard kolonner
479 label_no_change_option: (Ingen ændringer)
480 label_bulk_edit_selected_issues: Masseret de valgte sager
481 label_theme: Tema
482 label_default: standard
483 label_search_titles_only: Søg kun i titler
484 label_user_mail_option_all: "For alle hændelser mine projekter"
485 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
486 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
487 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
488 label_registration_activation_by_email: kontoaktivering på email
489 label_registration_manual_activation: manuel kontoaktivering
490 label_registration_automatic_activation: automatisk kontoaktivering
491 label_display_per_page: 'Per side: %s'
492 label_age: Alder
493 label_change_properties: Ændre indstillinger
494 label_general: Generalt
495 label_more: Mere
496 label_scm: SCM
497 label_plugins: Plugins
498 label_ldap_authentication: LDAP-godkendelse
499 label_downloads_abbr: D/L
500
501 button_login: Login
502 button_submit: Send
503 button_save: Gem
504 button_check_all: Vælg alt
505 button_uncheck_all: Fravælg alt
506 button_delete: Slet
507 button_create: Opret
508 button_test: Test
509 button_edit: Ret
510 button_add: Tilføj
511 button_change: Ændre
512 button_apply: Anvend
513 button_clear: Nulstil
514 button_lock: Lås
515 button_unlock: Lås op
516 button_download: Download
517 button_list: List
518 button_view: Vis
519 button_move: Flyt
520 button_back: Tilbage
521 button_cancel: Annuller
522 button_activate: Aktiver
523 button_sort: Sorter
524 button_log_time: Log tid
525 button_rollback: Tilbagefør til denne version
526 button_watch: Overvåg
527 button_unwatch: Stop overvågning
528 button_reply: Besvar
529 button_archive: Arkiver
530 button_unarchive: Fjern fra arkiv
531 button_reset: Nulstil
532 button_rename: Omdøb
533 button_change_password: Skift kodeord
534 button_copy: Kopier
535 button_annotate: Annotere
536 button_update: Opdater
537 button_configure: Konfigurer
538
539 status_active: aktiv
540 status_registered: registreret
541 status_locked: låst
542
543 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
544 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
545 text_min_max_length_info: 0 betyder ingen begrænsninger
546 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
547 text_workflow_edit: Vælg en rolle samt en type for at redigere arbejdsgangen
548 text_are_you_sure: Er du sikker?
549 text_journal_changed: ændret fra %s til %s
550 text_journal_set_to: sat til %s
551 text_journal_deleted: slettet
552 text_tip_task_begin_day: opgaven begynder denne dag
553 text_tip_task_end_day: opaven slutter denne dag
554 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
555 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
556 text_caracters_maximum: max %d karakterer.
557 text_caracters_minimum: Skal være mindst %d karakterer lang.
558 text_length_between: Længde skal være mellem %d og %d karakterer.
559 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
560 text_unallowed_characters: Ikke tilladte karakterer
561 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
562 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
563 text_issue_added: Sag %s er rapporteret af %s.
564 text_issue_updated: Sag %s er blevet opdateret af %s.
565 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
566 text_issue_category_destroy_question: Nogle sager (%d) er tildelt denne kategori. Hvad ønsker du at gøre?
567 text_issue_category_destroy_assignments: Slet tildelinger af kategori
568 text_issue_category_reassign_to: Tildel sager til denne kategori
569 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 ha indberettet eller ejer)."
570 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."
571 text_load_default_configuration: Indlæs standardopsætningen
572 text_status_changed_by_changeset: Anvendt i ændring %s.
573 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
574 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
575 text_default_administrator_account_changed: Standard administratorkonto ændret
576 text_file_repository_writable: Filarkiv er skrivbar
577 text_rmagick_available: RMagick tilgængelig (valgfri)
578
579 default_role_manager: Leder
580 default_role_developper: Udvikler
581 default_role_reporter: Rapportør
582 default_tracker_bug: Bug
583 default_tracker_feature: Feature
584 default_tracker_support: Support
585 default_issue_status_new: Ny
586 default_issue_status_assigned: Tildelt
587 default_issue_status_resolved: Løst
588 default_issue_status_feedback: Feedback
589 default_issue_status_closed: Lukket
590 default_issue_status_rejected: Afvist
591 default_doc_category_user: Brugerdokumentation
592 default_doc_category_tech: Teknisk dokumentation
593 default_priority_low: Lav
594 default_priority_normal: Normal
595 default_priority_high: Høj
596 default_priority_urgent: Akut
597 default_priority_immediate: Omgående
598 default_activity_design: Design
599 default_activity_development: Udvikling
600
601 enumeration_issue_priorities: Sagsprioriteter
602 enumeration_doc_categories: Dokumentkategorier
603 enumeration_activities: Aktiviteter (tidsstyring)
604
605 label_add_another_file: Tilføj endnu en fil
606 label_chronological_order: I kronologisk rækkefølge
607 setting_activity_days_default: Antal dage der vises under projektaktivitet
608 text_destroy_time_entries_question: %.02f timer er reporteret på denne sag, som du er ved at slette. Hvad vil du gøre?
609 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
610 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
611 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
612 label_optional_description: Optionel beskrivelse
613 text_destroy_time_entries: Slet raportede timer
614 field_comments_sorting: Vis kommentar
615 text_reassign_time_entries: 'Tildel raportede timer til denne sag igen'
616 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
617 label_preferences: Preferences
618 label_overall_activity: Overordnet aktivitet
619 setting_default_projects_public: Nye projekter er offentlige som standard
620 error_scm_annotate: "The entry does not exist or can not be annotated."
621 label_planning: Planlægning
622 text_subprojects_destroy_warning: 'Dets underprojekter(er): %s vil også blive slettet.'
623 permission_edit_issues: Edit issues
624 setting_diff_max_lines_displayed: Max number of diff lines displayed
625 permission_edit_own_issue_notes: Edit own notes
626 setting_enabled_scm: Enabled SCM
627 button_quote: Quote
628 permission_view_files: View files
629 permission_add_issues: Add issues
630 permission_edit_own_messages: Edit own messages
631 permission_delete_own_messages: Delete own messages
632 permission_manage_public_queries: Manage public queries
633 permission_log_time: Log spent time
634 label_renamed: renamed
635 label_incoming_emails: Incoming emails
636 permission_view_changesets: View changesets
637 permission_manage_versions: Manage versions
638 permission_view_time_entries: View spent time
639 label_generate_key: Generate a key
640 permission_manage_categories: Manage issue categories
641 permission_manage_wiki: Manage wiki
642 setting_sequential_project_identifiers: Generate sequential project identifiers
643 setting_plain_text_mail: Plain text mail (no HTML)
644 field_parent_title: Parent page
645 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
646 permission_protect_wiki_pages: Protect wiki pages
647 permission_manage_documents: Manage documents
648 permission_add_issue_watchers: Add watchers
649 warning_attachments_not_saved: "%d file(s) could not be saved."
650 permission_comment_news: Comment news
651 text_enumeration_category_reassign_to: 'Reassign them to this value:'
652 permission_select_project_modules: Select project modules
653 permission_view_gantt: View gantt chart
654 permission_delete_messages: Delete messages
655 permission_move_issues: Move issues
656 permission_edit_wiki_pages: Edit wiki pages
657 label_user_activity: "%s's activity"
658 permission_manage_issue_relations: Manage issue relations
659 label_issue_watchers: Watchers
660 permission_delete_wiki_pages: Delete wiki pages
661 notice_unable_delete_version: Unable to delete version.
662 permission_view_wiki_edits: View wiki history
663 field_editable: Editable
664 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
665 label_duplicated_by: duplicated by
666 permission_manage_boards: Manage boards
667 permission_delete_wiki_pages_attachments: Delete attachments
668 permission_view_messages: View messages
669 text_enumeration_destroy_question: '%d objects are assigned to this value.'
670 permission_manage_files: Manage files
671 permission_add_messages: Post messages
672 permission_edit_issue_notes: Edit notes
673 permission_manage_news: Manage news
674 text_plugin_assets_writable: Plugin assets directory writable
675 label_display: Display
676 label_and_its_subprojects: %s and its subprojects
677 permission_view_calendar: View calender
678 button_create_and_continue: Create and continue
679 setting_gravatar_enabled: Use Gravatar user icons
680 label_updated_time_by: Updated by %s %s ago
681 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
682 text_user_wrote: '%s wrote:'
683 setting_mail_handler_api_enabled: Enable WS for incoming emails
684 permission_delete_issues: Delete issues
685 permission_view_documents: View documents
686 permission_browse_repository: Browse repository
687 permission_manage_repository: Manage repository
688 permission_manage_members: Manage members
689 mail_subject_reminder: "%d issue(s) due in the next days"
690 permission_add_issue_notes: Add notes
691 permission_edit_messages: Edit messages
692 permission_view_issue_watchers: View watchers list
693 permission_commit_access: Commit access
694 setting_mail_handler_api_key: API key
695 label_example: Example
696 permission_rename_wiki_pages: Rename wiki pages
697 text_custom_field_possible_values_info: 'One line for each value'
698 permission_view_wiki_pages: View wiki
699 permission_edit_project: Edit project
700 permission_save_queries: Save queries
701 label_copied: copied
702 setting_commit_logs_encoding: Commit messages encoding
703 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."
704 permission_edit_time_entries: Edit time logs
705 general_csv_decimal_separator: '.'
706 permission_edit_own_time_entries: Edit own time logs
707 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
708 field_identity_url: OpenID URL
709 setting_openid: Allow OpenID login and registration
710 label_login_with_open_id_option: or login with OpenID
711 field_watcher: Watcher
119 template:
120 header:
121 one: "En fejl forhindrede {{model}} i at blive gemt"
122 other: "{{count}} fejl forhindrede denne {{model}} i at blive gemt"
123 body: "Der var problemer med følgende felter:"
124
125 actionview_instancetag_blank_option: Vælg venligst
126
127 general_text_No: 'Nej'
128 general_text_Yes: 'Ja'
129 general_text_no: 'nej'
130 general_text_yes: 'ja'
131 general_lang_name: 'Danish (Dansk)'
132 general_csv_separator: ','
133 general_csv_encoding: ISO-8859-1
134 general_pdf_encoding: ISO-8859-1
135 general_first_day_of_week: '1'
136
137 notice_account_updated: Kontoen er opdateret.
138 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
139 notice_account_password_updated: Kodeordet er opdateret.
140 notice_account_wrong_password: Forkert kodeord
141 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email.
142 notice_account_unknown_email: Ukendt bruger.
143 notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord.
144 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
145 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
146 notice_successful_create: Succesfuld oprettelse.
147 notice_successful_update: Succesfuld opdatering.
148 notice_successful_delete: Succesfuld sletning.
149 notice_successful_connection: Succesfuld forbindelse.
150 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
151 notice_locking_conflict: Data er opdateret af en anden bruger.
152 notice_not_authorized: Du har ikke adgang til denne side.
153 notice_email_sent: "En email er sendt til {{value}}"
154 notice_email_error: "En fejl opstod under afsendelse af email ({{value}})"
155 notice_feeds_access_key_reseted: Din adgangsnøgle til RSS er nulstillet.
156 notice_failed_to_save_issues: "Det mislykkedes at gemme {{count}} sage(r) {{total}} valgt: {{ids}}."
157 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
158 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
159 notice_default_data_loaded: Standardopsætningen er indlæst.
160
161 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: {{value}}"
162 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
163 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: {{value}}"
164
165 mail_subject_lost_password: "Dit {{value}} kodeord"
166 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
167 mail_subject_register: "{{value}} kontoaktivering"
168 mail_body_register: 'For at aktivere din konto, klik dette link:'
169 mail_body_account_information_external: "Du kan bruge din {{value}} konto til at logge ind."
170 mail_body_account_information: Din kontoinformation
171 mail_subject_account_activation_request: "{{value}} kontoaktivering"
172 mail_body_account_activation_request: "En ny bruger ({{value}}) er registreret. Godkend venligst kontoen:'"
173
174 gui_validation_error: 1 fejl
175 gui_validation_error_plural: "{{count}} fejl"
176
177 field_name: Navn
178 field_description: Beskrivelse
179 field_summary: Sammenfatning
180 field_is_required: Skal udfyldes
181 field_firstname: Fornavn
182 field_lastname: Efternavn
183 field_mail: Email
184 field_filename: Fil
185 field_filesize: Størrelse
186 field_downloads: Downloads
187 field_author: Forfatter
188 field_created_on: Oprettet
189 field_updated_on: Opdateret
190 field_field_format: Format
191 field_is_for_all: For alle projekter
192 field_possible_values: Mulige værdier
193 field_regexp: Regulære udtryk
194 field_min_length: Mindste længde
195 field_max_length: Største længde
196 field_value: Værdi
197 field_category: Kategori
198 field_title: Titel
199 field_project: Projekt
200 field_issue: Sag
201 field_status: Status
202 field_notes: Noter
203 field_is_closed: Sagen er lukket
204 field_is_default: Standardværdi
205 field_tracker: Type
206 field_subject: Emne
207 field_due_date: Deadline
208 field_assigned_to: Tildelt til
209 field_priority: Prioritet
210 field_fixed_version: Target version
211 field_user: Bruger
212 field_role: Rolle
213 field_homepage: Hjemmeside
214 field_is_public: Offentlig
215 field_parent: Underprojekt af
216 field_is_in_chlog: Sager vist i ændringer
217 field_is_in_roadmap: Sager vist i roadmap
218 field_login: Login
219 field_mail_notification: Email-påmindelser
220 field_admin: Administrator
221 field_last_login_on: Sidste forbindelse
222 field_language: Sprog
223 field_effective_date: Dato
224 field_password: Kodeord
225 field_new_password: Nyt kodeord
226 field_password_confirmation: Bekræft
227 field_version: Version
228 field_type: Type
229 field_host: Vært
230 field_port: Port
231 field_account: Kode
232 field_base_dn: Base DN
233 field_attr_login: Login attribut
234 field_attr_firstname: Fornavn attribut
235 field_attr_lastname: Efternavn attribut
236 field_attr_mail: Email attribut
237 field_onthefly: løbende brugeroprettelse
238 field_start_date: Start
239 field_done_ratio: %% Færdig
240 field_auth_source: Sikkerhedsmetode
241 field_hide_mail: Skjul min email
242 field_comments: Kommentar
243 field_url: URL
244 field_start_page: Startside
245 field_subproject: Underprojekt
246 field_hours: Timer
247 field_activity: Aktivitet
248 field_spent_on: Dato
249 field_identifier: Identificering
250 field_is_filter: Brugt som et filter
251 field_issue_to_id: Beslægtede sag
252 field_delay: Udsættelse
253 field_assignable: Sager kan tildeles denne rolle
254 field_redirect_existing_links: Videresend eksisterende links
255 field_estimated_hours: Anslået tid
256 field_column_names: Kolonner
257 field_time_zone: Tidszone
258 field_searchable: Søgbar
259 field_default_value: Standardværdi
260
261 setting_app_title: Applikationstitel
262 setting_app_subtitle: Applikationsundertekst
263 setting_welcome_text: Velkomsttekst
264 setting_default_language: Standardsporg
265 setting_login_required: Sikkerhed påkrævet
266 setting_self_registration: Brugeroprettelse
267 setting_attachment_max_size: Vedhæftede filers max størrelse
268 setting_issues_export_limit: Sagseksporteringsbegrænsning
269 setting_mail_from: Afsender-email
270 setting_bcc_recipients: Skjult modtager (bcc)
271 setting_host_name: Værts navn
272 setting_text_formatting: Tekstformatering
273 setting_wiki_compression: Wiki historikkomprimering
274 setting_feeds_limit: Feed indholdsbegrænsning
275 setting_autofetch_changesets: Automatisk hent commits
276 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
277 setting_commit_ref_keywords: Referencenøgleord
278 setting_commit_fix_keywords: Afslutningsnøgleord
279 setting_autologin: Autologin
280 setting_date_format: Datoformat
281 setting_time_format: Tidsformat
282 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
283 setting_issue_list_default_columns: Standardkolonner på sagslisten
284 setting_repositories_encodings: Repository-tegnsæt
285 setting_emails_footer: Email-fodnote
286 setting_protocol: Protokol
287 setting_per_page_options: Objekter pr. side-indstillinger
288 setting_user_format: Brugervisningsformat
289
290 project_module_issue_tracking: Sagssøgning
291 project_module_time_tracking: Tidsstyring
292 project_module_news: Nyheder
293 project_module_documents: Dokumenter
294 project_module_files: Filer
295 project_module_wiki: Wiki
296 project_module_repository: Repository
297 project_module_boards: Opslagstavle
298
299 label_user: Bruger
300 label_user_plural: Brugere
301 label_user_new: Ny bruger
302 label_project: Projekt
303 label_project_new: Nyt projekt
304 label_project_plural: Projekter
305 label_x_projects:
306 zero: no projects
307 one: 1 project
308 other: "{{count}} projects"
309 label_project_all: Alle projekter
310 label_project_latest: Seneste projekter
311 label_issue: Sag
312 label_issue_new: Opret sag
313 label_issue_plural: Sager
314 label_issue_view_all: Vis alle sager
315 label_issues_by: "Sager fra {{value}}"
316 label_issue_added: Sagen er oprettet
317 label_issue_updated: Sagen er opdateret
318 label_document: Dokument
319 label_document_new: Nyt dokument
320 label_document_plural: Dokumenter
321 label_document_added: Dokument tilføjet
322 label_role: Rolle
323 label_role_plural: Roller
324 label_role_new: Ny rolle
325 label_role_and_permissions: Roller og rettigheder
326 label_member: Medlem
327 label_member_new: Nyt medlem
328 label_member_plural: Medlemmer
329 label_tracker: Type
330 label_tracker_plural: Typer
331 label_tracker_new: Ny type
332 label_workflow: Arbejdsgang
333 label_issue_status: Sagsstatus
334 label_issue_status_plural: Sagsstatuser
335 label_issue_status_new: Ny status
336 label_issue_category: Sagskategori
337 label_issue_category_plural: Sagskategorier
338 label_issue_category_new: Ny kategori
339 label_custom_field: Brugerdefineret felt
340 label_custom_field_plural: Brugerdefineret felt
341 label_custom_field_new: Nyt brugerdefineret felt
342 label_enumerations: Værdier
343 label_enumeration_new: Ny værdi
344 label_information: Information
345 label_information_plural: Information
346 label_please_login: Login
347 label_register: Registrer
348 label_password_lost: Glemt kodeord
349 label_home: Forside
350 label_my_page: Min side
351 label_my_account: Min konto
352 label_my_projects: Mine projekter
353 label_administration: Administration
354 label_login: Log ind
355 label_logout: Log ud
356 label_help: Hjælp
357 label_reported_issues: Rapporterede sager
358 label_assigned_to_me_issues: Sager tildelt til mig
359 label_last_login: Sidste forbindelse
360 label_registered_on: Registeret den
361 label_activity: Aktivitet
362 label_new: Ny
363 label_logged_as: Registreret som
364 label_environment: Miljø
365 label_authentication: Sikkerhed
366 label_auth_source: Sikkerhedsmetode
367 label_auth_source_new: Ny sikkerhedsmetode
368 label_auth_source_plural: Sikkerhedsmetoder
369 label_subproject_plural: Underprojekter
370 label_min_max_length: Min - Max længde
371 label_list: Liste
372 label_date: Dato
373 label_integer: Heltal
374 label_float: Kommatal
375 label_boolean: Sand/falsk
376 label_string: Tekst
377 label_text: Lang tekst
378 label_attribute: Attribut
379 label_attribute_plural: Attributter
380 label_download: "{{count}} Download"
381 label_download_plural: "{{count}} Downloads"
382 label_no_data: Ingen data at vise
383 label_change_status: Ændringsstatus
384 label_history: Historik
385 label_attachment: Fil
386 label_attachment_new: Ny fil
387 label_attachment_delete: Slet fil
388 label_attachment_plural: Filer
389 label_file_added: Fil tilføjet
390 label_report: Rapport
391 label_report_plural: Rapporter
392 label_news: Nyheder
393 label_news_new: Tilføj nyheder
394 label_news_plural: Nyheder
395 label_news_latest: Seneste nyheder
396 label_news_view_all: Vis alle nyheder
397 label_news_added: Nyhed tilføjet
398 label_change_log: Ændringer
399 label_settings: Indstillinger
400 label_overview: Oversigt
401 label_version: Version
402 label_version_new: Ny version
403 label_version_plural: Versioner
404 label_confirmation: Bekræftigelser
405 label_export_to: Eksporter til
406 label_read: Læs...
407 label_public_projects: Offentlige projekter
408 label_open_issues: åben
409 label_open_issues_plural: åbne
410 label_closed_issues: lukket
411 label_closed_issues_plural: lukkede
412 label_x_open_issues_abbr_on_total:
413 zero: 0 open / {{total}}
414 one: 1 open / {{total}}
415 other: "{{count}} open / {{total}}"
416 label_x_open_issues_abbr:
417 zero: 0 open
418 one: 1 open
419 other: "{{count}} open"
420 label_x_closed_issues_abbr:
421 zero: 0 closed
422 one: 1 closed
423 other: "{{count}} closed"
424 label_total: Total
425 label_permissions: Rettigheder
426 label_current_status: Nuværende status
427 label_new_statuses_allowed: Ny status tilladt
428 label_all: alle
429 label_none: intet
430 label_nobody: ingen
431 label_next: Næste
432 label_previous: Forrig
433 label_used_by: Brugt af
434 label_details: Detaljer
435 label_add_note: Tilføj en note
436 label_per_page: Pr. side
437 label_calendar: Kalender
438 label_months_from: måneder frem
439 label_gantt: Gantt
440 label_internal: Intern
441 label_last_changes: "sidste {{count}} ændringer"
442 label_change_view_all: Vis alle ændringer
443 label_personalize_page: Tilret denne side
444 label_comment: Kommentar
445 label_comment_plural: Kommentarer
446 label_x_comments:
447 zero: no comments
448 one: 1 comment
449 other: "{{count}} comments"
450 label_comment_add: Tilføj en kommentar
451 label_comment_added: Kommentaren er tilføjet
452 label_comment_delete: Slet kommentar
453 label_query: Brugerdefineret forespørgsel
454 label_query_plural: Brugerdefinerede forespørgsler
455 label_query_new: Ny forespørgsel
456 label_filter_add: Tilføj filter
457 label_filter_plural: Filtre
458 label_equals: er
459 label_not_equals: er ikke
460 label_in_less_than: er mindre end
461 label_in_more_than: er større end
462 label_in: indeholdt i
463 label_today: i dag
464 label_all_time: altid
465 label_yesterday: i går
466 label_this_week: denne uge
467 label_last_week: sidste uge
468 label_last_n_days: "sidste {{count}} dage"
469 label_this_month: denne måned
470 label_last_month: sidste måned
471 label_this_year: dette år
472 label_date_range: Dato interval
473 label_less_than_ago: mindre end dage siden
474 label_more_than_ago: mere end dage siden
475 label_ago: days siden
476 label_contains: indeholder
477 label_not_contains: ikke indeholder
478 label_day_plural: dage
479 label_repository: Repository
480 label_repository_plural: Repositories
481 label_browse: Gennemse
482 label_modification: "{{count}} ændring"
483 label_modification_plural: "{{count}} ændringer"
484 label_revision: Revision
485 label_revision_plural: Revisioner
486 label_associated_revisions: Tilnyttede revisioner
487 label_added: tilføjet
488 label_modified: ændret
489 label_deleted: slettet
490 label_latest_revision: Seneste revision
491 label_latest_revision_plural: Seneste revisioner
492 label_view_revisions: Se revisioner
493 label_max_size: Maximal størrelse
494 label_sort_highest: Flyt til toppen
495 label_sort_higher: Flyt op
496 label_sort_lower: Flyt ned
497 label_sort_lowest: Flyt til bunden
498 label_roadmap: Roadmap
499 label_roadmap_due_in: Deadline
500 label_roadmap_overdue: "{{value}} forsinket"
501 label_roadmap_no_issues: Ingen sager til denne version
502 label_search: Søg
503 label_result_plural: Resultater
504 label_all_words: Alle ord
505 label_wiki: Wiki
506 label_wiki_edit: Wiki ændring
507 label_wiki_edit_plural: Wiki ændringer
508 label_wiki_page: Wiki side
509 label_wiki_page_plural: Wiki sider
510 label_index_by_title: Indhold efter titel
511 label_index_by_date: Indhold efter dato
512 label_current_version: Nuværende version
513 label_preview: Forhåndsvisning
514 label_feed_plural: Feeds
515 label_changes_details: Detaljer for alle ænringer
516 label_issue_tracking: Sags søgning
517 label_spent_time: Brugt tid
518 label_f_hour: "{{value}} time"
519 label_f_hour_plural: "{{value}} timer"
520 label_time_tracking: Tidsstyring
521 label_change_plural: Ændringer
522 label_statistics: Statistik
523 label_commits_per_month: Commits pr. måned
524 label_commits_per_author: Commits pr. bruger
525 label_view_diff: Vis forskellighed
526 label_diff_inline: inline
527 label_diff_side_by_side: side om side
528 label_options: Optioner
529 label_copy_workflow_from: Kopier arbejdsgang fra
530 label_permissions_report: Godkendelsesrapport
531 label_watched_issues: Overvågede sager
532 label_related_issues: Relaterede sager
533 label_applied_status: Anvendte statuser
534 label_loading: Indlæser...
535 label_relation_new: Ny relation
536 label_relation_delete: Slet relation
537 label_relates_to: relaterer til
538 label_duplicates: kopierer
539 label_blocks: blokerer
540 label_blocked_by: blokeret af
541 label_precedes: kommer før
542 label_follows: følger
543 label_end_to_start: slut til start
544 label_end_to_end: slut til slut
545 label_start_to_start: start til start
546 label_start_to_end: start til slut
547 label_stay_logged_in: Forbliv indlogget
548 label_disabled: deaktiveret
549 label_show_completed_versions: Vis færdige versioner
550 label_me: mig
551 label_board: Forum
552 label_board_new: Nyt forum
553 label_board_plural: Fora
554 label_topic_plural: Emner
555 label_message_plural: Beskeder
556 label_message_last: Sidste besked
557 label_message_new: Ny besked
558 label_message_posted: Besked tilføjet
559 label_reply_plural: Besvarer
560 label_send_information: Send konto information til bruger
561 label_year: År
562 label_month: Måned
563 label_week: Uge
564 label_date_from: Fra
565 label_date_to: Til
566 label_language_based: Baseret på brugerens sprog
567 label_sort_by: "Sorter efter {{value}}"
568 label_send_test_email: Send en test email
569 label_feeds_access_key_created_on: "RSS adgangsnøgle danet for {{value}} siden"
570 label_module_plural: Moduler
571 label_added_time_by: "Tilføjet af {{author}} for {{age}} siden"
572 label_updated_time: "Opdateret for {{value}} siden"
573 label_jump_to_a_project: Skift til projekt...
574 label_file_plural: Filer
575 label_changeset_plural: Ændringer
576 label_default_columns: Standard kolonner
577 label_no_change_option: (Ingen ændringer)
578 label_bulk_edit_selected_issues: Masseret de valgte sager
579 label_theme: Tema
580 label_default: standard
581 label_search_titles_only: Søg kun i titler
582 label_user_mail_option_all: "For alle hændelser mine projekter"
583 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
584 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
585 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
586 label_registration_activation_by_email: kontoaktivering på email
587 label_registration_manual_activation: manuel kontoaktivering
588 label_registration_automatic_activation: automatisk kontoaktivering
589 label_display_per_page: "Per side: {{value}}'"
590 label_age: Alder
591 label_change_properties: Ændre indstillinger
592 label_general: Generalt
593 label_more: Mere
594 label_scm: SCM
595 label_plugins: Plugins
596 label_ldap_authentication: LDAP-godkendelse
597 label_downloads_abbr: D/L
598
599 button_login: Login
600 button_submit: Send
601 button_save: Gem
602 button_check_all: Vælg alt
603 button_uncheck_all: Fravælg alt
604 button_delete: Slet
605 button_create: Opret
606 button_test: Test
607 button_edit: Ret
608 button_add: Tilføj
609 button_change: Ændre
610 button_apply: Anvend
611 button_clear: Nulstil
612 button_lock: Lås
613 button_unlock: Lås op
614 button_download: Download
615 button_list: List
616 button_view: Vis
617 button_move: Flyt
618 button_back: Tilbage
619 button_cancel: Annuller
620 button_activate: Aktiver
621 button_sort: Sorter
622 button_log_time: Log tid
623 button_rollback: Tilbagefør til denne version
624 button_watch: Overvåg
625 button_unwatch: Stop overvågning
626 button_reply: Besvar
627 button_archive: Arkiver
628 button_unarchive: Fjern fra arkiv
629 button_reset: Nulstil
630 button_rename: Omdøb
631 button_change_password: Skift kodeord
632 button_copy: Kopier
633 button_annotate: Annotere
634 button_update: Opdater
635 button_configure: Konfigurer
636
637 status_active: aktiv
638 status_registered: registreret
639 status_locked: låst
640
641 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
642 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
643 text_min_max_length_info: 0 betyder ingen begrænsninger
644 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
645 text_workflow_edit: Vælg en rolle samt en type for at redigere arbejdsgangen
646 text_are_you_sure: Er du sikker?
647 text_journal_changed: "ændret fra {{old}} til {{new}}"
648 text_journal_set_to: "sat til {{value}}"
649 text_journal_deleted: slettet
650 text_tip_task_begin_day: opgaven begynder denne dag
651 text_tip_task_end_day: opaven slutter denne dag
652 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
653 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
654 text_caracters_maximum: "max {{count}} karakterer."
655 text_caracters_minimum: "Skal være mindst {{count}} karakterer lang."
656 text_length_between: "Længde skal være mellem {{min}} og {{max}} karakterer."
657 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
658 text_unallowed_characters: Ikke tilladte karakterer
659 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
660 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
661 text_issue_added: "Sag {{id}} er rapporteret af {{author}}."
662 text_issue_updated: "Sag {{id}} er blevet opdateret af {{author}}."
663 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
664 text_issue_category_destroy_question: "Nogle sager ({{count}}) er tildelt denne kategori. Hvad ønsker du at gøre?"
665 text_issue_category_destroy_assignments: Slet tildelinger af kategori
666 text_issue_category_reassign_to: Tildel sager til denne kategori
667 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 ha indberettet eller ejer)."
668 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."
669 text_load_default_configuration: Indlæs standardopsætningen
670 text_status_changed_by_changeset: "Anvendt i ændring {{value}}."
671 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
672 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
673 text_default_administrator_account_changed: Standard administratorkonto ændret
674 text_file_repository_writable: Filarkiv er skrivbar
675 text_rmagick_available: RMagick tilgængelig (valgfri)
676
677 default_role_manager: Leder
678 default_role_developper: Udvikler
679 default_role_reporter: Rapportør
680 default_tracker_bug: Bug
681 default_tracker_feature: Feature
682 default_tracker_support: Support
683 default_issue_status_new: Ny
684 default_issue_status_assigned: Tildelt
685 default_issue_status_resolved: Løst
686 default_issue_status_feedback: Feedback
687 default_issue_status_closed: Lukket
688 default_issue_status_rejected: Afvist
689 default_doc_category_user: Brugerdokumentation
690 default_doc_category_tech: Teknisk dokumentation
691 default_priority_low: Lav
692 default_priority_normal: Normal
693 default_priority_high: Høj
694 default_priority_urgent: Akut
695 default_priority_immediate: Omgående
696 default_activity_design: Design
697 default_activity_development: Udvikling
698
699 enumeration_issue_priorities: Sagsprioriteter
700 enumeration_doc_categories: Dokumentkategorier
701 enumeration_activities: Aktiviteter (tidsstyring)
702
703 label_add_another_file: Tilføj endnu en fil
704 label_chronological_order: I kronologisk rækkefølge
705 setting_activity_days_default: Antal dage der vises under projektaktivitet
706 text_destroy_time_entries_question: %.02f timer er reporteret på denne sag, som du er ved at slette. Hvad vil du gøre?
707 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
708 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
709 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
710 label_optional_description: Optionel beskrivelse
711 text_destroy_time_entries: Slet raportede timer
712 field_comments_sorting: Vis kommentar
713 text_reassign_time_entries: 'Tildel raportede timer til denne sag igen'
714 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
715 label_preferences: Preferences
716 label_overall_activity: Overordnet aktivitet
717 setting_default_projects_public: Nye projekter er offentlige som standard
718 error_scm_annotate: "The entry does not exist or can not be annotated."
719 label_planning: Planlægning
720 text_subprojects_destroy_warning: "Dets underprojekter(er): {{value}} vil også blive slettet.'"
721 permission_edit_issues: Edit issues
722 setting_diff_max_lines_displayed: Max number of diff lines displayed
723 permission_edit_own_issue_notes: Edit own notes
724 setting_enabled_scm: Enabled SCM
725 button_quote: Quote
726 permission_view_files: View files
727 permission_add_issues: Add issues
728 permission_edit_own_messages: Edit own messages
729 permission_delete_own_messages: Delete own messages
730 permission_manage_public_queries: Manage public queries
731 permission_log_time: Log spent time
732 label_renamed: renamed
733 label_incoming_emails: Incoming emails
734 permission_view_changesets: View changesets
735 permission_manage_versions: Manage versions
736 permission_view_time_entries: View spent time
737 label_generate_key: Generate a key
738 permission_manage_categories: Manage issue categories
739 permission_manage_wiki: Manage wiki
740 setting_sequential_project_identifiers: Generate sequential project identifiers
741 setting_plain_text_mail: Plain text mail (no HTML)
742 field_parent_title: Parent page
743 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
744 permission_protect_wiki_pages: Protect wiki pages
745 permission_manage_documents: Manage documents
746 permission_add_issue_watchers: Add watchers
747 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
748 permission_comment_news: Comment news
749 text_enumeration_category_reassign_to: 'Reassign them to this value:'
750 permission_select_project_modules: Select project modules
751 permission_view_gantt: View gantt chart
752 permission_delete_messages: Delete messages
753 permission_move_issues: Move issues
754 permission_edit_wiki_pages: Edit wiki pages
755 label_user_activity: "{{value}}'s activity"
756 permission_manage_issue_relations: Manage issue relations
757 label_issue_watchers: Watchers
758 permission_delete_wiki_pages: Delete wiki pages
759 notice_unable_delete_version: Unable to delete version.
760 permission_view_wiki_edits: View wiki history
761 field_editable: Editable
762 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
763 label_duplicated_by: duplicated by
764 permission_manage_boards: Manage boards
765 permission_delete_wiki_pages_attachments: Delete attachments
766 permission_view_messages: View messages
767 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
768 permission_manage_files: Manage files
769 permission_add_messages: Post messages
770 permission_edit_issue_notes: Edit notes
771 permission_manage_news: Manage news
772 text_plugin_assets_writable: Plugin assets directory writable
773 label_display: Display
774 label_and_its_subprojects: "{{value}} and its subprojects"
775 permission_view_calendar: View calender
776 button_create_and_continue: Create and continue
777 setting_gravatar_enabled: Use Gravatar user icons
778 label_updated_time_by: "Updated by {{author}} {{age}} ago"
779 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
780 text_user_wrote: "{{value}} wrote:'"
781 setting_mail_handler_api_enabled: Enable WS for incoming emails
782 permission_delete_issues: Delete issues
783 permission_view_documents: View documents
784 permission_browse_repository: Browse repository
785 permission_manage_repository: Manage repository
786 permission_manage_members: Manage members
787 mail_subject_reminder: "{{count}} issue(s) due in the next days"
788 permission_add_issue_notes: Add notes
789 permission_edit_messages: Edit messages
790 permission_view_issue_watchers: View watchers list
791 permission_commit_access: Commit access
792 setting_mail_handler_api_key: API key
793 label_example: Example
794 permission_rename_wiki_pages: Rename wiki pages
795 text_custom_field_possible_values_info: 'One line for each value'
796 permission_view_wiki_pages: View wiki
797 permission_edit_project: Edit project
798 permission_save_queries: Save queries
799 label_copied: copied
800 setting_commit_logs_encoding: Commit messages encoding
801 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."
802 permission_edit_time_entries: Edit time logs
803 general_csv_decimal_separator: '.'
804 permission_edit_own_time_entries: Edit own time logs
805 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
This diff has been collapsed as it changes many lines, (1508 lines changed) Show them Hide them
@@ -1,712 +1,806
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # German translations for Ruby on Rails
2 # by Clemens Kofler (clemens@railway.at)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 Tag
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
13 actionview_datehelper_time_in_words_minute: 1 Minute
14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 actionview_instancetag_blank_option: Bitte auswählen
4 de:
5 date:
6 formats:
7 default: "%d.%m.%Y"
8 short: "%e. %b"
9 long: "%e. %B %Y"
10 only_day: "%e"
21 11
22 activerecord_error_inclusion: ist nicht in der Liste enthalten
23 activerecord_error_exclusion: ist reserviert
24 activerecord_error_invalid: ist unzulässig
25 activerecord_error_confirmation: passt nicht zur Bestätigung
26 activerecord_error_accepted: muss angenommen werden
27 activerecord_error_empty: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
29 activerecord_error_too_long: ist zu lang
30 activerecord_error_too_short: ist zu kurz
31 activerecord_error_wrong_length: hat die falsche Länge
32 activerecord_error_taken: ist bereits vergeben
33 activerecord_error_not_a_number: ist keine Zahl
34 activerecord_error_not_a_date: ist kein gültiges Datum
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
12 day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
13 abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
14 month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
15 abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
16 order: [ :day, :month, :year ]
17
18 time:
19 formats:
20 default: "%A, %e. %B %Y, %H:%M Uhr"
21 short: "%e. %B, %H:%M Uhr"
22 long: "%A, %e. %B %Y, %H:%M Uhr"
23 time: "%H:%M"
38 24
39 general_fmt_age: %d Jahr
40 general_fmt_age_plural: %d Jahre
41 general_fmt_date: %%d.%%m.%%y
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 general_fmt_time: %%H:%%M
45 general_text_No: 'Nein'
46 general_text_Yes: 'Ja'
47 general_text_no: 'nein'
48 general_text_yes: 'ja'
49 general_lang_name: 'Deutsch'
50 general_csv_separator: ';'
51 general_csv_decimal_separator: ','
52 general_csv_encoding: ISO-8859-1
53 general_pdf_encoding: ISO-8859-1
54 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
55 general_first_day_of_week: '1'
25 am: "vormittags"
26 pm: "nachmittags"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: 'eine halbe Minute'
31 less_than_x_seconds:
32 zero: 'weniger als 1 Sekunde'
33 one: 'weniger als 1 Sekunde'
34 other: 'weniger als {{count}} Sekunden'
35 x_seconds:
36 one: '1 Sekunde'
37 other: '{{count}} Sekunden'
38 less_than_x_minutes:
39 zero: 'weniger als 1 Minute'
40 one: 'weniger als eine Minute'
41 other: 'weniger als {{count}} Minuten'
42 x_minutes:
43 one: '1 Minute'
44 other: '{{count}} Minuten'
45 about_x_hours:
46 one: 'etwa 1 Stunde'
47 other: 'etwa {{count}} Stunden'
48 x_days:
49 one: '1 Tag'
50 other: '{{count}} Tage'
51 about_x_months:
52 one: 'etwa 1 Monat'
53 other: 'etwa {{count}} Monate'
54 x_months:
55 one: '1 Monat'
56 other: '{{count}} Monate'
57 about_x_years:
58 one: 'etwa 1 Jahr'
59 other: 'etwa {{count}} Jahre'
60 over_x_years:
61 one: 'mehr als 1 Jahr'
62 other: 'mehr als {{count}} Jahre'
63
64 number:
65 format:
66 precision: 2
67 separator: ','
68 delimiter: '.'
69 currency:
70 format:
71 unit: '€'
72 format: '%n%u'
73 separator:
74 delimiter:
75 precision:
76 percentage:
77 format:
78 delimiter: ""
79 precision:
80 format:
81 delimiter: ""
82 human:
83 format:
84 delimiter: ""
85 precision: 1
56 86
57 notice_account_updated: Konto wurde erfolgreich aktualisiert.
58 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
59 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
60 notice_account_wrong_password: Falsches Kennwort
61 notice_account_register_done: Konto wurde erfolgreich angelegt.
62 notice_account_unknown_email: Unbekannter Benutzer.
63 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
64 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
65 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
66 notice_successful_create: Erfolgreich angelegt
67 notice_successful_update: Erfolgreich aktualisiert.
68 notice_successful_delete: Erfolgreich gelöscht.
69 notice_successful_connection: Verbindung erfolgreich.
70 notice_file_not_found: Anhang existiert nicht oder ist gelöscht worden.
71 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
72 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
73 notice_email_sent: Eine E-Mail wurde an %s gesendet.
74 notice_email_error: Beim Senden einer E-Mail ist ein Fehler aufgetreten (%s).
75 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
76 notice_failed_to_save_issues: "%d von %d ausgewählten Tickets konnte(n) nicht gespeichert werden: %s."
77 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
78 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
79 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
80 notice_unable_delete_version: Die Version konnte nicht gelöscht werden
87 support:
88 array:
89 sentence_connector: "und"
90 skip_last_comma: true
91
92 activerecord:
93 errors:
94 template:
95 header:
96 one: "Konnte dieses {{model}} Objekt nicht speichern: 1 Fehler."
97 other: "Konnte dieses {{model}} Objekt nicht speichern: {{count}} Fehler."
98 body: "Bitte überprüfen Sie die folgenden Felder:"
81 99
82 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %s"
83 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
84 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %s"
85 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
86 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
87
88 warning_attachments_not_saved: "%d Datei(en) konnten nicht gespeichert werden."
89
90 mail_subject_lost_password: Ihr %s Kennwort
91 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
92 mail_subject_register: %s Kontoaktivierung
93 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
94 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an anmelden.
95 mail_body_account_information: Ihre Konto-Informationen
96 mail_subject_account_activation_request: Antrag auf %s Kontoaktivierung
97 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
98 mail_subject_reminder: "%d Tickets müssen in den nächsten Tagen abgegeben werden"
99 mail_body_reminder: "%d Tickets, die Ihnen zugewiesen sind, müssen in den nächsten %d Tagen abgegeben werden:"
100
101 gui_validation_error: 1 Fehler
102 gui_validation_error_plural: %d Fehler
103
104 field_name: Name
105 field_description: Beschreibung
106 field_summary: Zusammenfassung
107 field_is_required: Erforderlich
108 field_firstname: Vorname
109 field_lastname: Nachname
110 field_mail: E-Mail
111 field_filename: Datei
112 field_filesize: Größe
113 field_downloads: Downloads
114 field_author: Autor
115 field_created_on: Angelegt
116 field_updated_on: Aktualisiert
117 field_field_format: Format
118 field_is_for_all: Für alle Projekte
119 field_possible_values: Mögliche Werte
120 field_regexp: Regulärer Ausdruck
121 field_min_length: Minimale Länge
122 field_max_length: Maximale Länge
123 field_value: Wert
124 field_category: Kategorie
125 field_title: Titel
126 field_project: Projekt
127 field_issue: Ticket
128 field_status: Status
129 field_notes: Kommentare
130 field_is_closed: Ticket geschlossen
131 field_is_default: Standardeinstellung
132 field_tracker: Tracker
133 field_subject: Thema
134 field_due_date: Abgabedatum
135 field_assigned_to: Zugewiesen an
136 field_priority: Priorität
137 field_fixed_version: Zielversion
138 field_user: Benutzer
139 field_role: Rolle
140 field_homepage: Projekt-Homepage
141 field_is_public: Öffentlich
142 field_parent: Unterprojekt von
143 field_is_in_chlog: Im Change-Log anzeigen
144 field_is_in_roadmap: In der Roadmap anzeigen
145 field_login: Mitgliedsname
146 field_mail_notification: Mailbenachrichtigung
147 field_admin: Administrator
148 field_last_login_on: Letzte Anmeldung
149 field_language: Sprache
150 field_effective_date: Datum
151 field_password: Kennwort
152 field_new_password: Neues Kennwort
153 field_password_confirmation: Bestätigung
154 field_version: Version
155 field_type: Typ
156 field_host: Host
157 field_port: Port
158 field_account: Konto
159 field_base_dn: Base DN
160 field_attr_login: Mitgliedsname-Attribut
161 field_attr_firstname: Vorname-Attribut
162 field_attr_lastname: Name-Attribut
163 field_attr_mail: E-Mail-Attribut
164 field_onthefly: On-the-fly-Benutzererstellung
165 field_start_date: Beginn
166 field_done_ratio: %% erledigt
167 field_auth_source: Authentifizierungs-Modus
168 field_hide_mail: E-Mail-Adresse nicht anzeigen
169 field_comments: Kommentar
170 field_url: URL
171 field_start_page: Hauptseite
172 field_subproject: Subprojekt von
173 field_hours: Stunden
174 field_activity: Aktivität
175 field_spent_on: Datum
176 field_identifier: Kennung
177 field_is_filter: Als Filter benutzen
178 field_issue_to_id: Zugehöriges Ticket
179 field_delay: Pufferzeit
180 field_assignable: Tickets können dieser Rolle zugewiesen werden
181 field_redirect_existing_links: Existierende Links umleiten
182 field_estimated_hours: Geschätzter Aufwand
183 field_column_names: Spalten
184 field_time_zone: Zeitzone
185 field_searchable: Durchsuchbar
186 field_default_value: Standardwert
187 field_comments_sorting: Kommentare anzeigen
188 field_parent_title: Übergeordnete Seite
189
190 setting_app_title: Applikations-Titel
191 setting_app_subtitle: Applikations-Untertitel
192 setting_welcome_text: Willkommenstext
193 setting_default_language: Default-Sprache
194 setting_login_required: Authentisierung erforderlich
195 setting_self_registration: Anmeldung ermöglicht
196 setting_attachment_max_size: Max. Dateigröße
197 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
198 setting_mail_from: E-Mail-Absender
199 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
200 setting_plain_text_mail: Nur reinen Text (kein HTML) senden
201 setting_host_name: Hostname
202 setting_text_formatting: Textformatierung
203 setting_wiki_compression: Wiki-Historie komprimieren
204 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
205 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
206 setting_autofetch_changesets: Changesets automatisch abrufen
207 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
208 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
209 setting_commit_fix_keywords: Schlüsselwörter (Status)
210 setting_autologin: Automatische Anmeldung
211 setting_date_format: Datumsformat
212 setting_time_format: Zeitformat
213 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
214 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
215 setting_repositories_encodings: Kodierungen der Projektarchive
216 setting_commit_logs_encoding: Kodierung der Commit-Log-Meldungen
217 setting_emails_footer: E-Mail-Fußzeile
218 setting_protocol: Protokoll
219 setting_per_page_options: Objekte pro Seite
220 setting_user_format: Benutzer-Anzeigeformat
221 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
222 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
223 setting_enabled_scm: Aktivierte Versionskontrollsysteme
224 setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren
225 setting_mail_handler_api_key: API-Schlüssel
226 setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren
227 setting_gravatar_enabled: Gravatar Benutzerbilder benutzen
228 setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen
229
230 permission_edit_project: Projekt bearbeiten
231 permission_select_project_modules: Projektmodule auswählen
232 permission_manage_members: Mitglieder verwalten
233 permission_manage_versions: Versionen verwalten
234 permission_manage_categories: Ticket-Kategorien verwalten
235 permission_add_issues: Tickets hinzufügen
236 permission_edit_issues: Tickets bearbeiten
237 permission_manage_issue_relations: Ticket-Beziehungen verwalten
238 permission_add_issue_notes: Kommentare hinzufügen
239 permission_edit_issue_notes: Kommentare bearbeiten
240 permission_edit_own_issue_notes: Eigene Kommentare bearbeiten
241 permission_move_issues: Tickets verschieben
242 permission_delete_issues: Tickets löschen
243 permission_manage_public_queries: Öffentliche Filter verwalten
244 permission_save_queries: Filter speichern
245 permission_view_gantt: Gantt-Diagramm ansehen
246 permission_view_calendar: Kalender ansehen
247 permission_view_issue_watchers: Liste der Beobachter ansehen
248 permission_add_issue_watchers: Beobachter hinzufügen
249 permission_log_time: Aufwände buchen
250 permission_view_time_entries: Gebuchte Aufwände ansehen
251 permission_edit_time_entries: Gebuchte Aufwände bearbeiten
252 permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten
253 permission_manage_news: News verwalten
254 permission_comment_news: News kommentieren
255 permission_manage_documents: Dokumente verwalten
256 permission_view_documents: Dokumente ansehen
257 permission_manage_files: Dateien verwalten
258 permission_view_files: Dateien ansehen
259 permission_manage_wiki: Wiki verwalten
260 permission_rename_wiki_pages: Wiki-Seiten umbenennen
261 permission_delete_wiki_pages: Wiki-Seiten löschen
262 permission_view_wiki_pages: Wiki ansehen
263 permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen
264 permission_edit_wiki_pages: Wiki-Seiten bearbeiten
265 permission_delete_wiki_pages_attachments: Anhänge löschen
266 permission_protect_wiki_pages: Wiki-Seiten schützen
267 permission_manage_repository: Projektarchiv verwalten
268 permission_browse_repository: Projektarchiv ansehen
269 permission_view_changesets: Changesets ansehen
270 permission_commit_access: Commit-Zugriff (über WebDAV)
271 permission_manage_boards: Foren verwalten
272 permission_view_messages: Forenbeiträge ansehen
273 permission_add_messages: Forenbeiträge hinzufügen
274 permission_edit_messages: Forenbeiträge bearbeiten
275 permission_edit_own_messages: Eigene Forenbeiträge bearbeiten
276 permission_delete_messages: Forenbeiträge löschen
277 permission_delete_own_messages: Eigene Forenbeiträge löschen
278
279 project_module_issue_tracking: Ticket-Verfolgung
280 project_module_time_tracking: Zeiterfassung
281 project_module_news: News
282 project_module_documents: Dokumente
283 project_module_files: Dateien
284 project_module_wiki: Wiki
285 project_module_repository: Projektarchiv
286 project_module_boards: Foren
287
288 label_user: Benutzer
289 label_user_plural: Benutzer
290 label_user_new: Neuer Benutzer
291 label_project: Projekt
292 label_project_new: Neues Projekt
293 label_project_plural: Projekte
294 label_project_all: Alle Projekte
295 label_project_latest: Neueste Projekte
296 label_issue: Ticket
297 label_issue_new: Neues Ticket
298 label_issue_plural: Tickets
299 label_issue_view_all: Alle Tickets anzeigen
300 label_issues_by: Tickets von %s
301 label_issue_added: Ticket hinzugefügt
302 label_issue_updated: Ticket aktualisiert
303 label_document: Dokument
304 label_document_new: Neues Dokument
305 label_document_plural: Dokumente
306 label_document_added: Dokument hinzugefügt
307 label_role: Rolle
308 label_role_plural: Rollen
309 label_role_new: Neue Rolle
310 label_role_and_permissions: Rollen und Rechte
311 label_member: Mitglied
312 label_member_new: Neues Mitglied
313 label_member_plural: Mitglieder
314 label_tracker: Tracker
315 label_tracker_plural: Tracker
316 label_tracker_new: Neuer Tracker
317 label_workflow: Workflow
318 label_issue_status: Ticket-Status
319 label_issue_status_plural: Ticket-Status
320 label_issue_status_new: Neuer Status
321 label_issue_category: Ticket-Kategorie
322 label_issue_category_plural: Ticket-Kategorien
323 label_issue_category_new: Neue Kategorie
324 label_custom_field: Benutzerdefiniertes Feld
325 label_custom_field_plural: Benutzerdefinierte Felder
326 label_custom_field_new: Neues Feld
327 label_enumerations: Aufzählungen
328 label_enumeration_new: Neuer Wert
329 label_information: Information
330 label_information_plural: Informationen
331 label_please_login: Anmelden
332 label_register: Registrieren
333 label_password_lost: Kennwort vergessen
334 label_home: Hauptseite
335 label_my_page: Meine Seite
336 label_my_account: Mein Konto
337 label_my_projects: Meine Projekte
338 label_administration: Administration
339 label_login: Anmelden
340 label_logout: Abmelden
341 label_help: Hilfe
342 label_reported_issues: Gemeldete Tickets
343 label_assigned_to_me_issues: Mir zugewiesen
344 label_last_login: Letzte Anmeldung
345 label_last_updates: zuletzt aktualisiert
346 label_last_updates_plural: %d zuletzt aktualisierten
347 label_registered_on: Angemeldet am
348 label_activity: Aktivität
349 label_overall_activity: Aktivität aller Projekte anzeigen
350 label_user_activity: "Aktivität von %s"
351 label_new: Neu
352 label_logged_as: Angemeldet als
353 label_environment: Environment
354 label_authentication: Authentifizierung
355 label_auth_source: Authentifizierungs-Modus
356 label_auth_source_new: Neuer Authentifizierungs-Modus
357 label_auth_source_plural: Authentifizierungs-Arten
358 label_subproject_plural: Unterprojekte
359 label_and_its_subprojects: %s und dessen Unterprojekte
360 label_min_max_length: Länge (Min. - Max.)
361 label_list: Liste
362 label_date: Datum
363 label_integer: Zahl
364 label_float: Fließkommazahl
365 label_boolean: Boolean
366 label_string: Text
367 label_text: Langer Text
368 label_attribute: Attribut
369 label_attribute_plural: Attribute
370 label_download: %d Download
371 label_download_plural: %d Downloads
372 label_no_data: Nichts anzuzeigen
373 label_change_status: Statuswechsel
374 label_history: Historie
375 label_attachment: Datei
376 label_attachment_new: Neue Datei
377 label_attachment_delete: Anhang löschen
378 label_attachment_plural: Dateien
379 label_file_added: Datei hinzugefügt
380 label_report: Bericht
381 label_report_plural: Berichte
382 label_news: News
383 label_news_new: News hinzufügen
384 label_news_plural: News
385 label_news_latest: Letzte News
386 label_news_view_all: Alle News anzeigen
387 label_news_added: News hinzugefügt
388 label_change_log: Change-Log
389 label_settings: Konfiguration
390 label_overview: Übersicht
391 label_version: Version
392 label_version_new: Neue Version
393 label_version_plural: Versionen
394 label_confirmation: Bestätigung
395 label_export_to: "Auch abrufbar als:"
396 label_read: Lesen...
397 label_public_projects: Öffentliche Projekte
398 label_open_issues: offen
399 label_open_issues_plural: offen
400 label_closed_issues: geschlossen
401 label_closed_issues_plural: geschlossen
402 label_total: Gesamtzahl
403 label_permissions: Berechtigungen
404 label_current_status: Gegenwärtiger Status
405 label_new_statuses_allowed: Neue Berechtigungen
406 label_all: alle
407 label_none: kein
408 label_nobody: Niemand
409 label_next: Weiter
410 label_previous: Zurück
411 label_used_by: Benutzt von
412 label_details: Details
413 label_add_note: Kommentar hinzufügen
414 label_per_page: Pro Seite
415 label_calendar: Kalender
416 label_months_from: Monate ab
417 label_gantt: Gantt-Diagramm
418 label_internal: Intern
419 label_last_changes: %d letzte Änderungen
420 label_change_view_all: Alle Änderungen anzeigen
421 label_personalize_page: Diese Seite anpassen
422 label_comment: Kommentar
423 label_comment_plural: Kommentare
424 label_comment_add: Kommentar hinzufügen
425 label_comment_added: Kommentar hinzugefügt
426 label_comment_delete: Kommentar löschen
427 label_query: Benutzerdefinierte Abfrage
428 label_query_plural: Benutzerdefinierte Berichte
429 label_query_new: Neuer Bericht
430 label_filter_add: Filter hinzufügen
431 label_filter_plural: Filter
432 label_equals: ist
433 label_not_equals: ist nicht
434 label_in_less_than: in weniger als
435 label_in_more_than: in mehr als
436 label_in: an
437 label_today: heute
438 label_all_time: gesamter Zeitraum
439 label_yesterday: gestern
440 label_this_week: aktuelle Woche
441 label_last_week: vorige Woche
442 label_last_n_days: die letzten %d Tage
443 label_this_month: aktueller Monat
444 label_last_month: voriger Monat
445 label_this_year: aktuelles Jahr
446 label_date_range: Zeitraum
447 label_less_than_ago: vor weniger als
448 label_more_than_ago: vor mehr als
449 label_ago: vor
450 label_contains: enthält
451 label_not_contains: enthält nicht
452 label_day_plural: Tage
453 label_repository: Projektarchiv
454 label_repository_plural: Projektarchive
455 label_browse: Codebrowser
456 label_modification: %d Änderung
457 label_modification_plural: %d Änderungen
458 label_revision: Revision
459 label_revision_plural: Revisionen
460 label_associated_revisions: Zugehörige Revisionen
461 label_added: hinzugefügt
462 label_modified: geändert
463 label_copied: kopiert
464 label_renamed: umbenannt
465 label_deleted: gelöscht
466 label_latest_revision: Aktuellste Revision
467 label_latest_revision_plural: Aktuellste Revisionen
468 label_view_revisions: Revisionen anzeigen
469 label_max_size: Maximale Größe
470 label_on: von
471 label_sort_highest: An den Anfang
472 label_sort_higher: Eins höher
473 label_sort_lower: Eins tiefer
474 label_sort_lowest: Ans Ende
475 label_roadmap: Roadmap
476 label_roadmap_due_in: Fällig in %s
477 label_roadmap_overdue: %s verspätet
478 label_roadmap_no_issues: Keine Tickets für diese Version
479 label_search: Suche
480 label_result_plural: Resultate
481 label_all_words: Alle Wörter
482 label_wiki: Wiki
483 label_wiki_edit: Wiki-Bearbeitung
484 label_wiki_edit_plural: Wiki-Bearbeitungen
485 label_wiki_page: Wiki-Seite
486 label_wiki_page_plural: Wiki-Seiten
487 label_index_by_title: Seiten nach Titel sortiert
488 label_index_by_date: Seiten nach Datum sortiert
489 label_current_version: Gegenwärtige Version
490 label_preview: Vorschau
491 label_feed_plural: Feeds
492 label_changes_details: Details aller Änderungen
493 label_issue_tracking: Tickets
494 label_spent_time: Aufgewendete Zeit
495 label_f_hour: %.2f Stunde
496 label_f_hour_plural: %.2f Stunden
497 label_time_tracking: Zeiterfassung
498 label_change_plural: Änderungen
499 label_statistics: Statistiken
500 label_commits_per_month: Übertragungen pro Monat
501 label_commits_per_author: Übertragungen pro Autor
502 label_view_diff: Unterschiede anzeigen
503 label_diff_inline: inline
504 label_diff_side_by_side: nebeneinander
505 label_options: Optionen
506 label_copy_workflow_from: Workflow kopieren von
507 label_permissions_report: Berechtigungsübersicht
508 label_watched_issues: Beobachtete Tickets
509 label_related_issues: Zugehörige Tickets
510 label_applied_status: Zugewiesener Status
511 label_loading: Lade...
512 label_relation_new: Neue Beziehung
513 label_relation_delete: Beziehung löschen
514 label_relates_to: Beziehung mit
515 label_duplicates: Duplikat von
516 label_duplicated_by: Dupliziert durch
517 label_blocks: Blockiert
518 label_blocked_by: Blockiert durch
519 label_precedes: Vorgänger von
520 label_follows: folgt
521 label_end_to_start: Ende - Anfang
522 label_end_to_end: Ende - Ende
523 label_start_to_start: Anfang - Anfang
524 label_start_to_end: Anfang - Ende
525 label_stay_logged_in: Angemeldet bleiben
526 label_disabled: gesperrt
527 label_show_completed_versions: Abgeschlossene Versionen anzeigen
528 label_me: ich
529 label_board: Forum
530 label_board_new: Neues Forum
531 label_board_plural: Foren
532 label_topic_plural: Themen
533 label_message_plural: Forenbeiträge
534 label_message_last: Letzter Forenbeitrag
535 label_message_new: Neues Thema
536 label_message_posted: Forenbeitrag hinzugefügt
537 label_reply_plural: Antworten
538 label_send_information: Sende Kontoinformationen zum Benutzer
539 label_year: Jahr
540 label_month: Monat
541 label_week: Woche
542 label_date_from: Von
543 label_date_to: Bis
544 label_language_based: Sprachabhängig
545 label_sort_by: Sortiert nach %s
546 label_send_test_email: Test-E-Mail senden
547 label_feeds_access_key_created_on: Atom-Zugriffsschlüssel vor %s erstellt
548 label_module_plural: Module
549 label_added_time_by: Von %s vor %s hinzugefügt
550 label_updated_time_by: Von %s vor %s aktualisiert
551 label_updated_time: Vor %s aktualisiert
552 label_jump_to_a_project: Zu einem Projekt springen...
553 label_file_plural: Dateien
554 label_changeset_plural: Changesets
555 label_default_columns: Default-Spalten
556 label_no_change_option: (Keine Änderung)
557 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
558 label_theme: Stil
559 label_default: Default
560 label_search_titles_only: Nur Titel durchsuchen
561 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
562 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
563 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
564 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
565 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
566 label_registration_manual_activation: Manuelle Kontoaktivierung
567 label_registration_automatic_activation: Automatische Kontoaktivierung
568 label_display_per_page: 'Pro Seite: %s'
569 label_age: Geändert vor
570 label_change_properties: Eigenschaften ändern
571 label_general: Allgemein
572 label_more: Mehr
573 label_scm: Versionskontrollsystem
574 label_plugins: Plugins
575 label_ldap_authentication: LDAP-Authentifizierung
576 label_downloads_abbr: D/L
577 label_optional_description: Beschreibung (optional)
578 label_add_another_file: Eine weitere Datei hinzufügen
579 label_preferences: Präferenzen
580 label_chronological_order: in zeitlicher Reihenfolge
581 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
582 label_planning: Terminplanung
583 label_incoming_emails: Eingehende E-Mails
584 label_generate_key: Generieren
585 label_issue_watchers: Beobachter
586 label_example: Beispiel
587
588 button_login: Anmelden
589 button_submit: OK
590 button_save: Speichern
591 button_check_all: Alles auswählen
592 button_uncheck_all: Alles abwählen
593 button_delete: Löschen
594 button_create: Anlegen
595 button_test: Testen
596 button_edit: Bearbeiten
597 button_add: Hinzufügen
598 button_change: Wechseln
599 button_apply: Anwenden
600 button_clear: Zurücksetzen
601 button_lock: Sperren
602 button_unlock: Entsperren
603 button_download: Download
604 button_list: Liste
605 button_view: Anzeigen
606 button_move: Verschieben
607 button_back: Zurück
608 button_cancel: Abbrechen
609 button_activate: Aktivieren
610 button_sort: Sortieren
611 button_log_time: Aufwand buchen
612 button_rollback: Auf diese Version zurücksetzen
613 button_watch: Beobachten
614 button_unwatch: Nicht beobachten
615 button_reply: Antworten
616 button_archive: Archivieren
617 button_unarchive: Entarchivieren
618 button_reset: Zurücksetzen
619 button_rename: Umbenennen
620 button_change_password: Kennwort ändern
621 button_copy: Kopieren
622 button_annotate: Annotieren
623 button_update: Aktualisieren
624 button_configure: Konfigurieren
625 button_quote: Zitieren
626
627 status_active: aktiv
628 status_registered: angemeldet
629 status_locked: gesperrt
630
631 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
632 text_regexp_info: z. B. ^[A-Z0-9]+$
633 text_min_max_length_info: 0 heißt keine Beschränkung
634 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
635 text_subprojects_destroy_warning: 'Dessen Unterprojekte (%s) werden ebenfalls gelöscht.'
636 text_workflow_edit: Workflow zum Bearbeiten auswählen
637 text_are_you_sure: Sind Sie sicher?
638 text_journal_changed: geändert von %s zu %s
639 text_journal_set_to: gestellt zu %s
640 text_journal_deleted: gelöscht
641 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
642 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
643 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
644 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
645 text_caracters_maximum: Max. %d Zeichen.
646 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
647 text_length_between: Länge zwischen %d und %d Zeichen.
648 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
649 text_unallowed_characters: Nicht erlaubte Zeichen
650 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
651 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
652 text_issue_added: Ticket %s wurde erstellt by %s.
653 text_issue_updated: Ticket %s wurde aktualisiert by %s.
654 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
655 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
656 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
657 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
658 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)."
659 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."
660 text_load_default_configuration: Standard-Konfiguration laden
661 text_status_changed_by_changeset: Status geändert durch Changeset %s.
662 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
663 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
664 text_default_administrator_account_changed: Administrator-Kennwort geändert
665 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
666 text_plugin_assets_writable: Verzeichnis für Plugin-Assets beschreibbar
667 text_rmagick_available: RMagick verfügbar (optional)
668 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
669 text_destroy_time_entries: Gebuchte Aufwände löschen
670 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
671 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
672 text_user_wrote: '%s schrieb:'
673 text_enumeration_destroy_question: '%d Objekte sind diesem Wert zugeordnet.'
674 text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:'
675 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/email.yml vor und starten Sie die Applikation neu."
676 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."
677 text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.'
678
679 default_role_manager: Manager
680 default_role_developper: Entwickler
681 default_role_reporter: Reporter
682 default_tracker_bug: Fehler
683 default_tracker_feature: Feature
684 default_tracker_support: Unterstützung
685 default_issue_status_new: Neu
686 default_issue_status_assigned: Zugewiesen
687 default_issue_status_resolved: Gelöst
688 default_issue_status_feedback: Feedback
689 default_issue_status_closed: Erledigt
690 default_issue_status_rejected: Abgewiesen
691 default_doc_category_user: Benutzerdokumentation
692 default_doc_category_tech: Technische Dokumentation
693 default_priority_low: Niedrig
694 default_priority_normal: Normal
695 default_priority_high: Hoch
696 default_priority_urgent: Dringend
697 default_priority_immediate: Sofort
698 default_activity_design: Design
699 default_activity_development: Entwicklung
700
701 enumeration_issue_priorities: Ticket-Prioritäten
702 enumeration_doc_categories: Dokumentenkategorien
703 enumeration_activities: Aktivitäten (Zeiterfassung)
704 field_editable: Editable
705 label_display: Display
706 button_create_and_continue: Create and continue
707 text_custom_field_possible_values_info: 'One line for each value'
708 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
709 field_identity_url: OpenID URL
710 setting_openid: Allow OpenID login and registration
711 label_login_with_open_id_option: or login with OpenID
712 field_watcher: Watcher
100 messages:
101 inclusion: "ist kein gültiger Wert"
102 exclusion: "ist nicht verfügbar"
103 invalid: "ist nicht gültig"
104 confirmation: "stimmt nicht mit der Bestätigung überein"
105 accepted: "muss akzeptiert werden"
106 empty: "muss ausgefüllt werden"
107 blank: "muss ausgefüllt werden"
108 too_long: "ist zu lang (nicht mehr als {{count}} Zeichen)"
109 too_short: "ist zu kurz (nicht weniger als {{count}} Zeichen)"
110 wrong_length: "hat die falsche Länge (muss genau {{count}} Zeichen haben)"
111 taken: "ist bereits vergeben"
112 not_a_number: "ist keine Zahl"
113 greater_than: "muss größer als {{count}} sein"
114 greater_than_or_equal_to: "muss größer oder gleich {{count}} sein"
115 equal_to: "muss genau {{count}} sein"
116 less_than: "muss kleiner als {{count}} sein"
117 less_than_or_equal_to: "muss kleiner oder gleich {{count}} sein"
118 odd: "muss ungerade sein"
119 even: "muss gerade sein"
120 greater_than_start_date: "muss größer als Anfangsdatum sein"
121 not_same_project: "gehört nicht zum selben Projekt"
122 circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen"
123 models:
124
125 actionview_instancetag_blank_option: Bitte auswählen
126
127 general_text_No: 'Nein'
128 general_text_Yes: 'Ja'
129 general_text_no: 'nein'
130 general_text_yes: 'ja'
131 general_lang_name: 'Deutsch'
132 general_csv_separator: ';'
133 general_csv_decimal_separator: ','
134 general_csv_encoding: ISO-8859-1
135 general_pdf_encoding: ISO-8859-1
136 general_first_day_of_week: '1'
137
138 notice_account_updated: Konto wurde erfolgreich aktualisiert.
139 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
140 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
141 notice_account_wrong_password: Falsches Kennwort
142 notice_account_register_done: Konto wurde erfolgreich angelegt.
143 notice_account_unknown_email: Unbekannter Benutzer.
144 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
145 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
146 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
147 notice_successful_create: Erfolgreich angelegt
148 notice_successful_update: Erfolgreich aktualisiert.
149 notice_successful_delete: Erfolgreich gelöscht.
150 notice_successful_connection: Verbindung erfolgreich.
151 notice_file_not_found: Anhang existiert nicht oder ist gelöscht worden.
152 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
153 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
154 notice_email_sent: "Eine E-Mail wurde an {{value}} gesendet."
155 notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten ({{value}})."
156 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
157 notice_failed_to_save_issues: "{{count}} von {{total}} ausgewählten Tickets konnte(n) nicht gespeichert werden: {{ids}}."
158 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
159 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
160 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
161 notice_unable_delete_version: Die Version konnte nicht gelöscht werden
162
163 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: {{value}}"
164 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
165 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: {{value}}"
166 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
167 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
168
169 warning_attachments_not_saved: "{{count}} Datei(en) konnten nicht gespeichert werden."
170
171 mail_subject_lost_password: "Ihr {{value}} Kennwort"
172 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
173 mail_subject_register: "{{value}} Kontoaktivierung"
174 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
175 mail_body_account_information_external: "Sie können sich mit Ihrem Konto {{value}} an anmelden."
176 mail_body_account_information: Ihre Konto-Informationen
177 mail_subject_account_activation_request: "Antrag auf {{value}} Kontoaktivierung"
178 mail_body_account_activation_request: "Ein neuer Benutzer ({{value}}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'"
179 mail_subject_reminder: "{{count}} Tickets müssen in den nächsten Tagen abgegeben werden"
180 mail_body_reminder: "{{count}} Tickets, die Ihnen zugewiesen sind, müssen in den nächsten {{days}} Tagen abgegeben werden:"
181
182 gui_validation_error: 1 Fehler
183 gui_validation_error_plural: "{{count}} Fehler"
184
185 field_name: Name
186 field_description: Beschreibung
187 field_summary: Zusammenfassung
188 field_is_required: Erforderlich
189 field_firstname: Vorname
190 field_lastname: Nachname
191 field_mail: E-Mail
192 field_filename: Datei
193 field_filesize: Größe
194 field_downloads: Downloads
195 field_author: Autor
196 field_created_on: Angelegt
197 field_updated_on: Aktualisiert
198 field_field_format: Format
199 field_is_for_all: Für alle Projekte
200 field_possible_values: Mögliche Werte
201 field_regexp: Regulärer Ausdruck
202 field_min_length: Minimale Länge
203 field_max_length: Maximale Länge
204 field_value: Wert
205 field_category: Kategorie
206 field_title: Titel
207 field_project: Projekt
208 field_issue: Ticket
209 field_status: Status
210 field_notes: Kommentare
211 field_is_closed: Ticket geschlossen
212 field_is_default: Standardeinstellung
213 field_tracker: Tracker
214 field_subject: Thema
215 field_due_date: Abgabedatum
216 field_assigned_to: Zugewiesen an
217 field_priority: Priorität
218 field_fixed_version: Zielversion
219 field_user: Benutzer
220 field_role: Rolle
221 field_homepage: Projekt-Homepage
222 field_is_public: Öffentlich
223 field_parent: Unterprojekt von
224 field_is_in_chlog: Im Change-Log anzeigen
225 field_is_in_roadmap: In der Roadmap anzeigen
226 field_login: Mitgliedsname
227 field_mail_notification: Mailbenachrichtigung
228 field_admin: Administrator
229 field_last_login_on: Letzte Anmeldung
230 field_language: Sprache
231 field_effective_date: Datum
232 field_password: Kennwort
233 field_new_password: Neues Kennwort
234 field_password_confirmation: Bestätigung
235 field_version: Version
236 field_type: Typ
237 field_host: Host
238 field_port: Port
239 field_account: Konto
240 field_base_dn: Base DN
241 field_attr_login: Mitgliedsname-Attribut
242 field_attr_firstname: Vorname-Attribut
243 field_attr_lastname: Name-Attribut
244 field_attr_mail: E-Mail-Attribut
245 field_onthefly: On-the-fly-Benutzererstellung
246 field_start_date: Beginn
247 field_done_ratio: %% erledigt
248 field_auth_source: Authentifizierungs-Modus
249 field_hide_mail: E-Mail-Adresse nicht anzeigen
250 field_comments: Kommentar
251 field_url: URL
252 field_start_page: Hauptseite
253 field_subproject: Subprojekt von
254 field_hours: Stunden
255 field_activity: Aktivität
256 field_spent_on: Datum
257 field_identifier: Kennung
258 field_is_filter: Als Filter benutzen
259 field_issue_to_id: Zugehöriges Ticket
260 field_delay: Pufferzeit
261 field_assignable: Tickets können dieser Rolle zugewiesen werden
262 field_redirect_existing_links: Existierende Links umleiten
263 field_estimated_hours: Geschätzter Aufwand
264 field_column_names: Spalten
265 field_time_zone: Zeitzone
266 field_searchable: Durchsuchbar
267 field_default_value: Standardwert
268 field_comments_sorting: Kommentare anzeigen
269 field_parent_title: Übergeordnete Seite
270
271 setting_app_title: Applikations-Titel
272 setting_app_subtitle: Applikations-Untertitel
273 setting_welcome_text: Willkommenstext
274 setting_default_language: Default-Sprache
275 setting_login_required: Authentisierung erforderlich
276 setting_self_registration: Anmeldung ermöglicht
277 setting_attachment_max_size: Max. Dateigröße
278 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
279 setting_mail_from: E-Mail-Absender
280 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
281 setting_plain_text_mail: Nur reinen Text (kein HTML) senden
282 setting_host_name: Hostname
283 setting_text_formatting: Textformatierung
284 setting_wiki_compression: Wiki-Historie komprimieren
285 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
286 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
287 setting_autofetch_changesets: Changesets automatisch abrufen
288 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
289 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
290 setting_commit_fix_keywords: Schlüsselwörter (Status)
291 setting_autologin: Automatische Anmeldung
292 setting_date_format: Datumsformat
293 setting_time_format: Zeitformat
294 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
295 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
296 setting_repositories_encodings: Kodierungen der Projektarchive
297 setting_commit_logs_encoding: Kodierung der Commit-Log-Meldungen
298 setting_emails_footer: E-Mail-Fußzeile
299 setting_protocol: Protokoll
300 setting_per_page_options: Objekte pro Seite
301 setting_user_format: Benutzer-Anzeigeformat
302 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
303 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
304 setting_enabled_scm: Aktivierte Versionskontrollsysteme
305 setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren
306 setting_mail_handler_api_key: API-Schlüssel
307 setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren
308 setting_gravatar_enabled: Gravatar Benutzerbilder benutzen
309 setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen
310
311 permission_edit_project: Projekt bearbeiten
312 permission_select_project_modules: Projektmodule auswählen
313 permission_manage_members: Mitglieder verwalten
314 permission_manage_versions: Versionen verwalten
315 permission_manage_categories: Ticket-Kategorien verwalten
316 permission_add_issues: Tickets hinzufügen
317 permission_edit_issues: Tickets bearbeiten
318 permission_manage_issue_relations: Ticket-Beziehungen verwalten
319 permission_add_issue_notes: Kommentare hinzufügen
320 permission_edit_issue_notes: Kommentare bearbeiten
321 permission_edit_own_issue_notes: Eigene Kommentare bearbeiten
322 permission_move_issues: Tickets verschieben
323 permission_delete_issues: Tickets löschen
324 permission_manage_public_queries: Öffentliche Filter verwalten
325 permission_save_queries: Filter speichern
326 permission_view_gantt: Gantt-Diagramm ansehen
327 permission_view_calendar: Kalender ansehen
328 permission_view_issue_watchers: Liste der Beobachter ansehen
329 permission_add_issue_watchers: Beobachter hinzufügen
330 permission_log_time: Aufwände buchen
331 permission_view_time_entries: Gebuchte Aufwände ansehen
332 permission_edit_time_entries: Gebuchte Aufwände bearbeiten
333 permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten
334 permission_manage_news: News verwalten
335 permission_comment_news: News kommentieren
336 permission_manage_documents: Dokumente verwalten
337 permission_view_documents: Dokumente ansehen
338 permission_manage_files: Dateien verwalten
339 permission_view_files: Dateien ansehen
340 permission_manage_wiki: Wiki verwalten
341 permission_rename_wiki_pages: Wiki-Seiten umbenennen
342 permission_delete_wiki_pages: Wiki-Seiten löschen
343 permission_view_wiki_pages: Wiki ansehen
344 permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen
345 permission_edit_wiki_pages: Wiki-Seiten bearbeiten
346 permission_delete_wiki_pages_attachments: Anhänge löschen
347 permission_protect_wiki_pages: Wiki-Seiten schützen
348 permission_manage_repository: Projektarchiv verwalten
349 permission_browse_repository: Projektarchiv ansehen
350 permission_view_changesets: Changesets ansehen
351 permission_commit_access: Commit-Zugriff (über WebDAV)
352 permission_manage_boards: Foren verwalten
353 permission_view_messages: Forenbeiträge ansehen
354 permission_add_messages: Forenbeiträge hinzufügen
355 permission_edit_messages: Forenbeiträge bearbeiten
356 permission_edit_own_messages: Eigene Forenbeiträge bearbeiten
357 permission_delete_messages: Forenbeiträge löschen
358 permission_delete_own_messages: Eigene Forenbeiträge löschen
359
360 project_module_issue_tracking: Ticket-Verfolgung
361 project_module_time_tracking: Zeiterfassung
362 project_module_news: News
363 project_module_documents: Dokumente
364 project_module_files: Dateien
365 project_module_wiki: Wiki
366 project_module_repository: Projektarchiv
367 project_module_boards: Foren
368
369 label_user: Benutzer
370 label_user_plural: Benutzer
371 label_user_new: Neuer Benutzer
372 label_project: Projekt
373 label_project_new: Neues Projekt
374 label_project_plural: Projekte
375 label_x_projects:
376 zero: no projects
377 one: 1 project
378 other: "{{count}} projects"
379 label_project_all: Alle Projekte
380 label_project_latest: Neueste Projekte
381 label_issue: Ticket
382 label_issue_new: Neues Ticket
383 label_issue_plural: Tickets
384 label_issue_view_all: Alle Tickets anzeigen
385 label_issues_by: "Tickets von {{value}}"
386 label_issue_added: Ticket hinzugefügt
387 label_issue_updated: Ticket aktualisiert
388 label_document: Dokument
389 label_document_new: Neues Dokument
390 label_document_plural: Dokumente
391 label_document_added: Dokument hinzugefügt
392 label_role: Rolle
393 label_role_plural: Rollen
394 label_role_new: Neue Rolle
395 label_role_and_permissions: Rollen und Rechte
396 label_member: Mitglied
397 label_member_new: Neues Mitglied
398 label_member_plural: Mitglieder
399 label_tracker: Tracker
400 label_tracker_plural: Tracker
401 label_tracker_new: Neuer Tracker
402 label_workflow: Workflow
403 label_issue_status: Ticket-Status
404 label_issue_status_plural: Ticket-Status
405 label_issue_status_new: Neuer Status
406 label_issue_category: Ticket-Kategorie
407 label_issue_category_plural: Ticket-Kategorien
408 label_issue_category_new: Neue Kategorie
409 label_custom_field: Benutzerdefiniertes Feld
410 label_custom_field_plural: Benutzerdefinierte Felder
411 label_custom_field_new: Neues Feld
412 label_enumerations: Aufzählungen
413 label_enumeration_new: Neuer Wert
414 label_information: Information
415 label_information_plural: Informationen
416 label_please_login: Anmelden
417 label_register: Registrieren
418 label_password_lost: Kennwort vergessen
419 label_home: Hauptseite
420 label_my_page: Meine Seite
421 label_my_account: Mein Konto
422 label_my_projects: Meine Projekte
423 label_administration: Administration
424 label_login: Anmelden
425 label_logout: Abmelden
426 label_help: Hilfe
427 label_reported_issues: Gemeldete Tickets
428 label_assigned_to_me_issues: Mir zugewiesen
429 label_last_login: Letzte Anmeldung
430 label_registered_on: Angemeldet am
431 label_activity: Aktivität
432 label_overall_activity: Aktivität aller Projekte anzeigen
433 label_user_activity: "Aktivität von {{value}}"
434 label_new: Neu
435 label_logged_as: Angemeldet als
436 label_environment: Environment
437 label_authentication: Authentifizierung
438 label_auth_source: Authentifizierungs-Modus
439 label_auth_source_new: Neuer Authentifizierungs-Modus
440 label_auth_source_plural: Authentifizierungs-Arten
441 label_subproject_plural: Unterprojekte
442 label_and_its_subprojects: "{{value}} und dessen Unterprojekte"
443 label_min_max_length: Länge (Min. - Max.)
444 label_list: Liste
445 label_date: Datum
446 label_integer: Zahl
447 label_float: Fließkommazahl
448 label_boolean: Boolean
449 label_string: Text
450 label_text: Langer Text
451 label_attribute: Attribut
452 label_attribute_plural: Attribute
453 label_download: "{{count}} Download"
454 label_download_plural: "{{count}} Downloads"
455 label_no_data: Nichts anzuzeigen
456 label_change_status: Statuswechsel
457 label_history: Historie
458 label_attachment: Datei
459 label_attachment_new: Neue Datei
460 label_attachment_delete: Anhang löschen
461 label_attachment_plural: Dateien
462 label_file_added: Datei hinzugefügt
463 label_report: Bericht
464 label_report_plural: Berichte
465 label_news: News
466 label_news_new: News hinzufügen
467 label_news_plural: News
468 label_news_latest: Letzte News
469 label_news_view_all: Alle News anzeigen
470 label_news_added: News hinzugefügt
471 label_change_log: Change-Log
472 label_settings: Konfiguration
473 label_overview: Übersicht
474 label_version: Version
475 label_version_new: Neue Version
476 label_version_plural: Versionen
477 label_confirmation: Bestätigung
478 label_export_to: "Auch abrufbar als:"
479 label_read: Lesen...
480 label_public_projects: Öffentliche Projekte
481 label_open_issues: offen
482 label_open_issues_plural: offen
483 label_closed_issues: geschlossen
484 label_closed_issues_plural: geschlossen
485 label_x_open_issues_abbr_on_total:
486 zero: 0 open / {{total}}
487 one: 1 open / {{total}}
488 other: "{{count}} open / {{total}}"
489 label_x_open_issues_abbr:
490 zero: 0 open
491 one: 1 open
492 other: "{{count}} open"
493 label_x_closed_issues_abbr:
494 zero: 0 closed
495 one: 1 closed
496 other: "{{count}} closed"
497 label_total: Gesamtzahl
498 label_permissions: Berechtigungen
499 label_current_status: Gegenwärtiger Status
500 label_new_statuses_allowed: Neue Berechtigungen
501 label_all: alle
502 label_none: kein
503 label_nobody: Niemand
504 label_next: Weiter
505 label_previous: Zurück
506 label_used_by: Benutzt von
507 label_details: Details
508 label_add_note: Kommentar hinzufügen
509 label_per_page: Pro Seite
510 label_calendar: Kalender
511 label_months_from: Monate ab
512 label_gantt: Gantt-Diagramm
513 label_internal: Intern
514 label_last_changes: "{{count}} letzte Änderungen"
515 label_change_view_all: Alle Änderungen anzeigen
516 label_personalize_page: Diese Seite anpassen
517 label_comment: Kommentar
518 label_comment_plural: Kommentare
519 label_x_comments:
520 zero: no comments
521 one: 1 comment
522 other: "{{count}} comments"
523 label_comment_add: Kommentar hinzufügen
524 label_comment_added: Kommentar hinzugefügt
525 label_comment_delete: Kommentar löschen
526 label_query: Benutzerdefinierte Abfrage
527 label_query_plural: Benutzerdefinierte Berichte
528 label_query_new: Neuer Bericht
529 label_filter_add: Filter hinzufügen
530 label_filter_plural: Filter
531 label_equals: ist
532 label_not_equals: ist nicht
533 label_in_less_than: in weniger als
534 label_in_more_than: in mehr als
535 label_in: an
536 label_today: heute
537 label_all_time: gesamter Zeitraum
538 label_yesterday: gestern
539 label_this_week: aktuelle Woche
540 label_last_week: vorige Woche
541 label_last_n_days: "die letzten {{count}} Tage"
542 label_this_month: aktueller Monat
543 label_last_month: voriger Monat
544 label_this_year: aktuelles Jahr
545 label_date_range: Zeitraum
546 label_less_than_ago: vor weniger als
547 label_more_than_ago: vor mehr als
548 label_ago: vor
549 label_contains: enthält
550 label_not_contains: enthält nicht
551 label_day_plural: Tage
552 label_repository: Projektarchiv
553 label_repository_plural: Projektarchive
554 label_browse: Codebrowser
555 label_modification: "{{count}} Änderung"
556 label_modification_plural: "{{count}} Änderungen"
557 label_revision: Revision
558 label_revision_plural: Revisionen
559 label_associated_revisions: Zugehörige Revisionen
560 label_added: hinzugefügt
561 label_modified: geändert
562 label_copied: kopiert
563 label_renamed: umbenannt
564 label_deleted: gelöscht
565 label_latest_revision: Aktuellste Revision
566 label_latest_revision_plural: Aktuellste Revisionen
567 label_view_revisions: Revisionen anzeigen
568 label_max_size: Maximale Größe
569 label_sort_highest: An den Anfang
570 label_sort_higher: Eins höher
571 label_sort_lower: Eins tiefer
572 label_sort_lowest: Ans Ende
573 label_roadmap: Roadmap
574 label_roadmap_due_in: "Fällig in {{value}}"
575 label_roadmap_overdue: "{{value}} verspätet"
576 label_roadmap_no_issues: Keine Tickets für diese Version
577 label_search: Suche
578 label_result_plural: Resultate
579 label_all_words: Alle Wörter
580 label_wiki: Wiki
581 label_wiki_edit: Wiki-Bearbeitung
582 label_wiki_edit_plural: Wiki-Bearbeitungen
583 label_wiki_page: Wiki-Seite
584 label_wiki_page_plural: Wiki-Seiten
585 label_index_by_title: Seiten nach Titel sortiert
586 label_index_by_date: Seiten nach Datum sortiert
587 label_current_version: Gegenwärtige Version
588 label_preview: Vorschau
589 label_feed_plural: Feeds
590 label_changes_details: Details aller Änderungen
591 label_issue_tracking: Tickets
592 label_spent_time: Aufgewendete Zeit
593 label_f_hour: "{{value}} Stunde"
594 label_f_hour_plural: "{{value}} Stunden"
595 label_time_tracking: Zeiterfassung
596 label_change_plural: Änderungen
597 label_statistics: Statistiken
598 label_commits_per_month: Übertragungen pro Monat
599 label_commits_per_author: Übertragungen pro Autor
600 label_view_diff: Unterschiede anzeigen
601 label_diff_inline: inline
602 label_diff_side_by_side: nebeneinander
603 label_options: Optionen
604 label_copy_workflow_from: Workflow kopieren von
605 label_permissions_report: Berechtigungsübersicht
606 label_watched_issues: Beobachtete Tickets
607 label_related_issues: Zugehörige Tickets
608 label_applied_status: Zugewiesener Status
609 label_loading: Lade...
610 label_relation_new: Neue Beziehung
611 label_relation_delete: Beziehung löschen
612 label_relates_to: Beziehung mit
613 label_duplicates: Duplikat von
614 label_duplicated_by: Dupliziert durch
615 label_blocks: Blockiert
616 label_blocked_by: Blockiert durch
617 label_precedes: Vorgänger von
618 label_follows: folgt
619 label_end_to_start: Ende - Anfang
620 label_end_to_end: Ende - Ende
621 label_start_to_start: Anfang - Anfang
622 label_start_to_end: Anfang - Ende
623 label_stay_logged_in: Angemeldet bleiben
624 label_disabled: gesperrt
625 label_show_completed_versions: Abgeschlossene Versionen anzeigen
626 label_me: ich
627 label_board: Forum
628 label_board_new: Neues Forum
629 label_board_plural: Foren
630 label_topic_plural: Themen
631 label_message_plural: Forenbeiträge
632 label_message_last: Letzter Forenbeitrag
633 label_message_new: Neues Thema
634 label_message_posted: Forenbeitrag hinzugefügt
635 label_reply_plural: Antworten
636 label_send_information: Sende Kontoinformationen zum Benutzer
637 label_year: Jahr
638 label_month: Monat
639 label_week: Woche
640 label_date_from: Von
641 label_date_to: Bis
642 label_language_based: Sprachabhängig
643 label_sort_by: "Sortiert nach {{value}}"
644 label_send_test_email: Test-E-Mail senden
645 label_feeds_access_key_created_on: "Atom-Zugriffsschlüssel vor {{value}} erstellt"
646 label_module_plural: Module
647 label_added_time_by: "Von {{author}} vor {{age}} hinzugefügt"
648 label_updated_time_by: "Von {{author}} vor {{age}} aktualisiert"
649 label_updated_time: "Vor {{value}} aktualisiert"
650 label_jump_to_a_project: Zu einem Projekt springen...
651 label_file_plural: Dateien
652 label_changeset_plural: Changesets
653 label_default_columns: Default-Spalten
654 label_no_change_option: (Keine Änderung)
655 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
656 label_theme: Stil
657 label_default: Default
658 label_search_titles_only: Nur Titel durchsuchen
659 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
660 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
661 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
662 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
663 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
664 label_registration_manual_activation: Manuelle Kontoaktivierung
665 label_registration_automatic_activation: Automatische Kontoaktivierung
666 label_display_per_page: "Pro Seite: {{value}}'"
667 label_age: Geändert vor
668 label_change_properties: Eigenschaften ändern
669 label_general: Allgemein
670 label_more: Mehr
671 label_scm: Versionskontrollsystem
672 label_plugins: Plugins
673 label_ldap_authentication: LDAP-Authentifizierung
674 label_downloads_abbr: D/L
675 label_optional_description: Beschreibung (optional)
676 label_add_another_file: Eine weitere Datei hinzufügen
677 label_preferences: Präferenzen
678 label_chronological_order: in zeitlicher Reihenfolge
679 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
680 label_planning: Terminplanung
681 label_incoming_emails: Eingehende E-Mails
682 label_generate_key: Generieren
683 label_issue_watchers: Beobachter
684 label_example: Beispiel
685
686 button_login: Anmelden
687 button_submit: OK
688 button_save: Speichern
689 button_check_all: Alles auswählen
690 button_uncheck_all: Alles abwählen
691 button_delete: Löschen
692 button_create: Anlegen
693 button_test: Testen
694 button_edit: Bearbeiten
695 button_add: Hinzufügen
696 button_change: Wechseln
697 button_apply: Anwenden
698 button_clear: Zurücksetzen
699 button_lock: Sperren
700 button_unlock: Entsperren
701 button_download: Download
702 button_list: Liste
703 button_view: Anzeigen
704 button_move: Verschieben
705 button_back: Zurück
706 button_cancel: Abbrechen
707 button_activate: Aktivieren
708 button_sort: Sortieren
709 button_log_time: Aufwand buchen
710 button_rollback: Auf diese Version zurücksetzen
711 button_watch: Beobachten
712 button_unwatch: Nicht beobachten
713 button_reply: Antworten
714 button_archive: Archivieren
715 button_unarchive: Entarchivieren
716 button_reset: Zurücksetzen
717 button_rename: Umbenennen
718 button_change_password: Kennwort ändern
719 button_copy: Kopieren
720 button_annotate: Annotieren
721 button_update: Aktualisieren
722 button_configure: Konfigurieren
723 button_quote: Zitieren
724
725 status_active: aktiv
726 status_registered: angemeldet
727 status_locked: gesperrt
728
729 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
730 text_regexp_info: z. B. ^[A-Z0-9]+$
731 text_min_max_length_info: 0 heißt keine Beschränkung
732 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
733 text_subprojects_destroy_warning: "Dessen Unterprojekte ({{value}}) werden ebenfalls gelöscht.'"
734 text_workflow_edit: Workflow zum Bearbeiten auswählen
735 text_are_you_sure: Sind Sie sicher?
736 text_journal_changed: "geändert von {{old}} zu {{new}}"
737 text_journal_set_to: "gestellt zu {{value}}"
738 text_journal_deleted: gelöscht
739 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
740 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
741 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
742 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
743 text_caracters_maximum: "Max. {{count}} Zeichen."
744 text_caracters_minimum: "Muss mindestens {{count}} Zeichen lang sein."
745 text_length_between: "Länge zwischen {{min}} und {{max}} Zeichen."
746 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
747 text_unallowed_characters: Nicht erlaubte Zeichen
748 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
749 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
750 text_issue_added: "Ticket {{id}} wurde erstellt by {{author}}."
751 text_issue_updated: "Ticket {{id}} wurde aktualisiert by {{author}}."
752 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
753 text_issue_category_destroy_question: "Einige Tickets ({{count}}) sind dieser Kategorie zugeodnet. Was möchten Sie tun?"
754 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
755 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
756 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)."
757 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."
758 text_load_default_configuration: Standard-Konfiguration laden
759 text_status_changed_by_changeset: "Status geändert durch Changeset {{value}}."
760 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
761 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
762 text_default_administrator_account_changed: Administrator-Kennwort geändert
763 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
764 text_plugin_assets_writable: Verzeichnis für Plugin-Assets beschreibbar
765 text_rmagick_available: RMagick verfügbar (optional)
766 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
767 text_destroy_time_entries: Gebuchte Aufwände löschen
768 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
769 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
770 text_user_wrote: "{{value}} schrieb:'"
771 text_enumeration_destroy_question: "{{count}} Objekte sind diesem Wert zugeordnet.'"
772 text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:'
773 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/email.yml vor und starten Sie die Applikation neu."
774 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."
775 text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.'
776
777 default_role_manager: Manager
778 default_role_developper: Entwickler
779 default_role_reporter: Reporter
780 default_tracker_bug: Fehler
781 default_tracker_feature: Feature
782 default_tracker_support: Unterstützung
783 default_issue_status_new: Neu
784 default_issue_status_assigned: Zugewiesen
785 default_issue_status_resolved: Gelöst
786 default_issue_status_feedback: Feedback
787 default_issue_status_closed: Erledigt
788 default_issue_status_rejected: Abgewiesen
789 default_doc_category_user: Benutzerdokumentation
790 default_doc_category_tech: Technische Dokumentation
791 default_priority_low: Niedrig
792 default_priority_normal: Normal
793 default_priority_high: Hoch
794 default_priority_urgent: Dringend
795 default_priority_immediate: Sofort
796 default_activity_design: Design
797 default_activity_development: Entwicklung
798
799 enumeration_issue_priorities: Ticket-Prioritäten
800 enumeration_doc_categories: Dokumentenkategorien
801 enumeration_activities: Aktivitäten (Zeiterfassung)
802 field_editable: Editable
803 label_display: Display
804 button_create_and_continue: Create and continue
805 text_custom_field_possible_values_info: 'One line for each value'
806 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
This diff has been collapsed as it changes many lines, (1484 lines changed) Show them Hide them
@@ -1,712 +1,776
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 en:
2 date:
3 formats:
4 # Use the strftime parameters for formats.
5 # When no format has been given, it uses default.
6 # You can provide other formats here if you like!
7 default: "%Y-%m-%d"
8 short: "%b %d"
9 long: "%B %d, %Y"
10
11 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
12 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
13
14 # Don't forget the nil at the beginning; there's no such thing as a 0th month
15 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
16 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
17 # Used in date_select and datime_select.
18 order: [ :year, :month, :day ]
2 19
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
20 time:
21 formats:
22 default: "%a, %d %b %Y %H:%M:%S %z"
23 short: "%d %b %H:%M"
24 long: "%B %d, %Y %H:%M"
25 am: "am"
26 pm: "pm"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: "half a minute"
31 less_than_x_seconds:
32 one: "less than 1 second"
33 other: "less than {{count}} seconds"
34 x_seconds:
35 one: "1 second"
36 other: "{{count}} seconds"
37 less_than_x_minutes:
38 one: "less than a minute"
39 other: "less than {{count}} minutes"
40 x_minutes:
41 one: "1 minute"
42 other: "{{count}} minutes"
43 about_x_hours:
44 one: "about 1 hour"
45 other: "about {{count}} hours"
46 x_days:
47 one: "1 day"
48 other: "{{count}} days"
49 about_x_months:
50 one: "about 1 month"
51 other: "about {{count}} months"
52 x_months:
53 one: "1 month"
54 other: "{{count}} months"
55 about_x_years:
56 one: "about 1 year"
57 other: "about {{count}} years"
58 over_x_years:
59 one: "over 1 year"
60 other: "over {{count}} years"
61
62 # Used in array.to_sentence.
63 support:
64 array:
65 sentence_connector: "and"
66 skip_last_comma: false
67
68 activerecord:
69 errors:
70 messages:
71 inclusion: "is not included in the list"
72 exclusion: "is reserved"
73 invalid: "is invalid"
74 confirmation: "doesn't match confirmation"
75 accepted: "must be accepted"
76 empty: "can't be empty"
77 blank: "can't be blank"
78 too_long: "is too long"
79 too_short: "is too short"
80 wrong_length: "is the wrong length"
81 taken: "has already been taken"
82 not_a_number: "is not a number"
83 not_a_date: "is not a valid date"
84 greater_than: "must be greater than {{count}}"
85 greater_than_or_equal_to: "must be greater than or equal to {{count}}"
86 equal_to: "must be equal to {{count}}"
87 less_than: "must be less than {{count}}"
88 less_than_or_equal_to: "must be less than or equal to {{count}}"
89 odd: "must be odd"
90 even: "must be even"
91 greater_than_start_date: "must be greater than start date"
92 not_same_project: "doesn't belong to the same project"
93 circular_dependency: "This relation would create a circular dependency"
21 94
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
38
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 general_text_No: 'No'
46 general_text_Yes: 'Yes'
47 general_text_no: 'no'
48 general_text_yes: 'yes'
49 general_lang_name: 'English'
50 general_csv_separator: ','
51 general_csv_decimal_separator: '.'
52 general_csv_encoding: ISO-8859-1
53 general_pdf_encoding: ISO-8859-1
54 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
55 general_first_day_of_week: '7'
56
57 notice_account_updated: Account was successfully updated.
58 notice_account_invalid_creditentials: Invalid user or password
59 notice_account_password_updated: Password was successfully updated.
60 notice_account_wrong_password: Wrong password
61 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
62 notice_account_unknown_email: Unknown user.
63 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
64 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
65 notice_account_activated: Your account has been activated. You can now log in.
66 notice_successful_create: Successful creation.
67 notice_successful_update: Successful update.
68 notice_successful_delete: Successful deletion.
69 notice_successful_connection: Successful connection.
70 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
71 notice_locking_conflict: Data has been updated by another user.
72 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
75 notice_feeds_access_key_reseted: Your RSS access key was reset.
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
78 notice_account_pending: "Your account was created and is now pending administrator approval."
79 notice_default_data_loaded: Default configuration successfully loaded.
80 notice_unable_delete_version: Unable to delete version.
81
82 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
83 error_scm_not_found: "The entry or revision was not found in the repository."
84 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
85 error_scm_annotate: "The entry does not exist or can not be annotated."
86 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
87
88 warning_attachments_not_saved: "%d file(s) could not be saved."
89
90 mail_subject_lost_password: Your %s password
91 mail_body_lost_password: 'To change your password, click on the following link:'
92 mail_subject_register: Your %s account activation
93 mail_body_register: 'To activate your account, click on the following link:'
94 mail_body_account_information_external: You can use your "%s" account to log in.
95 mail_body_account_information: Your account information
96 mail_subject_account_activation_request: %s account activation request
97 mail_body_account_activation_request: 'A new user (%s) has registered. The account is pending your approval:'
98 mail_subject_reminder: "%d issue(s) due in the next days"
99 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
100
101 gui_validation_error: 1 error
102 gui_validation_error_plural: %d errors
103
104 field_name: Name
105 field_description: Description
106 field_summary: Summary
107 field_is_required: Required
108 field_firstname: Firstname
109 field_lastname: Lastname
110 field_mail: Email
111 field_filename: File
112 field_filesize: Size
113 field_downloads: Downloads
114 field_author: Author
115 field_created_on: Created
116 field_updated_on: Updated
117 field_field_format: Format
118 field_is_for_all: For all projects
119 field_possible_values: Possible values
120 field_regexp: Regular expression
121 field_min_length: Minimum length
122 field_max_length: Maximum length
123 field_value: Value
124 field_category: Category
125 field_title: Title
126 field_project: Project
127 field_issue: Issue
128 field_status: Status
129 field_notes: Notes
130 field_is_closed: Issue closed
131 field_is_default: Default value
132 field_tracker: Tracker
133 field_subject: Subject
134 field_due_date: Due date
135 field_assigned_to: Assigned to
136 field_priority: Priority
137 field_fixed_version: Target version
138 field_user: User
139 field_role: Role
140 field_homepage: Homepage
141 field_is_public: Public
142 field_parent: Subproject of
143 field_is_in_chlog: Issues displayed in changelog
144 field_is_in_roadmap: Issues displayed in roadmap
145 field_login: Login
146 field_mail_notification: Email notifications
147 field_admin: Administrator
148 field_last_login_on: Last connection
149 field_language: Language
150 field_identity_url: OpenID URL
151 field_effective_date: Date
152 field_password: Password
153 field_new_password: New password
154 field_password_confirmation: Confirmation
155 field_version: Version
156 field_type: Type
157 field_host: Host
158 field_port: Port
159 field_account: Account
160 field_base_dn: Base DN
161 field_attr_login: Login attribute
162 field_attr_firstname: Firstname attribute
163 field_attr_lastname: Lastname attribute
164 field_attr_mail: Email attribute
165 field_onthefly: On-the-fly user creation
166 field_start_date: Start
167 field_done_ratio: %% Done
168 field_auth_source: Authentication mode
169 field_hide_mail: Hide my email address
170 field_comments: Comment
171 field_url: URL
172 field_start_page: Start page
173 field_subproject: Subproject
174 field_hours: Hours
175 field_activity: Activity
176 field_spent_on: Date
177 field_identifier: Identifier
178 field_is_filter: Used as a filter
179 field_issue_to_id: Related issue
180 field_delay: Delay
181 field_assignable: Issues can be assigned to this role
182 field_redirect_existing_links: Redirect existing links
183 field_estimated_hours: Estimated time
184 field_column_names: Columns
185 field_time_zone: Time zone
186 field_searchable: Searchable
187 field_default_value: Default value
188 field_comments_sorting: Display comments
189 field_parent_title: Parent page
190 field_editable: Editable
191 field_watcher: Watcher
192
193 setting_app_title: Application title
194 setting_app_subtitle: Application subtitle
195 setting_welcome_text: Welcome text
196 setting_default_language: Default language
197 setting_login_required: Authentication required
198 setting_self_registration: Self-registration
199 setting_attachment_max_size: Attachment max. size
200 setting_issues_export_limit: Issues export limit
201 setting_mail_from: Emission email address
202 setting_bcc_recipients: Blind carbon copy recipients (bcc)
203 setting_plain_text_mail: Plain text mail (no HTML)
204 setting_host_name: Host name and path
205 setting_text_formatting: Text formatting
206 setting_wiki_compression: Wiki history compression
207 setting_feeds_limit: Feed content limit
208 setting_default_projects_public: New projects are public by default
209 setting_autofetch_changesets: Autofetch commits
210 setting_sys_api_enabled: Enable WS for repository management
211 setting_commit_ref_keywords: Referencing keywords
212 setting_commit_fix_keywords: Fixing keywords
213 setting_autologin: Autologin
214 setting_date_format: Date format
215 setting_time_format: Time format
216 setting_cross_project_issue_relations: Allow cross-project issue relations
217 setting_issue_list_default_columns: Default columns displayed on the issue list
218 setting_repositories_encodings: Repositories encodings
219 setting_commit_logs_encoding: Commit messages encoding
220 setting_emails_footer: Emails footer
221 setting_protocol: Protocol
222 setting_per_page_options: Objects per page options
223 setting_user_format: Users display format
224 setting_activity_days_default: Days displayed on project activity
225 setting_display_subprojects_issues: Display subprojects issues on main projects by default
226 setting_enabled_scm: Enabled SCM
227 setting_mail_handler_api_enabled: Enable WS for incoming emails
228 setting_mail_handler_api_key: API key
229 setting_sequential_project_identifiers: Generate sequential project identifiers
230 setting_gravatar_enabled: Use Gravatar user icons
231 setting_diff_max_lines_displayed: Max number of diff lines displayed
232 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
233 setting_openid: Allow OpenID login and registration
234
235 permission_edit_project: Edit project
236 permission_select_project_modules: Select project modules
237 permission_manage_members: Manage members
238 permission_manage_versions: Manage versions
239 permission_manage_categories: Manage issue categories
240 permission_add_issues: Add issues
241 permission_edit_issues: Edit issues
242 permission_manage_issue_relations: Manage issue relations
243 permission_add_issue_notes: Add notes
244 permission_edit_issue_notes: Edit notes
245 permission_edit_own_issue_notes: Edit own notes
246 permission_move_issues: Move issues
247 permission_delete_issues: Delete issues
248 permission_manage_public_queries: Manage public queries
249 permission_save_queries: Save queries
250 permission_view_gantt: View gantt chart
251 permission_view_calendar: View calender
252 permission_view_issue_watchers: View watchers list
253 permission_add_issue_watchers: Add watchers
254 permission_log_time: Log spent time
255 permission_view_time_entries: View spent time
256 permission_edit_time_entries: Edit time logs
257 permission_edit_own_time_entries: Edit own time logs
258 permission_manage_news: Manage news
259 permission_comment_news: Comment news
260 permission_manage_documents: Manage documents
261 permission_view_documents: View documents
262 permission_manage_files: Manage files
263 permission_view_files: View files
264 permission_manage_wiki: Manage wiki
265 permission_rename_wiki_pages: Rename wiki pages
266 permission_delete_wiki_pages: Delete wiki pages
267 permission_view_wiki_pages: View wiki
268 permission_view_wiki_edits: View wiki history
269 permission_edit_wiki_pages: Edit wiki pages
270 permission_delete_wiki_pages_attachments: Delete attachments
271 permission_protect_wiki_pages: Protect wiki pages
272 permission_manage_repository: Manage repository
273 permission_browse_repository: Browse repository
274 permission_view_changesets: View changesets
275 permission_commit_access: Commit access
276 permission_manage_boards: Manage boards
277 permission_view_messages: View messages
278 permission_add_messages: Post messages
279 permission_edit_messages: Edit messages
280 permission_edit_own_messages: Edit own messages
281 permission_delete_messages: Delete messages
282 permission_delete_own_messages: Delete own messages
283
284 project_module_issue_tracking: Issue tracking
285 project_module_time_tracking: Time tracking
286 project_module_news: News
287 project_module_documents: Documents
288 project_module_files: Files
289 project_module_wiki: Wiki
290 project_module_repository: Repository
291 project_module_boards: Boards
292
293 label_user: User
294 label_user_plural: Users
295 label_user_new: New user
296 label_project: Project
297 label_project_new: New project
298 label_project_plural: Projects
299 label_project_all: All Projects
300 label_project_latest: Latest projects
301 label_issue: Issue
302 label_issue_new: New issue
303 label_issue_plural: Issues
304 label_issue_view_all: View all issues
305 label_issues_by: Issues by %s
306 label_issue_added: Issue added
307 label_issue_updated: Issue updated
308 label_document: Document
309 label_document_new: New document
310 label_document_plural: Documents
311 label_document_added: Document added
312 label_role: Role
313 label_role_plural: Roles
314 label_role_new: New role
315 label_role_and_permissions: Roles and permissions
316 label_member: Member
317 label_member_new: New member
318 label_member_plural: Members
319 label_tracker: Tracker
320 label_tracker_plural: Trackers
321 label_tracker_new: New tracker
322 label_workflow: Workflow
323 label_issue_status: Issue status
324 label_issue_status_plural: Issue statuses
325 label_issue_status_new: New status
326 label_issue_category: Issue category
327 label_issue_category_plural: Issue categories
328 label_issue_category_new: New category
329 label_custom_field: Custom field
330 label_custom_field_plural: Custom fields
331 label_custom_field_new: New custom field
332 label_enumerations: Enumerations
333 label_enumeration_new: New value
334 label_information: Information
335 label_information_plural: Information
336 label_please_login: Please log in
337 label_register: Register
338 label_login_with_open_id_option: or login with OpenID
339 label_password_lost: Lost password
340 label_home: Home
341 label_my_page: My page
342 label_my_account: My account
343 label_my_projects: My projects
344 label_administration: Administration
345 label_login: Sign in
346 label_logout: Sign out
347 label_help: Help
348 label_reported_issues: Reported issues
349 label_assigned_to_me_issues: Issues assigned to me
350 label_last_login: Last connection
351 label_last_updates: Last updated
352 label_last_updates_plural: %d last updated
353 label_registered_on: Registered on
354 label_activity: Activity
355 label_overall_activity: Overall activity
356 label_user_activity: "%s's activity"
357 label_new: New
358 label_logged_as: Logged in as
359 label_environment: Environment
360 label_authentication: Authentication
361 label_auth_source: Authentication mode
362 label_auth_source_new: New authentication mode
363 label_auth_source_plural: Authentication modes
364 label_subproject_plural: Subprojects
365 label_and_its_subprojects: %s and its subprojects
366 label_min_max_length: Min - Max length
367 label_list: List
368 label_date: Date
369 label_integer: Integer
370 label_float: Float
371 label_boolean: Boolean
372 label_string: Text
373 label_text: Long text
374 label_attribute: Attribute
375 label_attribute_plural: Attributes
376 label_download: %d Download
377 label_download_plural: %d Downloads
378 label_no_data: No data to display
379 label_change_status: Change status
380 label_history: History
381 label_attachment: File
382 label_attachment_new: New file
383 label_attachment_delete: Delete file
384 label_attachment_plural: Files
385 label_file_added: File added
386 label_report: Report
387 label_report_plural: Reports
388 label_news: News
389 label_news_new: Add news
390 label_news_plural: News
391 label_news_latest: Latest news
392 label_news_view_all: View all news
393 label_news_added: News added
394 label_change_log: Change log
395 label_settings: Settings
396 label_overview: Overview
397 label_version: Version
398 label_version_new: New version
399 label_version_plural: Versions
400 label_confirmation: Confirmation
401 label_export_to: 'Also available in:'
402 label_read: Read...
403 label_public_projects: Public projects
404 label_open_issues: open
405 label_open_issues_plural: open
406 label_closed_issues: closed
407 label_closed_issues_plural: closed
408 label_total: Total
409 label_permissions: Permissions
410 label_current_status: Current status
411 label_new_statuses_allowed: New statuses allowed
412 label_all: all
413 label_none: none
414 label_nobody: nobody
415 label_next: Next
416 label_previous: Previous
417 label_used_by: Used by
418 label_details: Details
419 label_add_note: Add a note
420 label_per_page: Per page
421 label_calendar: Calendar
422 label_months_from: months from
423 label_gantt: Gantt
424 label_internal: Internal
425 label_last_changes: last %d changes
426 label_change_view_all: View all changes
427 label_personalize_page: Personalize this page
428 label_comment: Comment
429 label_comment_plural: Comments
430 label_comment_add: Add a comment
431 label_comment_added: Comment added
432 label_comment_delete: Delete comments
433 label_query: Custom query
434 label_query_plural: Custom queries
435 label_query_new: New query
436 label_filter_add: Add filter
437 label_filter_plural: Filters
438 label_equals: is
439 label_not_equals: is not
440 label_in_less_than: in less than
441 label_in_more_than: in more than
442 label_in: in
443 label_today: today
444 label_all_time: all time
445 label_yesterday: yesterday
446 label_this_week: this week
447 label_last_week: last week
448 label_last_n_days: last %d days
449 label_this_month: this month
450 label_last_month: last month
451 label_this_year: this year
452 label_date_range: Date range
453 label_less_than_ago: less than days ago
454 label_more_than_ago: more than days ago
455 label_ago: days ago
456 label_contains: contains
457 label_not_contains: doesn't contain
458 label_day_plural: days
459 label_repository: Repository
460 label_repository_plural: Repositories
461 label_browse: Browse
462 label_modification: %d change
463 label_modification_plural: %d changes
464 label_revision: Revision
465 label_revision_plural: Revisions
466 label_associated_revisions: Associated revisions
467 label_added: added
468 label_modified: modified
469 label_copied: copied
470 label_renamed: renamed
471 label_deleted: deleted
472 label_latest_revision: Latest revision
473 label_latest_revision_plural: Latest revisions
474 label_view_revisions: View revisions
475 label_max_size: Maximum size
476 label_on: 'on'
477 label_sort_highest: Move to top
478 label_sort_higher: Move up
479 label_sort_lower: Move down
480 label_sort_lowest: Move to bottom
481 label_roadmap: Roadmap
482 label_roadmap_due_in: Due in %s
483 label_roadmap_overdue: %s late
484 label_roadmap_no_issues: No issues for this version
485 label_search: Search
486 label_result_plural: Results
487 label_all_words: All words
488 label_wiki: Wiki
489 label_wiki_edit: Wiki edit
490 label_wiki_edit_plural: Wiki edits
491 label_wiki_page: Wiki page
492 label_wiki_page_plural: Wiki pages
493 label_index_by_title: Index by title
494 label_index_by_date: Index by date
495 label_current_version: Current version
496 label_preview: Preview
497 label_feed_plural: Feeds
498 label_changes_details: Details of all changes
499 label_issue_tracking: Issue tracking
500 label_spent_time: Spent time
501 label_f_hour: %.2f hour
502 label_f_hour_plural: %.2f hours
503 label_time_tracking: Time tracking
504 label_change_plural: Changes
505 label_statistics: Statistics
506 label_commits_per_month: Commits per month
507 label_commits_per_author: Commits per author
508 label_view_diff: View differences
509 label_diff_inline: inline
510 label_diff_side_by_side: side by side
511 label_options: Options
512 label_copy_workflow_from: Copy workflow from
513 label_permissions_report: Permissions report
514 label_watched_issues: Watched issues
515 label_related_issues: Related issues
516 label_applied_status: Applied status
517 label_loading: Loading...
518 label_relation_new: New relation
519 label_relation_delete: Delete relation
520 label_relates_to: related to
521 label_duplicates: duplicates
522 label_duplicated_by: duplicated by
523 label_blocks: blocks
524 label_blocked_by: blocked by
525 label_precedes: precedes
526 label_follows: follows
527 label_end_to_start: end to start
528 label_end_to_end: end to end
529 label_start_to_start: start to start
530 label_start_to_end: start to end
531 label_stay_logged_in: Stay logged in
532 label_disabled: disabled
533 label_show_completed_versions: Show completed versions
534 label_me: me
535 label_board: Forum
536 label_board_new: New forum
537 label_board_plural: Forums
538 label_topic_plural: Topics
539 label_message_plural: Messages
540 label_message_last: Last message
541 label_message_new: New message
542 label_message_posted: Message added
543 label_reply_plural: Replies
544 label_send_information: Send account information to the user
545 label_year: Year
546 label_month: Month
547 label_week: Week
548 label_date_from: From
549 label_date_to: To
550 label_language_based: Based on user's language
551 label_sort_by: Sort by %s
552 label_send_test_email: Send a test email
553 label_feeds_access_key_created_on: RSS access key created %s ago
554 label_module_plural: Modules
555 label_added_time_by: Added by %s %s ago
556 label_updated_time_by: Updated by %s %s ago
557 label_updated_time: Updated %s ago
558 label_jump_to_a_project: Jump to a project...
559 label_file_plural: Files
560 label_changeset_plural: Changesets
561 label_default_columns: Default columns
562 label_no_change_option: (No change)
563 label_bulk_edit_selected_issues: Bulk edit selected issues
564 label_theme: Theme
565 label_default: Default
566 label_search_titles_only: Search titles only
567 label_user_mail_option_all: "For any event on all my projects"
568 label_user_mail_option_selected: "For any event on the selected projects only..."
569 label_user_mail_option_none: "Only for things I watch or I'm involved in"
570 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
571 label_registration_activation_by_email: account activation by email
572 label_registration_manual_activation: manual account activation
573 label_registration_automatic_activation: automatic account activation
574 label_display_per_page: 'Per page: %s'
575 label_age: Age
576 label_change_properties: Change properties
577 label_general: General
578 label_more: More
579 label_scm: SCM
580 label_plugins: Plugins
581 label_ldap_authentication: LDAP authentication
582 label_downloads_abbr: D/L
583 label_optional_description: Optional description
584 label_add_another_file: Add another file
585 label_preferences: Preferences
586 label_chronological_order: In chronological order
587 label_reverse_chronological_order: In reverse chronological order
588 label_planning: Planning
589 label_incoming_emails: Incoming emails
590 label_generate_key: Generate a key
591 label_issue_watchers: Watchers
592 label_example: Example
593 label_display: Display
594
595 button_login: Login
596 button_submit: Submit
597 button_save: Save
598 button_check_all: Check all
599 button_uncheck_all: Uncheck all
600 button_delete: Delete
601 button_create: Create
602 button_create_and_continue: Create and continue
603 button_test: Test
604 button_edit: Edit
605 button_add: Add
606 button_change: Change
607 button_apply: Apply
608 button_clear: Clear
609 button_lock: Lock
610 button_unlock: Unlock
611 button_download: Download
612 button_list: List
613 button_view: View
614 button_move: Move
615 button_back: Back
616 button_cancel: Cancel
617 button_activate: Activate
618 button_sort: Sort
619 button_log_time: Log time
620 button_rollback: Rollback to this version
621 button_watch: Watch
622 button_unwatch: Unwatch
623 button_reply: Reply
624 button_archive: Archive
625 button_unarchive: Unarchive
626 button_reset: Reset
627 button_rename: Rename
628 button_change_password: Change password
629 button_copy: Copy
630 button_annotate: Annotate
631 button_update: Update
632 button_configure: Configure
633 button_quote: Quote
634
635 status_active: active
636 status_registered: registered
637 status_locked: locked
638
639 text_select_mail_notifications: Select actions for which email notifications should be sent.
640 text_regexp_info: eg. ^[A-Z0-9]+$
641 text_min_max_length_info: 0 means no restriction
642 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
643 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
644 text_workflow_edit: Select a role and a tracker to edit the workflow
645 text_are_you_sure: Are you sure ?
646 text_journal_changed: changed from %s to %s
647 text_journal_set_to: set to %s
648 text_journal_deleted: deleted
649 text_tip_task_begin_day: task beginning this day
650 text_tip_task_end_day: task ending this day
651 text_tip_task_begin_end_day: task beginning and ending this day
652 text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.'
653 text_caracters_maximum: %d characters maximum.
654 text_caracters_minimum: Must be at least %d characters long.
655 text_length_between: Length between %d and %d characters.
656 text_tracker_no_workflow: No workflow defined for this tracker
657 text_unallowed_characters: Unallowed characters
658 text_comma_separated: Multiple values allowed (comma separated).
659 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
660 text_issue_added: Issue %s has been reported by %s.
661 text_issue_updated: Issue %s has been updated by %s.
662 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
663 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
664 text_issue_category_destroy_assignments: Remove category assignments
665 text_issue_category_reassign_to: Reassign issues to this category
666 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)."
667 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."
668 text_load_default_configuration: Load the default configuration
669 text_status_changed_by_changeset: Applied in changeset %s.
670 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
671 text_select_project_modules: 'Select modules to enable for this project:'
672 text_default_administrator_account_changed: Default administrator account changed
673 text_file_repository_writable: Attachments directory writable
674 text_plugin_assets_writable: Plugin assets directory writable
675 text_rmagick_available: RMagick available (optional)
676 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
677 text_destroy_time_entries: Delete reported hours
678 text_assign_time_entries_to_project: Assign reported hours to the project
679 text_reassign_time_entries: 'Reassign reported hours to this issue:'
680 text_user_wrote: '%s wrote:'
681 text_enumeration_destroy_question: '%d objects are assigned to this value.'
682 text_enumeration_category_reassign_to: 'Reassign them to this value:'
683 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
684 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."
685 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
686 text_custom_field_possible_values_info: 'One line for each value'
687
688 default_role_manager: Manager
689 default_role_developper: Developer
690 default_role_reporter: Reporter
691 default_tracker_bug: Bug
692 default_tracker_feature: Feature
693 default_tracker_support: Support
694 default_issue_status_new: New
695 default_issue_status_assigned: Assigned
696 default_issue_status_resolved: Resolved
697 default_issue_status_feedback: Feedback
698 default_issue_status_closed: Closed
699 default_issue_status_rejected: Rejected
700 default_doc_category_user: User documentation
701 default_doc_category_tech: Technical documentation
702 default_priority_low: Low
703 default_priority_normal: Normal
704 default_priority_high: High
705 default_priority_urgent: Urgent
706 default_priority_immediate: Immediate
707 default_activity_design: Design
708 default_activity_development: Development
709
710 enumeration_issue_priorities: Issue priorities
711 enumeration_doc_categories: Document categories
712 enumeration_activities: Activities (time tracking)
95 actionview_instancetag_blank_option: Please select
96
97 general_text_No: 'No'
98 general_text_Yes: 'Yes'
99 general_text_no: 'no'
100 general_text_yes: 'yes'
101 general_lang_name: 'English'
102 general_csv_separator: ','
103 general_csv_decimal_separator: '.'
104 general_csv_encoding: ISO-8859-1
105 general_pdf_encoding: ISO-8859-1
106 general_first_day_of_week: '7'
107
108 notice_account_updated: Account was successfully updated.
109 notice_account_invalid_creditentials: Invalid user or password
110 notice_account_password_updated: Password was successfully updated.
111 notice_account_wrong_password: Wrong password
112 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
113 notice_account_unknown_email: Unknown user.
114 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
115 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
116 notice_account_activated: Your account has been activated. You can now log in.
117 notice_successful_create: Successful creation.
118 notice_successful_update: Successful update.
119 notice_successful_delete: Successful deletion.
120 notice_successful_connection: Successful connection.
121 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
122 notice_locking_conflict: Data has been updated by another user.
123 notice_not_authorized: You are not authorized to access this page.
124 notice_email_sent: "An email was sent to {{value}}"
125 notice_email_error: "An error occurred while sending mail ({{value}})"
126 notice_feeds_access_key_reseted: Your RSS access key was reset.
127 notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}."
128 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
129 notice_account_pending: "Your account was created and is now pending administrator approval."
130 notice_default_data_loaded: Default configuration successfully loaded.
131 notice_unable_delete_version: Unable to delete version.
132
133 error_can_t_load_default_data: "Default configuration could not be loaded: {{value}}"
134 error_scm_not_found: "The entry or revision was not found in the repository."
135 error_scm_command_failed: "An error occurred when trying to access the repository: {{value}}"
136 error_scm_annotate: "The entry does not exist or can not be annotated."
137 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
138
139 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
140
141 mail_subject_lost_password: "Your {{value}} password"
142 mail_body_lost_password: 'To change your password, click on the following link:'
143 mail_subject_register: "Your {{value}} account activation"
144 mail_body_register: 'To activate your account, click on the following link:'
145 mail_body_account_information_external: "You can use your {{value}} account to log in."
146 mail_body_account_information: Your account information
147 mail_subject_account_activation_request: "{{value}} account activation request"
148 mail_body_account_activation_request: "A new user ({{value}}) has registered. The account is pending your approval:'"
149 mail_subject_reminder: "{{count}} issue(s) due in the next days"
150 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
151
152 gui_validation_error: 1 error
153 gui_validation_error_plural: "{{count}} errors"
154
155 field_name: Name
156 field_description: Description
157 field_summary: Summary
158 field_is_required: Required
159 field_firstname: Firstname
160 field_lastname: Lastname
161 field_mail: Email
162 field_filename: File
163 field_filesize: Size
164 field_downloads: Downloads
165 field_author: Author
166 field_created_on: Created
167 field_updated_on: Updated
168 field_field_format: Format
169 field_is_for_all: For all projects
170 field_possible_values: Possible values
171 field_regexp: Regular expression
172 field_min_length: Minimum length
173 field_max_length: Maximum length
174 field_value: Value
175 field_category: Category
176 field_title: Title
177 field_project: Project
178 field_issue: Issue
179 field_status: Status
180 field_notes: Notes
181 field_is_closed: Issue closed
182 field_is_default: Default value
183 field_tracker: Tracker
184 field_subject: Subject
185 field_due_date: Due date
186 field_assigned_to: Assigned to
187 field_priority: Priority
188 field_fixed_version: Target version
189 field_user: User
190 field_role: Role
191 field_homepage: Homepage
192 field_is_public: Public
193 field_parent: Subproject of
194 field_is_in_chlog: Issues displayed in changelog
195 field_is_in_roadmap: Issues displayed in roadmap
196 field_login: Login
197 field_mail_notification: Email notifications
198 field_admin: Administrator
199 field_last_login_on: Last connection
200 field_language: Language
201 field_effective_date: Date
202 field_password: Password
203 field_new_password: New password
204 field_password_confirmation: Confirmation
205 field_version: Version
206 field_type: Type
207 field_host: Host
208 field_port: Port
209 field_account: Account
210 field_base_dn: Base DN
211 field_attr_login: Login attribute
212 field_attr_firstname: Firstname attribute
213 field_attr_lastname: Lastname attribute
214 field_attr_mail: Email attribute
215 field_onthefly: On-the-fly user creation
216 field_start_date: Start
217 field_done_ratio: %% Done
218 field_auth_source: Authentication mode
219 field_hide_mail: Hide my email address
220 field_comments: Comment
221 field_url: URL
222 field_start_page: Start page
223 field_subproject: Subproject
224 field_hours: Hours
225 field_activity: Activity
226 field_spent_on: Date
227 field_identifier: Identifier
228 field_is_filter: Used as a filter
229 field_issue_to_id: Related issue
230 field_delay: Delay
231 field_assignable: Issues can be assigned to this role
232 field_redirect_existing_links: Redirect existing links
233 field_estimated_hours: Estimated time
234 field_column_names: Columns
235 field_time_zone: Time zone
236 field_searchable: Searchable
237 field_default_value: Default value
238 field_comments_sorting: Display comments
239 field_parent_title: Parent page
240 field_editable: Editable
241
242 setting_app_title: Application title
243 setting_app_subtitle: Application subtitle
244 setting_welcome_text: Welcome text
245 setting_default_language: Default language
246 setting_login_required: Authentication required
247 setting_self_registration: Self-registration
248 setting_attachment_max_size: Attachment max. size
249 setting_issues_export_limit: Issues export limit
250 setting_mail_from: Emission email address
251 setting_bcc_recipients: Blind carbon copy recipients (bcc)
252 setting_plain_text_mail: Plain text mail (no HTML)
253 setting_host_name: Host name and path
254 setting_text_formatting: Text formatting
255 setting_wiki_compression: Wiki history compression
256 setting_feeds_limit: Feed content limit
257 setting_default_projects_public: New projects are public by default
258 setting_autofetch_changesets: Autofetch commits
259 setting_sys_api_enabled: Enable WS for repository management
260 setting_commit_ref_keywords: Referencing keywords
261 setting_commit_fix_keywords: Fixing keywords
262 setting_autologin: Autologin
263 setting_date_format: Date format
264 setting_time_format: Time format
265 setting_cross_project_issue_relations: Allow cross-project issue relations
266 setting_issue_list_default_columns: Default columns displayed on the issue list
267 setting_repositories_encodings: Repositories encodings
268 setting_commit_logs_encoding: Commit messages encoding
269 setting_emails_footer: Emails footer
270 setting_protocol: Protocol
271 setting_per_page_options: Objects per page options
272 setting_user_format: Users display format
273 setting_activity_days_default: Days displayed on project activity
274 setting_display_subprojects_issues: Display subprojects issues on main projects by default
275 setting_enabled_scm: Enabled SCM
276 setting_mail_handler_api_enabled: Enable WS for incoming emails
277 setting_mail_handler_api_key: API key
278 setting_sequential_project_identifiers: Generate sequential project identifiers
279 setting_gravatar_enabled: Use Gravatar user icons
280 setting_diff_max_lines_displayed: Max number of diff lines displayed
281 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
282
283 permission_edit_project: Edit project
284 permission_select_project_modules: Select project modules
285 permission_manage_members: Manage members
286 permission_manage_versions: Manage versions
287 permission_manage_categories: Manage issue categories
288 permission_add_issues: Add issues
289 permission_edit_issues: Edit issues
290 permission_manage_issue_relations: Manage issue relations
291 permission_add_issue_notes: Add notes
292 permission_edit_issue_notes: Edit notes
293 permission_edit_own_issue_notes: Edit own notes
294 permission_move_issues: Move issues
295 permission_delete_issues: Delete issues
296 permission_manage_public_queries: Manage public queries
297 permission_save_queries: Save queries
298 permission_view_gantt: View gantt chart
299 permission_view_calendar: View calender
300 permission_view_issue_watchers: View watchers list
301 permission_add_issue_watchers: Add watchers
302 permission_log_time: Log spent time
303 permission_view_time_entries: View spent time
304 permission_edit_time_entries: Edit time logs
305 permission_edit_own_time_entries: Edit own time logs
306 permission_manage_news: Manage news
307 permission_comment_news: Comment news
308 permission_manage_documents: Manage documents
309 permission_view_documents: View documents
310 permission_manage_files: Manage files
311 permission_view_files: View files
312 permission_manage_wiki: Manage wiki
313 permission_rename_wiki_pages: Rename wiki pages
314 permission_delete_wiki_pages: Delete wiki pages
315 permission_view_wiki_pages: View wiki
316 permission_view_wiki_edits: View wiki history
317 permission_edit_wiki_pages: Edit wiki pages
318 permission_delete_wiki_pages_attachments: Delete attachments
319 permission_protect_wiki_pages: Protect wiki pages
320 permission_manage_repository: Manage repository
321 permission_browse_repository: Browse repository
322 permission_view_changesets: View changesets
323 permission_commit_access: Commit access
324 permission_manage_boards: Manage boards
325 permission_view_messages: View messages
326 permission_add_messages: Post messages
327 permission_edit_messages: Edit messages
328 permission_edit_own_messages: Edit own messages
329 permission_delete_messages: Delete messages
330 permission_delete_own_messages: Delete own messages
331
332 project_module_issue_tracking: Issue tracking
333 project_module_time_tracking: Time tracking
334 project_module_news: News
335 project_module_documents: Documents
336 project_module_files: Files
337 project_module_wiki: Wiki
338 project_module_repository: Repository
339 project_module_boards: Boards
340
341 label_user: User
342 label_user_plural: Users
343 label_user_new: New user
344 label_project: Project
345 label_project_new: New project
346 label_project_plural: Projects
347 label_x_projects:
348 zero: no projects
349 one: 1 project
350 other: "{{count}} projects"
351 label_project_all: All Projects
352 label_project_latest: Latest projects
353 label_issue: Issue
354 label_issue_new: New issue
355 label_issue_plural: Issues
356 label_issue_view_all: View all issues
357 label_issues_by: "Issues by {{value}}"
358 label_issue_added: Issue added
359 label_issue_updated: Issue updated
360 label_document: Document
361 label_document_new: New document
362 label_document_plural: Documents
363 label_document_added: Document added
364 label_role: Role
365 label_role_plural: Roles
366 label_role_new: New role
367 label_role_and_permissions: Roles and permissions
368 label_member: Member
369 label_member_new: New member
370 label_member_plural: Members
371 label_tracker: Tracker
372 label_tracker_plural: Trackers
373 label_tracker_new: New tracker
374 label_workflow: Workflow
375 label_issue_status: Issue status
376 label_issue_status_plural: Issue statuses
377 label_issue_status_new: New status
378 label_issue_category: Issue category
379 label_issue_category_plural: Issue categories
380 label_issue_category_new: New category
381 label_custom_field: Custom field
382 label_custom_field_plural: Custom fields
383 label_custom_field_new: New custom field
384 label_enumerations: Enumerations
385 label_enumeration_new: New value
386 label_information: Information
387 label_information_plural: Information
388 label_please_login: Please log in
389 label_register: Register
390 label_password_lost: Lost password
391 label_home: Home
392 label_my_page: My page
393 label_my_account: My account
394 label_my_projects: My projects
395 label_administration: Administration
396 label_login: Sign in
397 label_logout: Sign out
398 label_help: Help
399 label_reported_issues: Reported issues
400 label_assigned_to_me_issues: Issues assigned to me
401 label_last_login: Last connection
402 label_registered_on: Registered on
403 label_activity: Activity
404 label_overall_activity: Overall activity
405 label_user_activity: "{{value}}'s activity"
406 label_new: New
407 label_logged_as: Logged in as
408 label_environment: Environment
409 label_authentication: Authentication
410 label_auth_source: Authentication mode
411 label_auth_source_new: New authentication mode
412 label_auth_source_plural: Authentication modes
413 label_subproject_plural: Subprojects
414 label_and_its_subprojects: "{{value}} and its subprojects"
415 label_min_max_length: Min - Max length
416 label_list: List
417 label_date: Date
418 label_integer: Integer
419 label_float: Float
420 label_boolean: Boolean
421 label_string: Text
422 label_text: Long text
423 label_attribute: Attribute
424 label_attribute_plural: Attributes
425 label_download: "{{count}} Download"
426 label_download_plural: "{{count}} Downloads"
427 label_no_data: No data to display
428 label_change_status: Change status
429 label_history: History
430 label_attachment: File
431 label_attachment_new: New file
432 label_attachment_delete: Delete file
433 label_attachment_plural: Files
434 label_file_added: File added
435 label_report: Report
436 label_report_plural: Reports
437 label_news: News
438 label_news_new: Add news
439 label_news_plural: News
440 label_news_latest: Latest news
441 label_news_view_all: View all news
442 label_news_added: News added
443 label_change_log: Change log
444 label_settings: Settings
445 label_overview: Overview
446 label_version: Version
447 label_version_new: New version
448 label_version_plural: Versions
449 label_confirmation: Confirmation
450 label_export_to: 'Also available in:'
451 label_read: Read...
452 label_public_projects: Public projects
453 label_open_issues: open
454 label_open_issues_plural: open
455 label_closed_issues: closed
456 label_closed_issues_plural: closed
457 label_x_open_issues_abbr_on_total:
458 zero: 0 open / {{total}}
459 one: 1 open / {{total}}
460 other: "{{count}} open / {{total}}"
461 label_x_open_issues_abbr:
462 zero: 0 open
463 one: 1 open
464 other: "{{count}} open"
465 label_x_closed_issues_abbr:
466 zero: 0 closed
467 one: 1 closed
468 other: "{{count}} closed"
469 label_total: Total
470 label_permissions: Permissions
471 label_current_status: Current status
472 label_new_statuses_allowed: New statuses allowed
473 label_all: all
474 label_none: none
475 label_nobody: nobody
476 label_next: Next
477 label_previous: Previous
478 label_used_by: Used by
479 label_details: Details
480 label_add_note: Add a note
481 label_per_page: Per page
482 label_calendar: Calendar
483 label_months_from: months from
484 label_gantt: Gantt
485 label_internal: Internal
486 label_last_changes: "last {{count}} changes"
487 label_change_view_all: View all changes
488 label_personalize_page: Personalize this page
489 label_comment: Comment
490 label_comment_plural: Comments
491 label_x_comments:
492 zero: no comments
493 one: 1 comment
494 other: "{{count}} comments"
495 label_comment_add: Add a comment
496 label_comment_added: Comment added
497 label_comment_delete: Delete comments
498 label_query: Custom query
499 label_query_plural: Custom queries
500 label_query_new: New query
501 label_filter_add: Add filter
502 label_filter_plural: Filters
503 label_equals: is
504 label_not_equals: is not
505 label_in_less_than: in less than
506 label_in_more_than: in more than
507 label_in: in
508 label_today: today
509 label_all_time: all time
510 label_yesterday: yesterday
511 label_this_week: this week
512 label_last_week: last week
513 label_last_n_days: "last {{count}} days"
514 label_this_month: this month
515 label_last_month: last month
516 label_this_year: this year
517 label_date_range: Date range
518 label_less_than_ago: less than days ago
519 label_more_than_ago: more than days ago
520 label_ago: days ago
521 label_contains: contains
522 label_not_contains: doesn't contain
523 label_day_plural: days
524 label_repository: Repository
525 label_repository_plural: Repositories
526 label_browse: Browse
527 label_modification: "{{count}} change"
528 label_modification_plural: "{{count}} changes"
529 label_revision: Revision
530 label_revision_plural: Revisions
531 label_associated_revisions: Associated revisions
532 label_added: added
533 label_modified: modified
534 label_copied: copied
535 label_renamed: renamed
536 label_deleted: deleted
537 label_latest_revision: Latest revision
538 label_latest_revision_plural: Latest revisions
539 label_view_revisions: View revisions
540 label_max_size: Maximum size
541 label_sort_highest: Move to top
542 label_sort_higher: Move up
543 label_sort_lower: Move down
544 label_sort_lowest: Move to bottom
545 label_roadmap: Roadmap
546 label_roadmap_due_in: "Due in {{value}}"
547 label_roadmap_overdue: "{{value}} late"
548 label_roadmap_no_issues: No issues for this version
549 label_search: Search
550 label_result_plural: Results
551 label_all_words: All words
552 label_wiki: Wiki
553 label_wiki_edit: Wiki edit
554 label_wiki_edit_plural: Wiki edits
555 label_wiki_page: Wiki page
556 label_wiki_page_plural: Wiki pages
557 label_index_by_title: Index by title
558 label_index_by_date: Index by date
559 label_current_version: Current version
560 label_preview: Preview
561 label_feed_plural: Feeds
562 label_changes_details: Details of all changes
563 label_issue_tracking: Issue tracking
564 label_spent_time: Spent time
565 label_f_hour: "{{value}} hour"
566 label_f_hour_plural: "{{value}} hours"
567 label_time_tracking: Time tracking
568 label_change_plural: Changes
569 label_statistics: Statistics
570 label_commits_per_month: Commits per month
571 label_commits_per_author: Commits per author
572 label_view_diff: View differences
573 label_diff_inline: inline
574 label_diff_side_by_side: side by side
575 label_options: Options
576 label_copy_workflow_from: Copy workflow from
577 label_permissions_report: Permissions report
578 label_watched_issues: Watched issues
579 label_related_issues: Related issues
580 label_applied_status: Applied status
581 label_loading: Loading...
582 label_relation_new: New relation
583 label_relation_delete: Delete relation
584 label_relates_to: related to
585 label_duplicates: duplicates
586 label_duplicated_by: duplicated by
587 label_blocks: blocks
588 label_blocked_by: blocked by
589 label_precedes: precedes
590 label_follows: follows
591 label_end_to_start: end to start
592 label_end_to_end: end to end
593 label_start_to_start: start to start
594 label_start_to_end: start to end
595 label_stay_logged_in: Stay logged in
596 label_disabled: disabled
597 label_show_completed_versions: Show completed versions
598 label_me: me
599 label_board: Forum
600 label_board_new: New forum
601 label_board_plural: Forums
602 label_topic_plural: Topics
603 label_message_plural: Messages
604 label_message_last: Last message
605 label_message_new: New message
606 label_message_posted: Message added
607 label_reply_plural: Replies
608 label_send_information: Send account information to the user
609 label_year: Year
610 label_month: Month
611 label_week: Week
612 label_date_from: From
613 label_date_to: To
614 label_language_based: Based on user's language
615 label_sort_by: "Sort by {{value}}"
616 label_send_test_email: Send a test email
617 label_feeds_access_key_created_on: "RSS access key created {{value}} ago"
618 label_module_plural: Modules
619 label_added_time_by: "Added by {{author}} {{age}} ago"
620 label_updated_time_by: "Updated by {{author}} {{age}} ago"
621 label_updated_time: "Updated {{value}} ago"
622 label_jump_to_a_project: Jump to a project...
623 label_file_plural: Files
624 label_changeset_plural: Changesets
625 label_default_columns: Default columns
626 label_no_change_option: (No change)
627 label_bulk_edit_selected_issues: Bulk edit selected issues
628 label_theme: Theme
629 label_default: Default
630 label_search_titles_only: Search titles only
631 label_user_mail_option_all: "For any event on all my projects"
632 label_user_mail_option_selected: "For any event on the selected projects only..."
633 label_user_mail_option_none: "Only for things I watch or I'm involved in"
634 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
635 label_registration_activation_by_email: account activation by email
636 label_registration_manual_activation: manual account activation
637 label_registration_automatic_activation: automatic account activation
638 label_display_per_page: "Per page: {{value}}'"
639 label_age: Age
640 label_change_properties: Change properties
641 label_general: General
642 label_more: More
643 label_scm: SCM
644 label_plugins: Plugins
645 label_ldap_authentication: LDAP authentication
646 label_downloads_abbr: D/L
647 label_optional_description: Optional description
648 label_add_another_file: Add another file
649 label_preferences: Preferences
650 label_chronological_order: In chronological order
651 label_reverse_chronological_order: In reverse chronological order
652 label_planning: Planning
653 label_incoming_emails: Incoming emails
654 label_generate_key: Generate a key
655 label_issue_watchers: Watchers
656 label_example: Example
657 label_display: Display
658
659 button_login: Login
660 button_submit: Submit
661 button_save: Save
662 button_check_all: Check all
663 button_uncheck_all: Uncheck all
664 button_delete: Delete
665 button_create: Create
666 button_create_and_continue: Create and continue
667 button_test: Test
668 button_edit: Edit
669 button_add: Add
670 button_change: Change
671 button_apply: Apply
672 button_clear: Clear
673 button_lock: Lock
674 button_unlock: Unlock
675 button_download: Download
676 button_list: List
677 button_view: View
678 button_move: Move
679 button_back: Back
680 button_cancel: Cancel
681 button_activate: Activate
682 button_sort: Sort
683 button_log_time: Log time
684 button_rollback: Rollback to this version
685 button_watch: Watch
686 button_unwatch: Unwatch
687 button_reply: Reply
688 button_archive: Archive
689 button_unarchive: Unarchive
690 button_reset: Reset
691 button_rename: Rename
692 button_change_password: Change password
693 button_copy: Copy
694 button_annotate: Annotate
695 button_update: Update
696 button_configure: Configure
697 button_quote: Quote
698
699 status_active: active
700 status_registered: registered
701 status_locked: locked
702
703 text_select_mail_notifications: Select actions for which email notifications should be sent.
704 text_regexp_info: eg. ^[A-Z0-9]+$
705 text_min_max_length_info: 0 means no restriction
706 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
707 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
708 text_workflow_edit: Select a role and a tracker to edit the workflow
709 text_are_you_sure: Are you sure ?
710 text_journal_changed: "changed from {{old}} to {{new}}"
711 text_journal_set_to: "set to {{value}}"
712 text_journal_deleted: deleted
713 text_tip_task_begin_day: task beginning this day
714 text_tip_task_end_day: task ending this day
715 text_tip_task_begin_end_day: task beginning and ending this day
716 text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.'
717 text_caracters_maximum: "{{count}} characters maximum."
718 text_caracters_minimum: "Must be at least {{count}} characters long."
719 text_length_between: "Length between {{min}} and {{max}} characters."
720 text_tracker_no_workflow: No workflow defined for this tracker
721 text_unallowed_characters: Unallowed characters
722 text_comma_separated: Multiple values allowed (comma separated).
723 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
724 text_issue_added: "Issue {{id}} has been reported by {{author}}."
725 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
726 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
727 text_issue_category_destroy_question: "Some issues ({{count}}) are assigned to this category. What do you want to do ?"
728 text_issue_category_destroy_assignments: Remove category assignments
729 text_issue_category_reassign_to: Reassign issues to this category
730 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)."
731 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."
732 text_load_default_configuration: Load the default configuration
733 text_status_changed_by_changeset: "Applied in changeset {{value}}."
734 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
735 text_select_project_modules: 'Select modules to enable for this project:'
736 text_default_administrator_account_changed: Default administrator account changed
737 text_file_repository_writable: Attachments directory writable
738 text_plugin_assets_writable: Plugin assets directory writable
739 text_rmagick_available: RMagick available (optional)
740 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
741 text_destroy_time_entries: Delete reported hours
742 text_assign_time_entries_to_project: Assign reported hours to the project
743 text_reassign_time_entries: 'Reassign reported hours to this issue:'
744 text_user_wrote: "{{value}} wrote:'"
745 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
746 text_enumeration_category_reassign_to: 'Reassign them to this value:'
747 text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them."
748 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."
749 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
750 text_custom_field_possible_values_info: 'One line for each value'
751
752 default_role_manager: Manager
753 default_role_developper: Developer
754 default_role_reporter: Reporter
755 default_tracker_bug: Bug
756 default_tracker_feature: Feature
757 default_tracker_support: Support
758 default_issue_status_new: New
759 default_issue_status_assigned: Assigned
760 default_issue_status_resolved: Resolved
761 default_issue_status_feedback: Feedback
762 default_issue_status_closed: Closed
763 default_issue_status_rejected: Rejected
764 default_doc_category_user: User documentation
765 default_doc_category_tech: Technical documentation
766 default_priority_low: Low
767 default_priority_normal: Normal
768 default_priority_high: High
769 default_priority_urgent: Urgent
770 default_priority_immediate: Immediate
771 default_activity_design: Design
772 default_activity_development: Development
773
774 enumeration_issue_priorities: Issue priorities
775 enumeration_doc_categories: Document categories
776 enumeration_activities: Activities (time tracking)
1 NO CONTENT: file renamed from lang/fi.yml to config/locales/fi.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/fr.yml to config/locales/fr.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/he.yml to config/locales/he.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/hu.yml to config/locales/hu.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/it.yml to config/locales/it.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/ja.yml to config/locales/ja.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/lt.yml to config/locales/lt.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/nl.yml to config/locales/nl.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/no.yml to config/locales/no.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/pl.yml to config/locales/pl.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/pt-br.yml to config/locales/pt-BR.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/pt.yml to config/locales/pt.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/ro.yml to config/locales/ro.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/ru.yml to config/locales/ru.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/sk.yml to config/locales/sk.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/sl.yml to config/locales/sl.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/sr.yml to config/locales/sr.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/th.yml to config/locales/th.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/tr.yml to config/locales/tr.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/zh-tw.yml to config/locales/zh-TW.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/zh.yml to config/locales/zh.yml
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: file renamed from extra/sample_plugin/lang/en.yml to extra/sample_plugin/config/locales/en.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from extra/sample_plugin/lang/fr.yml to extra/sample_plugin/config/locales/fr.yml
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: file renamed from public/javascripts/calendar/lang/calendar-vn.js to public/javascripts/calendar/lang/calendar-vi.js
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: file renamed from public/javascripts/jstoolbar/lang/jstoolbar-vn.js to public/javascripts/jstoolbar/lang/jstoolbar-vi.js
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
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: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
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