##// 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
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
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
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
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
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
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
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
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
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 require 'cgi'
19 require 'cgi'
20
20
21 class ApplicationController < ActionController::Base
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 layout 'base'
29 layout 'base'
23
30
24 before_filter :user_setup, :check_if_login_required, :set_localization
31 before_filter :user_setup, :check_if_login_required, :set_localization
@@ -64,20 +71,18 class ApplicationController < ActionController::Base
64 end
71 end
65
72
66 def set_localization
73 def set_localization
67 User.current.language = nil unless User.current.logged?
74 lang = nil
68 lang = begin
75 if User.current.logged?
69 if !User.current.language.blank? && GLoc.valid_language?(User.current.language)
76 lang = find_language(User.current.language)
70 User.current.language
77 end
71 elsif request.env['HTTP_ACCEPT_LANGUAGE']
78 if lang.nil? && request.env['HTTP_ACCEPT_LANGUAGE']
72 accept_lang = parse_qvalues(request.env['HTTP_ACCEPT_LANGUAGE']).first.downcase
79 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))
80 if !accept_lang.blank?
74 User.current.language = accept_lang
81 lang = find_language(accept_lang) || find_language(accept_lang.split('-').first)
75 end
76 end
82 end
77 rescue
83 end
78 nil
84 lang ||= Setting.default_language
79 end || Setting.default_language
85 set_language_if_valid(lang)
80 set_language_if_valid(lang)
81 end
86 end
82
87
83 def require_login
88 def require_login
@@ -152,7 +157,7 class ApplicationController < ActionController::Base
152
157
153 def render_error(msg)
158 def render_error(msg)
154 flash.now[:error] = msg
159 flash.now[:error] = msg
155 render :nothing => true, :layout => !request.xhr?, :status => 500
160 render :text => '', :layout => !request.xhr?, :status => 500
156 end
161 end
157
162
158 def render_feed(items, options={})
163 def render_feed(items, options={})
@@ -225,6 +230,8 class ApplicationController < ActionController::Base
225 tmp.collect!{|val, q| val}
230 tmp.collect!{|val, q| val}
226 end
231 end
227 return tmp
232 return tmp
233 rescue
234 nil
228 end
235 end
229
236
230 # Returns a string that can be used as filename value in Content-Disposition header
237 # Returns a string that can be used as filename value in Content-Disposition header
@@ -258,7 +258,9 class IssuesController < ApplicationController
258 if unsaved_issue_ids.empty?
258 if unsaved_issue_ids.empty?
259 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
259 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
260 else
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 end
264 end
263 redirect_to(params[:back_to] || {:controller => 'issues', :action => 'index', :project_id => @project})
265 redirect_to(params[:back_to] || {:controller => 'issues', :action => 'index', :project_id => @project})
264 return
266 return
@@ -291,7 +293,9 class IssuesController < ApplicationController
291 if unsaved_issue_ids.empty?
293 if unsaved_issue_ids.empty?
292 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
294 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
293 else
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 end
299 end
296 redirect_to :controller => 'issues', :action => 'index', :project_id => @project
300 redirect_to :controller => 'issues', :action => 'index', :project_id => @project
297 return
301 return
@@ -238,8 +238,7 private
238 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
238 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
239
239
240 fields = []
240 fields = []
241 month_names = l(:actionview_datehelper_select_month_names_abbr).split(',')
241 12.times {|m| fields << month_name(((Date.today.month - 1 - m) % 12) + 1)}
242 12.times {|m| fields << month_names[((Date.today.month - 1 - m) % 12)]}
243
242
244 graph = SVG::Graph::Bar.new(
243 graph = SVG::Graph::Bar.new(
245 :height => 300,
244 :height => 300,
@@ -22,6 +22,7 require 'cgi'
22
22
23 module ApplicationHelper
23 module ApplicationHelper
24 include Redmine::WikiFormatting::Macros::Definitions
24 include Redmine::WikiFormatting::Macros::Definitions
25 include Redmine::I18n
25 include GravatarHelper::PublicMethods
26 include GravatarHelper::PublicMethods
26
27
27 extend Forwardable
28 extend Forwardable
@@ -89,26 +90,9 module ApplicationHelper
89 html_options[:onclick] = "promptToRemote('#{text}', '#{param}', '#{url_for(url)}'); return false;"
90 html_options[:onclick] = "promptToRemote('#{text}', '#{param}', '#{url_for(url)}'); return false;"
90 link_to name, {}, html_options
91 link_to name, {}, html_options
91 end
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 def format_activity_title(text)
94 def format_activity_title(text)
111 h(truncate_single_line(text, 100))
95 h(truncate_single_line(text, :length => 100))
112 end
96 end
113
97
114 def format_activity_day(date)
98 def format_activity_day(date)
@@ -116,14 +100,7 module ApplicationHelper
116 end
100 end
117
101
118 def format_activity_description(text)
102 def format_activity_description(text)
119 h(truncate(text.to_s, 120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...')).gsub(/[\r\n]+/, "<br />")
103 h(truncate(text.to_s, :length => 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)
127 end
104 end
128
105
129 def due_date_distance_in_words(date)
106 def due_date_distance_in_words(date)
@@ -235,20 +212,7 module ApplicationHelper
235 {:controller => 'projects', :action => 'activity', :id => @project, :from => created.to_date},
212 {:controller => 'projects', :action => 'activity', :id => @project, :from => created.to_date},
236 :title => format_time(created))
213 :title => format_time(created))
237 author_tag = (author.is_a?(User) && !author.anonymous?) ? link_to(h(author), :controller => 'account', :action => 'show', :id => author) : h(author || 'Anonymous')
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)
215 l(options[:label] || :label_added_time_by, :author => author_tag, :age => 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]
252 end
216 end
253
217
254 def syntax_highlight(name, content)
218 def syntax_highlight(name, content)
@@ -308,9 +272,9 module ApplicationHelper
308 end
272 end
309
273
310 def other_formats_links(&block)
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 yield Redmine::Views::OtherFormatsBuilder.new(self)
276 yield Redmine::Views::OtherFormatsBuilder.new(self)
313 concat('</p>', block.binding)
277 concat('</p>')
314 end
278 end
315
279
316 def page_header_title
280 def page_header_title
@@ -479,7 +443,7 module ApplicationHelper
479 if project && (changeset = project.changesets.find_by_revision(oid))
443 if project && (changeset = project.changesets.find_by_revision(oid))
480 link = link_to("r#{oid}", {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => oid},
444 link = link_to("r#{oid}", {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => oid},
481 :class => 'changeset',
445 :class => 'changeset',
482 :title => truncate_single_line(changeset.comments, 100))
446 :title => truncate_single_line(changeset.comments, :length => 100))
483 end
447 end
484 elsif sep == '#'
448 elsif sep == '#'
485 oid = oid.to_i
449 oid = oid.to_i
@@ -488,7 +452,7 module ApplicationHelper
488 if issue = Issue.find_by_id(oid, :include => [:project, :status], :conditions => Project.visible_by(User.current))
452 if issue = Issue.find_by_id(oid, :include => [:project, :status], :conditions => Project.visible_by(User.current))
489 link = link_to("##{oid}", {:only_path => only_path, :controller => 'issues', :action => 'show', :id => oid},
453 link = link_to("##{oid}", {:only_path => only_path, :controller => 'issues', :action => 'show', :id => oid},
490 :class => (issue.closed? ? 'issue closed' : 'issue'),
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 link = content_tag('del', link) if issue.closed?
456 link = content_tag('del', link) if issue.closed?
493 end
457 end
494 when 'document'
458 when 'document'
@@ -503,7 +467,7 module ApplicationHelper
503 end
467 end
504 when 'message'
468 when 'message'
505 if message = Message.find_by_id(oid, :include => [:parent, {:board => :project}], :conditions => Project.visible_by(User.current))
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 :controller => 'messages',
471 :controller => 'messages',
508 :action => 'show',
472 :action => 'show',
509 :board_id => message.board,
473 :board_id => message.board,
@@ -530,7 +494,7 module ApplicationHelper
530 if project && (changeset = project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
494 if project && (changeset = project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
531 link = link_to h("#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => changeset.revision},
495 link = link_to h("#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => changeset.revision},
532 :class => 'changeset',
496 :class => 'changeset',
533 :title => truncate_single_line(changeset.comments, 100)
497 :title => truncate_single_line(changeset.comments, :length => 100)
534 end
498 end
535 when 'source', 'export'
499 when 'source', 'export'
536 if project && project.repository
500 if project && project.repository
@@ -565,46 +529,9 module ApplicationHelper
565 gsub(/([^\n]\n)(?=[^\n])/, '\1<br />') # 1 newline -> br
529 gsub(/([^\n]\n)(?=[^\n])/, '\1<br />') # 1 newline -> br
566 end
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 def lang_options_for_select(blank=true)
532 def lang_options_for_select(blank=true)
606 (blank ? [["(auto)", ""]] : []) +
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 end
535 end
609
536
610 def label_tag_for(name, option_tags = nil, options = {})
537 def label_tag_for(name, option_tags = nil, options = {})
@@ -119,7 +119,7 module IssuesHelper
119 case detail.property
119 case detail.property
120 when 'attr', 'cf'
120 when 'attr', 'cf'
121 if !detail.old_value.blank?
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 else
123 else
124 label + " " + l(:text_journal_set_to, value)
124 label + " " + l(:text_journal_set_to, value)
125 end
125 end
@@ -19,7 +19,7 module MessagesHelper
19
19
20 def link_to_message(message)
20 def link_to_message(message)
21 return '' unless message
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 :action => 'show',
23 :action => 'show',
24 :board_id => message.board_id,
24 :board_id => message.board_id,
25 :id => message.root,
25 :id => message.root,
@@ -22,8 +22,8 module SettingsHelper
22 {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
22 {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
23 {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural},
23 {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural},
24 {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
24 {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
25 {:name => 'notifications', :partial => 'settings/notifications', :label => l(:field_mail_notification)},
25 {:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification},
26 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => l(:label_incoming_emails)},
26 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails},
27 {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
27 {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
28 ]
28 ]
29 end
29 end
@@ -109,7 +109,7 class Changeset < ActiveRecord::Base
109 if self.scmid && (! (csettext =~ /^r[0-9]+$/))
109 if self.scmid && (! (csettext =~ /^r[0-9]+$/))
110 csettext = "commit:\"#{self.scmid}\""
110 csettext = "commit:\"#{self.scmid}\""
111 end
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 issue.status = fix_status
113 issue.status = fix_status
114 issue.done_ratio = done_ratio if done_ratio
114 issue.done_ratio = done_ratio if done_ratio
115 issue.save
115 issue.save
@@ -48,14 +48,14 class CustomField < ActiveRecord::Base
48
48
49 def validate
49 def validate
50 if self.field_format == "list"
50 if self.field_format == "list"
51 errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty?
51 errors.add(:possible_values, :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
52 errors.add(:possible_values, :invalid) unless self.possible_values.is_a? Array
53 end
53 end
54
54
55 # validate default value
55 # validate default value
56 v = CustomValue.new(:custom_field => self.clone, :value => default_value, :customized => nil)
56 v = CustomValue.new(:custom_field => self.clone, :value => default_value, :customized => nil)
57 v.custom_field.is_required = false
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 end
59 end
60
60
61 # Makes possible_values accept a multiline string
61 # Makes possible_values accept a multiline string
@@ -45,22 +45,22 class CustomValue < ActiveRecord::Base
45 protected
45 protected
46 def validate
46 def validate
47 if value.blank?
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 else
49 else
50 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
50 errors.add(:value, :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
51 errors.add(:value, :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
52 errors.add(:value, :too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
53
53
54 # Format specific validations
54 # Format specific validations
55 case custom_field.field_format
55 case custom_field.field_format
56 when 'int'
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 when 'float'
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 when 'date'
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 when 'list'
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 end
64 end
65 end
65 end
66 end
66 end
@@ -129,20 +129,20 class Issue < ActiveRecord::Base
129
129
130 def validate
130 def validate
131 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
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 end
133 end
134
134
135 if self.due_date and self.start_date and self.due_date < self.start_date
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 end
137 end
138
138
139 if start_date && soonest_start && start_date < soonest_start
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 end
141 end
142 end
142 end
143
143
144 def validate_on_create
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 end
146 end
147
147
148 def before_create
148 def before_create
@@ -39,9 +39,9 class IssueRelation < ActiveRecord::Base
39
39
40 def validate
40 def validate
41 if issue_from && issue_to
41 if issue_from && issue_to
42 errors.add :issue_to_id, :activerecord_error_invalid if issue_from_id == issue_to_id
42 errors.add :issue_to_id, :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?
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 :activerecord_error_circular_dependency if issue_to.all_dependent_issues.include? issue_from
44 errors.add_to_base :circular_dependency if issue_to.all_dependent_issues.include? issue_from
45 end
45 end
46 end
46 end
47
47
@@ -236,4 +236,9 class MailHandler < ActionMailer::Base
236 end
236 end
237 @plain_text_body.strip!
237 @plain_text_body.strip!
238 end
238 end
239
240
241 def self.full_sanitizer
242 @full_sanitizer ||= HTML::FullSanitizer.new
243 end
239 end
244 end
@@ -21,6 +21,7 class Mailer < ActionMailer::Base
21 helper :custom_fields
21 helper :custom_fields
22
22
23 include ActionController::UrlWriter
23 include ActionController::UrlWriter
24 include Redmine::I18n
24
25
25 def issue_add(issue)
26 def issue_add(issue)
26 redmine_headers 'Project' => issue.project.identifier,
27 redmine_headers 'Project' => issue.project.identifier,
@@ -24,7 +24,7 class Member < ActiveRecord::Base
24 validates_uniqueness_of :user_id, :scope => :project_id
24 validates_uniqueness_of :user_id, :scope => :project_id
25
25
26 def validate
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 end
28 end
29
29
30 def name
30 def name
@@ -306,7 +306,7 class Project < ActiveRecord::Base
306
306
307 protected
307 protected
308 def validate
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 end
310 end
311
311
312 private
312 private
@@ -17,7 +17,7
17
17
18 class QueryColumn
18 class QueryColumn
19 attr_accessor :name, :sortable, :default_order
19 attr_accessor :name, :sortable, :default_order
20 include GLoc
20 include Redmine::I18n
21
21
22 def initialize(name, options={})
22 def initialize(name, options={})
23 self.name = name
23 self.name = name
@@ -26,7 +26,6 class QueryColumn
26 end
26 end
27
27
28 def caption
28 def caption
29 set_language_if_valid(User.current.language)
30 l("field_#{name}")
29 l("field_#{name}")
31 end
30 end
32 end
31 end
@@ -113,7 +112,6 class Query < ActiveRecord::Base
113 def initialize(attributes = nil)
112 def initialize(attributes = nil)
114 super attributes
113 super attributes
115 self.filters ||= { 'status_id' => {:operator => "o", :values => [""]} }
114 self.filters ||= { 'status_id' => {:operator => "o", :values => [""]} }
116 set_language_if_valid(User.current.language)
117 end
115 end
118
116
119 def after_initialize
117 def after_initialize
@@ -123,7 +121,7 class Query < ActiveRecord::Base
123
121
124 def validate
122 def validate
125 filters.each_key do |field|
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 # filter requires one or more values
125 # filter requires one or more values
128 (values_for(field) and !values_for(field).first.blank?) or
126 (values_for(field) and !values_for(field).first.blank?) or
129 # filter doesn't require any value
127 # filter doesn't require any value
@@ -25,7 +25,7 class Repository < ActiveRecord::Base
25 before_destroy :clear_changesets
25 before_destroy :clear_changesets
26
26
27 # Checks if the SCM is enabled when creating a repository
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 # Removes leading and trailing whitespace
30 # Removes leading and trailing whitespace
31 def url=(arg)
31 def url=(arg)
@@ -26,13 +26,13 class TimeEntry < ActiveRecord::Base
26 attr_protected :project_id, :user_id, :tyear, :tmonth, :tweek
26 attr_protected :project_id, :user_id, :tyear, :tmonth, :tweek
27
27
28 acts_as_customizable
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 :url => Proc.new {|o| {:controller => 'timelog', :action => 'details', :project_id => o.project}},
30 :url => Proc.new {|o| {:controller => 'timelog', :action => 'details', :project_id => o.project}},
31 :author => :user,
31 :author => :user,
32 :description => :comments
32 :description => :comments
33
33
34 validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
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 validates_length_of :comments, :maximum => 255, :allow_nil => true
36 validates_length_of :comments, :maximum => 255, :allow_nil => true
37
37
38 def after_initialize
38 def after_initialize
@@ -48,9 +48,9 class TimeEntry < ActiveRecord::Base
48 end
48 end
49
49
50 def validate
50 def validate
51 errors.add :hours, :activerecord_error_invalid if hours && (hours < 0 || hours >= 1000)
51 errors.add :hours, :invalid if hours && (hours < 0 || hours >= 1000)
52 errors.add :project_id, :activerecord_error_invalid if project.nil?
52 errors.add :project_id, :invalid if project.nil?
53 errors.add :issue_id, :activerecord_error_invalid if (issue_id && !issue) || (issue && project!=issue.project)
53 errors.add :issue_id, :invalid if (issue_id && !issue) || (issue && project!=issue.project)
54 end
54 end
55
55
56 def hours=(h)
56 def hours=(h)
@@ -25,7 +25,7 class Version < ActiveRecord::Base
25 validates_presence_of :name
25 validates_presence_of :name
26 validates_uniqueness_of :name, :scope => [:project_id]
26 validates_uniqueness_of :name, :scope => [:project_id]
27 validates_length_of :name, :maximum => 60
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 def start_date
30 def start_date
31 effective_date
31 effective_date
@@ -25,6 +25,6 class Watcher < ActiveRecord::Base
25 protected
25 protected
26
26
27 def validate
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 end
29 end
30 end
30 end
@@ -129,9 +129,9 class WikiPage < ActiveRecord::Base
129 protected
129 protected
130
130
131 def validate
131 def validate
132 errors.add(:parent_title, :activerecord_error_invalid) if !@parent_title.blank? && parent.nil?
132 errors.add(:parent_title, :invalid) if !@parent_title.blank? && parent.nil?
133 errors.add(:parent_title, :activerecord_error_circular_dependency) if parent && (parent == self || parent.ancestors.include?(self))
133 errors.add(:parent_title, :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)
134 errors.add(:parent_title, :not_same_project) if parent && (parent.wiki_id != wiki_id)
135 end
135 end
136 end
136 end
137
137
@@ -20,7 +20,7 while day <= calendar.enddt %>
20 image_tag('arrow_to.png')
20 image_tag('arrow_to.png')
21 end %>
21 end %>
22 <%= h("#{i.project} -") unless @project && @project == i.project %>
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 <span class="tip"><%= render_issue_tooltip i %></span>
24 <span class="tip"><%= render_issue_tooltip i %></span>
25 </div>
25 </div>
26 <% else %>
26 <% else %>
@@ -1,6 +1,6
1 xml.instruct!
1 xml.instruct!
2 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
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 xml.link "rel" => "self", "href" => url_for(params.merge({:format => nil, :only_path => false}))
4 xml.link "rel" => "self", "href" => url_for(params.merge({:format => nil, :only_path => false}))
5 xml.link "rel" => "alternate", "href" => url_for(:controller => 'welcome', :only_path => false)
5 xml.link "rel" => "alternate", "href" => url_for(:controller => 'welcome', :only_path => false)
6 xml.id url_for(:controller => 'welcome', :only_path => false)
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 xml.entry do
11 xml.entry do
12 url = url_for(item.event_url(:only_path => false))
12 url = url_for(item.event_url(:only_path => false))
13 if @project
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 else
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 end
17 end
18 xml.link "rel" => "alternate", "href" => url
18 xml.link "rel" => "alternate", "href" => url
19 xml.id url
19 xml.id url
@@ -35,7 +35,7
35 <td align="center"><%= image_tag 'true.png' if custom_field.is_required? %></td>
35 <td align="center"><%= image_tag 'true.png' if custom_field.is_required? %></td>
36 <% if tab[:name] == 'IssueCustomField' %>
36 <% if tab[:name] == 'IssueCustomField' %>
37 <td align="center"><%= image_tag 'true.png' if custom_field.is_for_all? %></td>
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 <% end %>
39 <% end %>
40 <td align="center" style="width:15%;">
40 <td align="center" style="width:15%;">
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) %>
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 <p><%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %><br />
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 <em><%= format_time(document.created_on) %></em></p> No newline at end of file
3 <em><%= format_time(document.created_on) %></em></p>
@@ -10,7 +10,7
10 <table style="width:100%">
10 <table style="width:100%">
11 <% @issue.relations.select {|r| r.other_issue(@issue).visible? }.each do |relation| %>
11 <% @issue.relations.select {|r| r.other_issue(@issue).visible? }.each do |relation| %>
12 <tr>
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 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue relation.other_issue(@issue) %></td>
14 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue relation.other_issue(@issue) %></td>
15 <td><%=h relation.other_issue(@issue).subject %></td>
15 <td><%=h relation.other_issue(@issue).subject %></td>
16 <td><%= relation.other_issue(@issue).status.name %></td>
16 <td><%= relation.other_issue(@issue).status.name %></td>
@@ -34,13 +34,13
34 <td class="category"><b><%=l(:field_category)%>:</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
34 <td class="category"><b><%=l(:field_category)%>:</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
35 <% if User.current.allowed_to?(:view_time_entries, @project) %>
35 <% if User.current.allowed_to?(:view_time_entries, @project) %>
36 <td class="spent-time"><b><%=l(:label_spent_time)%>:</b></td>
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 <% end %>
38 <% end %>
39 </tr>
39 </tr>
40 <tr>
40 <tr>
41 <td class="fixed-version"><b><%=l(:field_fixed_version)%>:</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
41 <td class="fixed-version"><b><%=l(:field_fixed_version)%>:</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
42 <% if @issue.estimated_hours %>
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 <% end %>
44 <% end %>
45 </tr>
45 </tr>
46 <tr>
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 <hr />
2 <hr />
3 <%= render :partial => "issue_text_html", :locals => { :issue => @issue, :issue_url => @issue_url } %>
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 <%= render :partial => "issue_text_plain", :locals => { :issue => @issue, :issue_url => @issue_url } %>
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 <ul>
3 <ul>
4 <% for detail in @journal.details %>
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 <% for detail in @journal.details -%>
3 <% for detail in @journal.details -%>
4 <%= show_detail(detail, true) %>
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 <ul>
3 <ul>
4 <% @issues.each do |issue| -%>
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 <% @issues.each do |issue| -%>
3 <% @issues.each do |issue| -%>
4 * <%= "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject}" %>
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 <% watched_issues = Issue.visible.find(:all,
3 <% watched_issues = Issue.visible.find(:all,
3 :include => [:status, :project, :tracker, :watchers],
4 :include => [:status, :project, :tracker, :watchers],
4 :limit => 10,
5 :limit => 10,
@@ -1,6 +1,6
1 <p><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless @project %>
1 <p><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless @project %>
2 <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
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 <br />
4 <br />
5 <% unless news.summary.blank? %><span class="summary"><%=h news.summary %></span><br /><% end %>
5 <% unless news.summary.blank? %><span class="summary"><%=h news.summary %></span><br /><% end %>
6 <span class="author"><%= authoring news.created_on, news.author %></span></p>
6 <span class="author"><%= authoring news.created_on, news.author %></span></p>
@@ -30,7 +30,7
30 <% @newss.each do |news| %>
30 <% @newss.each do |news| %>
31 <h3><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless news.project == @project %>
31 <h3><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless news.project == @project %>
32 <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
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 <p class="author"><%= authoring news.created_on, news.author %></p>
34 <p class="author"><%= authoring news.created_on, news.author %></p>
35 <div class="wiki">
35 <div class="wiki">
36 <%= textilizable(news.description) %>
36 <%= textilizable(news.description) %>
@@ -11,7 +11,7
11 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
11 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
12 <p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen? %>
12 <p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen? %>
13 <% unless @project.identifier_frozen? %>
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 <% end %></p>
15 <% end %></p>
16 <p><%= f.text_field :homepage, :size => 60 %></p>
16 <p><%= f.text_field :homepage, :size => 60 %></p>
17 <p><%= f.check_box :is_public %></p>
17 <p><%= f.check_box :is_public %></p>
@@ -7,7 +7,7
7 <% Redmine::AccessControl.available_project_modules.each do |m| %>
7 <% Redmine::AccessControl.available_project_modules.each do |m| %>
8 <label class="floating">
8 <label class="floating">
9 <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %>
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 </label>
11 </label>
12 <% end %>
12 <% end %>
13 </fieldset>
13 </fieldset>
@@ -7,7 +7,7
7
7
8 <% Redmine::AccessControl.available_project_modules.each do |m| %>
8 <% Redmine::AccessControl.available_project_modules.each do |m| %>
9 <p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) -%>
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 <% end %>
11 <% end %>
12 </div>
12 </div>
13
13
@@ -23,8 +23,9
23 <li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
23 <li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
24 :set_filter => 1,
24 :set_filter => 1,
25 "tracker_id" => tracker.id %>:
25 "tracker_id" => tracker.id %>:
26 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
26 <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
27 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
27 :total => @total_issues_by_tracker[tracker].to_i) %>
28 </li>
28 <% end %>
29 <% end %>
29 </ul>
30 </ul>
30 <p><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %></p>
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 <% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
67 <% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
67 <h3><%= l(:label_spent_time) %></h3>
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 <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |
70 <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |
70 <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %></p>
71 <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %></p>
71 <% end %>
72 <% end %>
@@ -19,6 +19,6
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>
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 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
20 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
21 <td class="author"><%= changeset.nil? ? h(entry.lastrev.author.to_s.split('<').first) : changeset.author if entry.lastrev %></td>
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 </tr>
23 </tr>
24 <% end %>
24 <% end %>
@@ -26,7 +26,7
26 <h3><%= l(:label_result_plural) %> (<%= @results_by_type.values.sum %>)</h3>
26 <h3><%= l(:label_result_plural) %> (<%= @results_by_type.values.sum %>)</h3>
27 <dl id="search-results">
27 <dl id="search-results">
28 <% @results.each do |e| %>
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 <dd><span class="description"><%= highlight_tokens(e.event_description, @tokens) %></span>
30 <dd><span class="description"><%= highlight_tokens(e.event_description, @tokens) %></span>
31 <span class="author"><%= format_time(e.event_datetime) %></span></dd>
31 <span class="author"><%= format_time(e.event_datetime) %></span></dd>
32 <% end %>
32 <% end %>
@@ -5,7 +5,7
5 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
5 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
6
6
7 <p><label><%= l(:setting_autologin) %></label>
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 <p><label><%= l(:setting_self_registration) %></label>
10 <p><label><%= l(:setting_self_registration) %></label>
11 <%= select_tag 'settings[self_registration]',
11 <%= select_tag 'settings[self_registration]',
@@ -20,7 +20,7
20 <td class="project"><%=h entry.project %></td>
20 <td class="project"><%=h entry.project %></td>
21 <td class="subject">
21 <td class="subject">
22 <% if entry.issue -%>
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 <% end -%>
24 <% end -%>
25 </td>
25 </td>
26 <td class="comments"><%=h entry.comments %></td>
26 <td class="comments"><%=h entry.comments %></td>
@@ -15,7 +15,7 already in the URI %>
15 <% end %>
15 <% end %>
16
16
17 <div class="total-hours">
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 </div>
19 </div>
20
20
21 <% unless @entries.empty? %>
21 <% unless @entries.empty? %>
@@ -20,7 +20,7
20 [l(:label_day_plural).titleize, 'day']], @columns),
20 [l(:label_day_plural).titleize, 'day']], @columns),
21 :onchange => "this.form.onsubmit();" %>
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 :onchange => "this.form.onsubmit();",
24 :onchange => "this.form.onsubmit();",
25 :style => 'width: 200px',
25 :style => 'width: 200px',
26 :id => nil,
26 :id => nil,
@@ -33,7 +33,7
33
33
34 <% unless @criterias.empty? %>
34 <% unless @criterias.empty? %>
35 <div class="total-hours">
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 </div>
37 </div>
38
38
39 <% unless @hours.empty? %>
39 <% unless @hours.empty? %>
@@ -41,7 +41,7
41 <thead>
41 <thead>
42 <tr>
42 <tr>
43 <% @criterias.each do |criteria| %>
43 <% @criterias.each do |criteria| %>
44 <th><%= l(@available_criterias[criteria][:label]) %></th>
44 <th><%= l_or_humanize(@available_criterias[criteria][:label]) %></th>
45 <% end %>
45 <% end %>
46 <% columns_width = (40 / (@periods.length+1)).to_i %>
46 <% columns_width = (40 / (@periods.length+1)).to_i %>
47 <% @periods.each do |period| %>
47 <% @periods.each do |period| %>
@@ -9,12 +9,10
9 <% if version.fixed_issues.count > 0 %>
9 <% if version.fixed_issues.count > 0 %>
10 <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
10 <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
11 <p class="progress-info">
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) %>
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) %>
13 <%= lwr(:label_closed_issues, version.closed_issues_count) %>
14 (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%)
13 (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%)
15 &#160;
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) %>
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) %>
17 <%= lwr(:label_open_issues, version.open_issues_count)%>
18 (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%)
16 (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%)
19 </p>
17 </p>
20 <% else %>
18 <% else %>
@@ -10,12 +10,12
10 <table>
10 <table>
11 <tr>
11 <tr>
12 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
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 </tr>
14 </tr>
15 <% if User.current.allowed_to?(:view_time_entries, @project) %>
15 <% if User.current.allowed_to?(:view_time_entries, @project) %>
16 <tr>
16 <tr>
17 <td width="130px" align="right"><%= l(:label_spent_time) %></td>
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 </tr>
19 </tr>
20 <% end %>
20 <% end %>
21 </table>
21 </table>
@@ -67,7 +67,7 module Rails
67
67
68 class << self
68 class << self
69 def rubygems_version
69 def rubygems_version
70 Gem::RubyGemsVersion if defined? Gem::RubyGemsVersion
70 Gem::RubyGemsVersion rescue nil
71 end
71 end
72
72
73 def gem_version
73 def gem_version
@@ -82,14 +82,14 module Rails
82
82
83 def load_rubygems
83 def load_rubygems
84 require 'rubygems'
84 require 'rubygems'
85
85 min_version = '1.3.1'
86 unless rubygems_version >= '0.9.4'
86 unless rubygems_version >= min_version
87 $stderr.puts %(Rails requires RubyGems >= 0.9.4 (you have #{rubygems_version}). Please `gem update --system` and try again.)
87 $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
88 exit 1
88 exit 1
89 end
89 end
90
90
91 rescue LoadError
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 exit 1
93 exit 1
94 end
94 end
95
95
@@ -5,7 +5,7
5 # ENV['RAILS_ENV'] ||= 'production'
5 # ENV['RAILS_ENV'] ||= 'production'
6
6
7 # Specifies gem version of Rails to use when vendor/rails is not present
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 # Bootstrap the Rails environment, frameworks, and default configuration
10 # Bootstrap the Rails environment, frameworks, and default configuration
11 require File.join(File.dirname(__FILE__), 'boot')
11 require File.join(File.dirname(__FILE__), 'boot')
@@ -30,11 +30,6 Rails::Initializer.run do |config|
30 # (by default production uses :info, the others :debug)
30 # (by default production uses :info, the others :debug)
31 # config.log_level = :debug
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 # Enable page/fragment caching by setting a file-based store
33 # Enable page/fragment caching by setting a file-based store
39 # (remember to create the caching directory and make it readable to the application)
34 # (remember to create the caching directory and make it readable to the application)
40 # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
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 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
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 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
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 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
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 = {
2 require 'activerecord'
3 :inclusion => "activerecord_error_inclusion",
3
4 :exclusion => "activerecord_error_exclusion",
4 module ActiveRecord
5 :invalid => "activerecord_error_invalid",
5 class Base
6 :confirmation => "activerecord_error_confirmation",
6 include Redmine::I18n
7 :accepted => "activerecord_error_accepted",
7
8 :empty => "activerecord_error_empty",
8 # Translate attribute names for validation errors display
9 :blank => "activerecord_error_blank",
9 def self.human_attribute_name(attr)
10 :too_long => "activerecord_error_too_long",
10 l("field_#{attr.to_s.gsub(/_id$/, '')}")
11 :too_short => "activerecord_error_too_short",
11 end
12 :wrong_length => "activerecord_error_wrong_length",
12 end
13 :taken => "activerecord_error_taken",
13 end
14 :not_a_number => "activerecord_error_not_a_number"
14
15 } if ActiveRecord::Errors.respond_to?('default_error_messages=')
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 ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "#{html_tag}" }
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
1 I18n.default_locale = 'en'
2 GLoc.clear_strings
3 GLoc.set_kcode
4 GLoc.load_localized_strings
5 GLoc.set_config(:raise_string_not_found_errors => false)
6
2
7 require 'redmine'
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:
20 time:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
21 formats:
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
22 default: "%a, %d %b %Y %H:%M:%S %z"
6 actionview_datehelper_select_month_prefix:
23 short: "%d %b %H:%M"
7 actionview_datehelper_select_year_prefix:
24 long: "%B %d, %Y %H:%M"
8 actionview_datehelper_time_in_words_day: 1 ден
25 am: "am"
9 actionview_datehelper_time_in_words_day_plural: %d дни
26 pm: "pm"
10 actionview_datehelper_time_in_words_hour_about: около час
27
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
28 datetime:
12 actionview_datehelper_time_in_words_hour_about_single: около час
29 distance_in_words:
13 actionview_datehelper_time_in_words_minute: 1 минута
30 half_a_minute: "half a minute"
14 actionview_datehelper_time_in_words_minute_half: половин минута
31 less_than_x_seconds:
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
32 one: "less than 1 second"
16 actionview_datehelper_time_in_words_minute_plural: %d минути
33 other: "less than {{count}} seconds"
17 actionview_datehelper_time_in_words_minute_single: 1 минута
34 x_seconds:
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
35 one: "1 second"
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
36 other: "{{count}} seconds"
20 actionview_instancetag_blank_option: Изберете
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: не съществува в списъка
95 actionview_instancetag_blank_option: Изберете
23 activerecord_error_exclusion: е запазено
96
24 activerecord_error_invalid: е невалидно
97 general_text_No: 'Не'
25 activerecord_error_confirmation: липсва одобрение
98 general_text_Yes: 'Да'
26 activerecord_error_accepted: трябва да се приеме
99 general_text_no: 'не'
27 activerecord_error_empty: не може да е празно
100 general_text_yes: 'да'
28 activerecord_error_blank: не може да е празно
101 general_lang_name: 'Bulgarian'
29 activerecord_error_too_long: е прекалено дълго
102 general_csv_separator: ','
30 activerecord_error_too_short: е прекалено късо
103 general_csv_decimal_separator: '.'
31 activerecord_error_wrong_length: е с грешна дължина
104 general_csv_encoding: UTF-8
32 activerecord_error_taken: вече съществува
105 general_pdf_encoding: UTF-8
33 activerecord_error_not_a_number: не е число
106 general_first_day_of_week: '1'
34 activerecord_error_not_a_date: е невалидна дата
107
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
108 notice_account_updated: Профилът е обновен успешно.
36 activerecord_error_not_same_project: не е от същия проект
109 notice_account_invalid_creditentials: Невалиден потребител или парола.
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
110 notice_account_password_updated: Паролата е успешно променена.
38
111 notice_account_wrong_password: Грешна парола
39 general_fmt_age: %d yr
112 notice_account_register_done: Профилът е създаден успешно.
40 general_fmt_age_plural: %d yrs
113 notice_account_unknown_email: Непознат e-mail.
41 general_fmt_date: %%d.%%m.%%Y
114 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
115 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
116 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
44 general_fmt_time: %%H:%%M
117 notice_successful_create: Успешно създаване.
45 general_text_No: 'Не'
118 notice_successful_update: Успешно обновяване.
46 general_text_Yes: 'Да'
119 notice_successful_delete: Успешно изтриване.
47 general_text_no: 'не'
120 notice_successful_connection: Успешно свързване.
48 general_text_yes: 'да'
121 notice_file_not_found: Несъществуваща или преместена страница.
49 general_lang_name: 'Bulgarian'
122 notice_locking_conflict: Друг потребител променя тези данни в момента.
50 general_csv_separator: ','
123 notice_not_authorized: Нямате право на достъп до тази страница.
51 general_csv_decimal_separator: '.'
124 notice_email_sent: "Изпратен e-mail на {{value}}"
52 general_csv_encoding: UTF-8
125 notice_email_error: "Грешка при изпращане на e-mail ({{value}})"
53 general_pdf_encoding: UTF-8
126 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
54 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
127
55 general_first_day_of_week: '1'
128 error_scm_not_found: Несъществуващ обект в хранилището.
56
129 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: {{value}}"
57 notice_account_updated: Профилът е обновен успешно.
130
58 notice_account_invalid_creditentials: Невалиден потребител или парола.
131 mail_subject_lost_password: "Вашата парола ({{value}})"
59 notice_account_password_updated: Паролата е успешно променена.
132 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
60 notice_account_wrong_password: Грешна парола
133 mail_subject_register: "Активация на профил ({{value}})"
61 notice_account_register_done: Профилът е създаден успешно.
134 mail_body_register: 'За да активирате профила си използвайте следния линк:'
62 notice_account_unknown_email: Непознат e-mail.
135
63 notice_can_t_change_password: Този профил е с външен метод за оторизация. Невъзможна смяна на паролата.
136 gui_validation_error: 1 грешка
64 notice_account_lost_email_sent: Изпратен ви е e-mail с инструкции за избор на нова парола.
137 gui_validation_error_plural: "{{count}} грешки"
65 notice_account_activated: Профилът ви е активиран. Вече може да влезете в системата.
138
66 notice_successful_create: Успешно създаване.
139 field_name: Име
67 notice_successful_update: Успешно обновяване.
140 field_description: Описание
68 notice_successful_delete: Успешно изтриване.
141 field_summary: Групиран изглед
69 notice_successful_connection: Успешно свързване.
142 field_is_required: Задължително
70 notice_file_not_found: Несъществуваща или преместена страница.
143 field_firstname: Име
71 notice_locking_conflict: Друг потребител променя тези данни в момента.
144 field_lastname: Фамилия
72 notice_not_authorized: Нямате право на достъп до тази страница.
145 field_mail: Email
73 notice_email_sent: Изпратен e-mail на %s
146 field_filename: Файл
74 notice_email_error: Грешка при изпращане на e-mail (%s)
147 field_filesize: Големина
75 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
148 field_downloads: Downloads
76
149 field_author: Автор
77 error_scm_not_found: Несъществуващ обект в хранилището.
150 field_created_on: От дата
78 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %s"
151 field_updated_on: Обновена
79
152 field_field_format: Тип
80 mail_subject_lost_password: Вашата парола (%s)
153 field_is_for_all: За всички проекти
81 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
154 field_possible_values: Възможни стойности
82 mail_subject_register: Активация на профил (%s)
155 field_regexp: Регулярен израз
83 mail_body_register: 'За да активирате профила си използвайте следния линк:'
156 field_min_length: Мин. дължина
84
157 field_max_length: Макс. дължина
85 gui_validation_error: 1 грешка
158 field_value: Стойност
86 gui_validation_error_plural: %d грешки
159 field_category: Категория
87
160 field_title: Заглавие
88 field_name: Име
161 field_project: Проект
89 field_description: Описание
162 field_issue: Задача
90 field_summary: Групиран изглед
163 field_status: Статус
91 field_is_required: Задължително
164 field_notes: Бележка
92 field_firstname: Име
165 field_is_closed: Затворена задача
93 field_lastname: Фамилия
166 field_is_default: Статус по подразбиране
94 field_mail: Email
167 field_tracker: Тракер
95 field_filename: Файл
168 field_subject: Относно
96 field_filesize: Големина
169 field_due_date: Крайна дата
97 field_downloads: Downloads
170 field_assigned_to: Възложена на
98 field_author: Автор
171 field_priority: Приоритет
99 field_created_on: От дата
172 field_fixed_version: Планувана версия
100 field_updated_on: Обновена
173 field_user: Потребител
101 field_field_format: Тип
174 field_role: Роля
102 field_is_for_all: За всички проекти
175 field_homepage: Начална страница
103 field_possible_values: Възможни стойности
176 field_is_public: Публичен
104 field_regexp: Регулярен израз
177 field_parent: Подпроект на
105 field_min_length: Мин. дължина
178 field_is_in_chlog: Да се вижда ли в Изменения
106 field_max_length: Макс. дължина
179 field_is_in_roadmap: Да се вижда ли в Пътна карта
107 field_value: Стойност
180 field_login: Потребител
108 field_category: Категория
181 field_mail_notification: Известия по пощата
109 field_title: Заглавие
182 field_admin: Администратор
110 field_project: Проект
183 field_last_login_on: Последно свързване
111 field_issue: Задача
184 field_language: Език
112 field_status: Статус
185 field_effective_date: Дата
113 field_notes: Бележка
186 field_password: Парола
114 field_is_closed: Затворена задача
187 field_new_password: Нова парола
115 field_is_default: Статус по подразбиране
188 field_password_confirmation: Потвърждение
116 field_tracker: Тракер
189 field_version: Версия
117 field_subject: Относно
190 field_type: Тип
118 field_due_date: Крайна дата
191 field_host: Хост
119 field_assigned_to: Възложена на
192 field_port: Порт
120 field_priority: Приоритет
193 field_account: Профил
121 field_fixed_version: Планувана версия
194 field_base_dn: Base DN
122 field_user: Потребител
195 field_attr_login: Login attribute
123 field_role: Роля
196 field_attr_firstname: Firstname attribute
124 field_homepage: Начална страница
197 field_attr_lastname: Lastname attribute
125 field_is_public: Публичен
198 field_attr_mail: Email attribute
126 field_parent: Подпроект на
199 field_onthefly: Динамично създаване на потребител
127 field_is_in_chlog: Да се вижда ли в Изменения
200 field_start_date: Начална дата
128 field_is_in_roadmap: Да се вижда ли в Пътна карта
201 field_done_ratio: %% Прогрес
129 field_login: Потребител
202 field_auth_source: Начин на оторизация
130 field_mail_notification: Известия по пощата
203 field_hide_mail: Скрий e-mail адреса ми
131 field_admin: Администратор
204 field_comments: Коментар
132 field_last_login_on: Последно свързване
205 field_url: Адрес
133 field_language: Език
206 field_start_page: Начална страница
134 field_effective_date: Дата
207 field_subproject: Подпроект
135 field_password: Парола
208 field_hours: Часове
136 field_new_password: Нова парола
209 field_activity: Дейност
137 field_password_confirmation: Потвърждение
210 field_spent_on: Дата
138 field_version: Версия
211 field_identifier: Идентификатор
139 field_type: Тип
212 field_is_filter: Използва се за филтър
140 field_host: Хост
213 field_issue_to_id: Свързана задача
141 field_port: Порт
214 field_delay: Отместване
142 field_account: Профил
215 field_assignable: Възможно е възлагане на задачи за тази роля
143 field_base_dn: Base DN
216 field_redirect_existing_links: Пренасочване на съществуващи линкове
144 field_attr_login: Login attribute
217 field_estimated_hours: Изчислено време
145 field_attr_firstname: Firstname attribute
218 field_default_value: Стойност по подразбиране
146 field_attr_lastname: Lastname attribute
219
147 field_attr_mail: Email attribute
220 setting_app_title: Заглавие
148 field_onthefly: Динамично създаване на потребител
221 setting_app_subtitle: Описание
149 field_start_date: Начална дата
222 setting_welcome_text: Допълнителен текст
150 field_done_ratio: %% Прогрес
223 setting_default_language: Език по подразбиране
151 field_auth_source: Начин на оторизация
224 setting_login_required: Изискване за вход в системата
152 field_hide_mail: Скрий e-mail адреса ми
225 setting_self_registration: Регистрация от потребители
153 field_comments: Коментар
226 setting_attachment_max_size: Максимална големина на прикачен файл
154 field_url: Адрес
227 setting_issues_export_limit: Лимит за експорт на задачи
155 field_start_page: Начална страница
228 setting_mail_from: E-mail адрес за емисии
156 field_subproject: Подпроект
229 setting_host_name: Хост
157 field_hours: Часове
230 setting_text_formatting: Форматиране на текста
158 field_activity: Дейност
231 setting_wiki_compression: Wiki компресиране на историята
159 field_spent_on: Дата
232 setting_feeds_limit: Лимит на Feeds
160 field_identifier: Идентификатор
233 setting_autofetch_changesets: Автоматично обработване на ревизиите
161 field_is_filter: Използва се за филтър
234 setting_sys_api_enabled: Разрешаване на WS за управление
162 field_issue_to_id: Свързана задача
235 setting_commit_ref_keywords: Отбелязващи ключови думи
163 field_delay: Отместване
236 setting_commit_fix_keywords: Приключващи ключови думи
164 field_assignable: Възможно е възлагане на задачи за тази роля
237 setting_autologin: Автоматичен вход
165 field_redirect_existing_links: Пренасочване на съществуващи линкове
238 setting_date_format: Формат на датата
166 field_estimated_hours: Изчислено време
239 setting_cross_project_issue_relations: Релации на задачи между проекти
167 field_default_value: Стойност по подразбиране
240
168
241 label_user: Потребител
169 setting_app_title: Заглавие
242 label_user_plural: Потребители
170 setting_app_subtitle: Описание
243 label_user_new: Нов потребител
171 setting_welcome_text: Допълнителен текст
244 label_project: Проект
172 setting_default_language: Език по подразбиране
245 label_project_new: Нов проект
173 setting_login_required: Изискване за вход в системата
246 label_project_plural: Проекти
174 setting_self_registration: Регистрация от потребители
247 label_x_projects:
175 setting_attachment_max_size: Максимална големина на прикачен файл
248 zero: no projects
176 setting_issues_export_limit: Лимит за експорт на задачи
249 one: 1 project
177 setting_mail_from: E-mail адрес за емисии
250 other: "{{count}} projects"
178 setting_host_name: Хост
251 label_project_all: Всички проекти
179 setting_text_formatting: Форматиране на текста
252 label_project_latest: Последни проекти
180 setting_wiki_compression: Wiki компресиране на историята
253 label_issue: Задача
181 setting_feeds_limit: Лимит на Feeds
254 label_issue_new: Нова задача
182 setting_autofetch_changesets: Автоматично обработване на ревизиите
255 label_issue_plural: Задачи
183 setting_sys_api_enabled: Разрешаване на WS за управление
256 label_issue_view_all: Всички задачи
184 setting_commit_ref_keywords: Отбелязващи ключови думи
257 label_document: Документ
185 setting_commit_fix_keywords: Приключващи ключови думи
258 label_document_new: Нов документ
186 setting_autologin: Автоматичен вход
259 label_document_plural: Документи
187 setting_date_format: Формат на датата
260 label_role: Роля
188 setting_cross_project_issue_relations: Релации на задачи между проекти
261 label_role_plural: Роли
189
262 label_role_new: Нова роля
190 label_user: Потребител
263 label_role_and_permissions: Роли и права
191 label_user_plural: Потребители
264 label_member: Член
192 label_user_new: Нов потребител
265 label_member_new: Нов член
193 label_project: Проект
266 label_member_plural: Членове
194 label_project_new: Нов проект
267 label_tracker: Тракер
195 label_project_plural: Проекти
268 label_tracker_plural: Тракери
196 label_project_all: Всички проекти
269 label_tracker_new: Нов тракер
197 label_project_latest: Последни проекти
270 label_workflow: Работен процес
198 label_issue: Задача
271 label_issue_status: Статус на задача
199 label_issue_new: Нова задача
272 label_issue_status_plural: Статуси на задачи
200 label_issue_plural: Задачи
273 label_issue_status_new: Нов статус
201 label_issue_view_all: Всички задачи
274 label_issue_category: Категория задача
202 label_document: Документ
275 label_issue_category_plural: Категории задачи
203 label_document_new: Нов документ
276 label_issue_category_new: Нова категория
204 label_document_plural: Документи
277 label_custom_field: Потребителско поле
205 label_role: Роля
278 label_custom_field_plural: Потребителски полета
206 label_role_plural: Роли
279 label_custom_field_new: Ново потребителско поле
207 label_role_new: Нова роля
280 label_enumerations: Списъци
208 label_role_and_permissions: Роли и права
281 label_enumeration_new: Нова стойност
209 label_member: Член
282 label_information: Информация
210 label_member_new: Нов член
283 label_information_plural: Информация
211 label_member_plural: Членове
284 label_please_login: Вход
212 label_tracker: Тракер
285 label_register: Регистрация
213 label_tracker_plural: Тракери
286 label_password_lost: Забравена парола
214 label_tracker_new: Нов тракер
287 label_home: Начало
215 label_workflow: Работен процес
288 label_my_page: Лична страница
216 label_issue_status: Статус на задача
289 label_my_account: Профил
217 label_issue_status_plural: Статуси на задачи
290 label_my_projects: Проекти, в които участвам
218 label_issue_status_new: Нов статус
291 label_administration: Администрация
219 label_issue_category: Категория задача
292 label_login: Вход
220 label_issue_category_plural: Категории задачи
293 label_logout: Изход
221 label_issue_category_new: Нова категория
294 label_help: Помощ
222 label_custom_field: Потребителско поле
295 label_reported_issues: Публикувани задачи
223 label_custom_field_plural: Потребителски полета
296 label_assigned_to_me_issues: Възложени на мен
224 label_custom_field_new: Ново потребителско поле
297 label_last_login: Последно свързване
225 label_enumerations: Списъци
298 label_registered_on: Регистрация
226 label_enumeration_new: Нова стойност
299 label_activity: Дейност
227 label_information: Информация
300 label_new: Нов
228 label_information_plural: Информация
301 label_logged_as: Логнат като
229 label_please_login: Вход
302 label_environment: Среда
230 label_register: Регистрация
303 label_authentication: Оторизация
231 label_password_lost: Забравена парола
304 label_auth_source: Начин на оторозация
232 label_home: Начало
305 label_auth_source_new: Нов начин на оторизация
233 label_my_page: Лична страница
306 label_auth_source_plural: Начини на оторизация
234 label_my_account: Профил
307 label_subproject_plural: Подпроекти
235 label_my_projects: Проекти, в които участвам
308 label_min_max_length: Мин. - Макс. дължина
236 label_administration: Администрация
309 label_list: Списък
237 label_login: Вход
310 label_date: Дата
238 label_logout: Изход
311 label_integer: Целочислен
239 label_help: Помощ
312 label_boolean: Чекбокс
240 label_reported_issues: Публикувани задачи
313 label_string: Текст
241 label_assigned_to_me_issues: Възложени на мен
314 label_text: Дълъг текст
242 label_last_login: Последно свързване
315 label_attribute: Атрибут
243 label_last_updates: Последно обновена
316 label_attribute_plural: Атрибути
244 label_last_updates_plural: %d последно обновени
317 label_download: "{{count}} Download"
245 label_registered_on: Регистрация
318 label_download_plural: "{{count}} Downloads"
246 label_activity: Дейност
319 label_no_data: Няма изходни данни
247 label_new: Нов
320 label_change_status: Промяна на статуса
248 label_logged_as: Логнат като
321 label_history: История
249 label_environment: Среда
322 label_attachment: Файл
250 label_authentication: Оторизация
323 label_attachment_new: Нов файл
251 label_auth_source: Начин на оторозация
324 label_attachment_delete: Изтриване
252 label_auth_source_new: Нов начин на оторизация
325 label_attachment_plural: Файлове
253 label_auth_source_plural: Начини на оторизация
326 label_report: Справка
254 label_subproject_plural: Подпроекти
327 label_report_plural: Справки
255 label_min_max_length: Мин. - Макс. дължина
328 label_news: Новини
256 label_list: Списък
329 label_news_new: Добави
257 label_date: Дата
330 label_news_plural: Новини
258 label_integer: Целочислен
331 label_news_latest: Последни новини
259 label_boolean: Чекбокс
332 label_news_view_all: Виж всички
260 label_string: Текст
333 label_change_log: Изменения
261 label_text: Дълъг текст
334 label_settings: Настройки
262 label_attribute: Атрибут
335 label_overview: Общ изглед
263 label_attribute_plural: Атрибути
336 label_version: Версия
264 label_download: %d Download
337 label_version_new: Нова версия
265 label_download_plural: %d Downloads
338 label_version_plural: Версии
266 label_no_data: Няма изходни данни
339 label_confirmation: Одобрение
267 label_change_status: Промяна на статуса
340 label_export_to: Експорт към
268 label_history: История
341 label_read: Read...
269 label_attachment: Файл
342 label_public_projects: Публични проекти
270 label_attachment_new: Нов файл
343 label_open_issues: отворена
271 label_attachment_delete: Изтриване
344 label_open_issues_plural: отворени
272 label_attachment_plural: Файлове
345 label_closed_issues: затворена
273 label_report: Справка
346 label_closed_issues_plural: затворени
274 label_report_plural: Справки
347 label_x_open_issues_abbr_on_total:
275 label_news: Новини
348 zero: 0 open / {{total}}
276 label_news_new: Добави
349 one: 1 open / {{total}}
277 label_news_plural: Новини
350 other: "{{count}} open / {{total}}"
278 label_news_latest: Последни новини
351 label_x_open_issues_abbr:
279 label_news_view_all: Виж всички
352 zero: 0 open
280 label_change_log: Изменения
353 one: 1 open
281 label_settings: Настройки
354 other: "{{count}} open"
282 label_overview: Общ изглед
355 label_x_closed_issues_abbr:
283 label_version: Версия
356 zero: 0 closed
284 label_version_new: Нова версия
357 one: 1 closed
285 label_version_plural: Версии
358 other: "{{count}} closed"
286 label_confirmation: Одобрение
359 label_total: Общо
287 label_export_to: Експорт към
360 label_permissions: Права
288 label_read: Read...
361 label_current_status: Текущ статус
289 label_public_projects: Публични проекти
362 label_new_statuses_allowed: Позволени статуси
290 label_open_issues: отворена
363 label_all: всички
291 label_open_issues_plural: отворени
364 label_none: никакви
292 label_closed_issues: затворена
365 label_next: Следващ
293 label_closed_issues_plural: затворени
366 label_previous: Предишен
294 label_total: Общо
367 label_used_by: Използва се от
295 label_permissions: Права
368 label_details: Детайли
296 label_current_status: Текущ статус
369 label_add_note: Добавяне на бележка
297 label_new_statuses_allowed: Позволени статуси
370 label_per_page: На страница
298 label_all: всички
371 label_calendar: Календар
299 label_none: никакви
372 label_months_from: месеца от
300 label_next: Следващ
373 label_gantt: Gantt
301 label_previous: Предишен
374 label_internal: Вътрешен
302 label_used_by: Използва се от
375 label_last_changes: "последни {{count}} промени"
303 label_details: Детайли
376 label_change_view_all: Виж всички промени
304 label_add_note: Добавяне на бележка
377 label_personalize_page: Персонализиране
305 label_per_page: На страница
378 label_comment: Коментар
306 label_calendar: Календар
379 label_comment_plural: Коментари
307 label_months_from: месеца от
380 label_x_comments:
308 label_gantt: Gantt
381 zero: no comments
309 label_internal: Вътрешен
382 one: 1 comment
310 label_last_changes: последни %d промени
383 other: "{{count}} comments"
311 label_change_view_all: Виж всички промени
384 label_comment_add: Добавяне на коментар
312 label_personalize_page: Персонализиране
385 label_comment_added: Добавен коментар
313 label_comment: Коментар
386 label_comment_delete: Изтриване на коментари
314 label_comment_plural: Коментари
387 label_query: Потребителска справка
315 label_comment_add: Добавяне на коментар
388 label_query_plural: Потребителски справки
316 label_comment_added: Добавен коментар
389 label_query_new: Нова заявка
317 label_comment_delete: Изтриване на коментари
390 label_filter_add: Добави филтър
318 label_query: Потребителска справка
391 label_filter_plural: Филтри
319 label_query_plural: Потребителски справки
392 label_equals: е
320 label_query_new: Нова заявка
393 label_not_equals: не е
321 label_filter_add: Добави филтър
394 label_in_less_than: след по-малко от
322 label_filter_plural: Филтри
395 label_in_more_than: след повече от
323 label_equals: е
396 label_in: в следващите
324 label_not_equals: не е
397 label_today: днес
325 label_in_less_than: след по-малко от
398 label_this_week: тази седмица
326 label_in_more_than: след повече от
399 label_less_than_ago: преди по-малко от
327 label_in: в следващите
400 label_more_than_ago: преди повече от
328 label_today: днес
401 label_ago: преди
329 label_this_week: тази седмица
402 label_contains: съдържа
330 label_less_than_ago: преди по-малко от
403 label_not_contains: не съдържа
331 label_more_than_ago: преди повече от
404 label_day_plural: дни
332 label_ago: преди
405 label_repository: Хранилище
333 label_contains: съдържа
406 label_browse: Разглеждане
334 label_not_contains: не съдържа
407 label_modification: "{{count}} промяна"
335 label_day_plural: дни
408 label_modification_plural: "{{count}} промени"
336 label_repository: Хранилище
409 label_revision: Ревизия
337 label_browse: Разглеждане
410 label_revision_plural: Ревизии
338 label_modification: %d промяна
411 label_added: добавено
339 label_modification_plural: %d промени
412 label_modified: променено
340 label_revision: Ревизия
413 label_deleted: изтрито
341 label_revision_plural: Ревизии
414 label_latest_revision: Последна ревизия
342 label_added: добавено
415 label_latest_revision_plural: Последни ревизии
343 label_modified: променено
416 label_view_revisions: Виж ревизиите
344 label_deleted: изтрито
417 label_max_size: Максимална големина
345 label_latest_revision: Последна ревизия
418 label_sort_highest: Премести най-горе
346 label_latest_revision_plural: Последни ревизии
419 label_sort_higher: Премести по-горе
347 label_view_revisions: Виж ревизиите
420 label_sort_lower: Премести по-долу
348 label_max_size: Максимална големина
421 label_sort_lowest: Премести най-долу
349 label_on: 'от'
422 label_roadmap: Пътна карта
350 label_sort_highest: Премести най-горе
423 label_roadmap_due_in: "Излиза след {{value}}"
351 label_sort_higher: Премести по-горе
424 label_roadmap_overdue: "{{value}} закъснение"
352 label_sort_lower: Премести по-долу
425 label_roadmap_no_issues: Няма задачи за тази версия
353 label_sort_lowest: Премести най-долу
426 label_search: Търсене
354 label_roadmap: Пътна карта
427 label_result_plural: Pезултати
355 label_roadmap_due_in: Излиза след %s
428 label_all_words: Всички думи
356 label_roadmap_overdue: %s закъснение
429 label_wiki: Wiki
357 label_roadmap_no_issues: Няма задачи за тази версия
430 label_wiki_edit: Wiki редакция
358 label_search: Търсене
431 label_wiki_edit_plural: Wiki редакции
359 label_result_plural: Pезултати
432 label_wiki_page: Wiki page
360 label_all_words: Всички думи
433 label_wiki_page_plural: Wiki pages
361 label_wiki: Wiki
434 label_index_by_title: Индекс
362 label_wiki_edit: Wiki редакция
435 label_index_by_date: Индекс по дата
363 label_wiki_edit_plural: Wiki редакции
436 label_current_version: Текуща версия
364 label_wiki_page: Wiki page
437 label_preview: Преглед
365 label_wiki_page_plural: Wiki pages
438 label_feed_plural: Feeds
366 label_index_by_title: Индекс
439 label_changes_details: Подробни промени
367 label_index_by_date: Индекс по дата
440 label_issue_tracking: Тракинг
368 label_current_version: Текуща версия
441 label_spent_time: Отделено време
369 label_preview: Преглед
442 label_f_hour: "{{value}} час"
370 label_feed_plural: Feeds
443 label_f_hour_plural: "{{value}} часа"
371 label_changes_details: Подробни промени
444 label_time_tracking: Отделяне на време
372 label_issue_tracking: Тракинг
445 label_change_plural: Промени
373 label_spent_time: Отделено време
446 label_statistics: Статистики
374 label_f_hour: %.2f час
447 label_commits_per_month: Ревизии по месеци
375 label_f_hour_plural: %.2f часа
448 label_commits_per_author: Ревизии по автор
376 label_time_tracking: Отделяне на време
449 label_view_diff: Виж разликите
377 label_change_plural: Промени
450 label_diff_inline: хоризонтално
378 label_statistics: Статистики
451 label_diff_side_by_side: вертикално
379 label_commits_per_month: Ревизии по месеци
452 label_options: Опции
380 label_commits_per_author: Ревизии по автор
453 label_copy_workflow_from: Копирай работния процес от
381 label_view_diff: Виж разликите
454 label_permissions_report: Справка за права
382 label_diff_inline: хоризонтално
455 label_watched_issues: Наблюдавани задачи
383 label_diff_side_by_side: вертикално
456 label_related_issues: Свързани задачи
384 label_options: Опции
457 label_applied_status: Промени статуса на
385 label_copy_workflow_from: Копирай работния процес от
458 label_loading: Зареждане...
386 label_permissions_report: Справка за права
459 label_relation_new: Нова релация
387 label_watched_issues: Наблюдавани задачи
460 label_relation_delete: Изтриване на релация
388 label_related_issues: Свързани задачи
461 label_relates_to: свързана със
389 label_applied_status: Промени статуса на
462 label_duplicates: дублира
390 label_loading: Зареждане...
463 label_blocks: блокира
391 label_relation_new: Нова релация
464 label_blocked_by: блокирана от
392 label_relation_delete: Изтриване на релация
465 label_precedes: предшества
393 label_relates_to: свързана със
466 label_follows: изпълнява се след
394 label_duplicates: дублира
467 label_end_to_start: end to start
395 label_blocks: блокира
468 label_end_to_end: end to end
396 label_blocked_by: блокирана от
469 label_start_to_start: start to start
397 label_precedes: предшества
470 label_start_to_end: start to end
398 label_follows: изпълнява се след
471 label_stay_logged_in: Запомни ме
399 label_end_to_start: end to start
472 label_disabled: забранено
400 label_end_to_end: end to end
473 label_show_completed_versions: Показване на реализирани версии
401 label_start_to_start: start to start
474 label_me: аз
402 label_start_to_end: start to end
475 label_board: Форум
403 label_stay_logged_in: Запомни ме
476 label_board_new: Нов форум
404 label_disabled: забранено
477 label_board_plural: Форуми
405 label_show_completed_versions: Показване на реализирани версии
478 label_topic_plural: Теми
406 label_me: аз
479 label_message_plural: Съобщения
407 label_board: Форум
480 label_message_last: Последно съобщение
408 label_board_new: Нов форум
481 label_message_new: Нова тема
409 label_board_plural: Форуми
482 label_reply_plural: Отговори
410 label_topic_plural: Теми
483 label_send_information: Изпращане на информацията до потребителя
411 label_message_plural: Съобщения
484 label_year: Година
412 label_message_last: Последно съобщение
485 label_month: Месец
413 label_message_new: Нова тема
486 label_week: Седмица
414 label_reply_plural: Отговори
487 label_date_from: От
415 label_send_information: Изпращане на информацията до потребителя
488 label_date_to: До
416 label_year: Година
489 label_language_based: В зависимост от езика
417 label_month: Месец
490 label_sort_by: "Сортиране по {{value}}"
418 label_week: Седмица
491 label_send_test_email: Изпращане на тестов e-mail
419 label_date_from: От
492 label_feeds_access_key_created_on: "{{value}} от създаването на RSS ключа"
420 label_date_to: До
493 label_module_plural: Модули
421 label_language_based: В зависимост от езика
494 label_added_time_by: "Публикувана от {{author}} преди {{age}}"
422 label_sort_by: Сортиране по %s
495 label_updated_time: "Обновена преди {{value}}"
423 label_send_test_email: Изпращане на тестов e-mail
496 label_jump_to_a_project: Проект...
424 label_feeds_access_key_created_on: %s от създаването на RSS ключа
497
425 label_module_plural: Модули
498 button_login: Вход
426 label_added_time_by: Публикувана от %s преди %s
499 button_submit: Прикачване
427 label_updated_time: Обновена преди %s
500 button_save: Запис
428 label_jump_to_a_project: Проект...
501 button_check_all: Избор на всички
429
502 button_uncheck_all: Изчистване на всички
430 button_login: Вход
503 button_delete: Изтриване
431 button_submit: Прикачване
504 button_create: Създаване
432 button_save: Запис
505 button_test: Тест
433 button_check_all: Избор на всички
506 button_edit: Редакция
434 button_uncheck_all: Изчистване на всички
507 button_add: Добавяне
435 button_delete: Изтриване
508 button_change: Промяна
436 button_create: Създаване
509 button_apply: Приложи
437 button_test: Тест
510 button_clear: Изчисти
438 button_edit: Редакция
511 button_lock: Заключване
439 button_add: Добавяне
512 button_unlock: Отключване
440 button_change: Промяна
513 button_download: Download
441 button_apply: Приложи
514 button_list: Списък
442 button_clear: Изчисти
515 button_view: Преглед
443 button_lock: Заключване
516 button_move: Преместване
444 button_unlock: Отключване
517 button_back: Назад
445 button_download: Download
518 button_cancel: Отказ
446 button_list: Списък
519 button_activate: Активация
447 button_view: Преглед
520 button_sort: Сортиране
448 button_move: Преместване
521 button_log_time: Отделяне на време
449 button_back: Назад
522 button_rollback: Върни се към тази ревизия
450 button_cancel: Отказ
523 button_watch: Наблюдавай
451 button_activate: Активация
524 button_unwatch: Спри наблюдението
452 button_sort: Сортиране
525 button_reply: Отговор
453 button_log_time: Отделяне на време
526 button_archive: Архивиране
454 button_rollback: Върни се към тази ревизия
527 button_unarchive: Разархивиране
455 button_watch: Наблюдавай
528 button_reset: Генериране наново
456 button_unwatch: Спри наблюдението
529 button_rename: Преименуване
457 button_reply: Отговор
530
458 button_archive: Архивиране
531 status_active: активен
459 button_unarchive: Разархивиране
532 status_registered: регистриран
460 button_reset: Генериране наново
533 status_locked: заключен
461 button_rename: Преименуване
534
462
535 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
463 status_active: активен
536 text_regexp_info: пр. ^[A-Z0-9]+$
464 status_registered: регистриран
537 text_min_max_length_info: 0 - без ограничения
465 status_locked: заключен
538 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
466
539 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
467 text_select_mail_notifications: Изберете събития за изпращане на e-mail.
540 text_are_you_sure: Сигурни ли сте?
468 text_regexp_info: пр. ^[A-Z0-9]+$
541 text_journal_changed: "промяна от {{old}} на {{new}}"
469 text_min_max_length_info: 0 - без ограничения
542 text_journal_set_to: "установено на {{value}}"
470 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
543 text_journal_deleted: изтрито
471 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
544 text_tip_task_begin_day: задача започваща този ден
472 text_are_you_sure: Сигурни ли сте?
545 text_tip_task_end_day: задача завършваща този ден
473 text_journal_changed: промяна от %s на %s
546 text_tip_task_begin_end_day: задача започваща и завършваща този ден
474 text_journal_set_to: установено на %s
547 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
475 text_journal_deleted: изтрито
548 text_caracters_maximum: "До {{count}} символа."
476 text_tip_task_begin_day: задача започваща този ден
549 text_length_between: "От {{min}} до {{max}} символа."
477 text_tip_task_end_day: задача завършваща този ден
550 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
478 text_tip_task_begin_end_day: задача започваща и завършваща този ден
551 text_unallowed_characters: Непозволени символи
479 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
552 text_comma_separated: Позволено е изброяване (с разделител запетая).
480 text_caracters_maximum: До %d символа.
553 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
481 text_length_between: От %d до %d символа.
554 text_issue_added: "Публикувана е нова задача с номер {{id}} (от {{author}})."
482 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
555 text_issue_updated: "Задача {{id}} е обновена (от {{author}})."
483 text_unallowed_characters: Непозволени символи
556 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
484 text_comma_separated: Позволено е изброяване (с разделител запетая).
557 text_issue_category_destroy_question: "Има задачи ({{count}}) обвързани с тази категория. Какво ще изберете?"
485 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
558 text_issue_category_destroy_assignments: Премахване на връзките с категорията
486 text_issue_added: Публикувана е нова задача с номер %s (от %s).
559 text_issue_category_reassign_to: Преобвързване с категория
487 text_issue_updated: Задача %s е обновена (от %s).
560
488 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
561 default_role_manager: Мениджър
489 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
562 default_role_developper: Разработчик
490 text_issue_category_destroy_assignments: Премахване на връзките с категорията
563 default_role_reporter: Публикуващ
491 text_issue_category_reassign_to: Преобвързване с категория
564 default_tracker_bug: Бъг
492
565 default_tracker_feature: Функционалност
493 default_role_manager: Мениджър
566 default_tracker_support: Поддръжка
494 default_role_developper: Разработчик
567 default_issue_status_new: Нова
495 default_role_reporter: Публикуващ
568 default_issue_status_assigned: Възложена
496 default_tracker_bug: Бъг
569 default_issue_status_resolved: Приключена
497 default_tracker_feature: Функционалност
570 default_issue_status_feedback: Обратна връзка
498 default_tracker_support: Поддръжка
571 default_issue_status_closed: Затворена
499 default_issue_status_new: Нова
572 default_issue_status_rejected: Отхвърлена
500 default_issue_status_assigned: Възложена
573 default_doc_category_user: Документация за потребителя
501 default_issue_status_resolved: Приключена
574 default_doc_category_tech: Техническа документация
502 default_issue_status_feedback: Обратна връзка
575 default_priority_low: Нисък
503 default_issue_status_closed: Затворена
576 default_priority_normal: Нормален
504 default_issue_status_rejected: Отхвърлена
577 default_priority_high: Висок
505 default_doc_category_user: Документация за потребителя
578 default_priority_urgent: Спешен
506 default_doc_category_tech: Техническа документация
579 default_priority_immediate: Веднага
507 default_priority_low: Нисък
580 default_activity_design: Дизайн
508 default_priority_normal: Нормален
581 default_activity_development: Разработка
509 default_priority_high: Висок
582
510 default_priority_urgent: Спешен
583 enumeration_issue_priorities: Приоритети на задачи
511 default_priority_immediate: Веднага
584 enumeration_doc_categories: Категории документи
512 default_activity_design: Дизайн
585 enumeration_activities: Дейности (time tracking)
513 default_activity_development: Разработка
586 label_file_plural: Файлове
514
587 label_changeset_plural: Ревизии
515 enumeration_issue_priorities: Приоритети на задачи
588 field_column_names: Колони
516 enumeration_doc_categories: Категории документи
589 label_default_columns: По подразбиране
517 enumeration_activities: Дейности (time tracking)
590 setting_issue_list_default_columns: Показвани колони по подразбиране
518 label_file_plural: Файлове
591 setting_repositories_encodings: Кодови таблици
519 label_changeset_plural: Ревизии
592 notice_no_issue_selected: "Няма избрани задачи."
520 field_column_names: Колони
593 label_bulk_edit_selected_issues: Редактиране на задачи
521 label_default_columns: По подразбиране
594 label_no_change_option: (Без промяна)
522 setting_issue_list_default_columns: Показвани колони по подразбиране
595 notice_failed_to_save_issues: "Неуспешен запис на {{count}} задачи от {{total}} избрани: {{ids}}."
523 setting_repositories_encodings: Кодови таблици
596 label_theme: Тема
524 notice_no_issue_selected: "Няма избрани задачи."
597 label_default: По подразбиране
525 label_bulk_edit_selected_issues: Редактиране на задачи
598 label_search_titles_only: Само в заглавията
526 label_no_change_option: (Без промяна)
599 label_nobody: никой
527 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
600 button_change_password: Промяна на парола
528 label_theme: Тема
601 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
529 label_default: По подразбиране
602 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
530 label_search_titles_only: Само в заглавията
603 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
531 label_nobody: никой
604 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
532 button_change_password: Промяна на парола
605 setting_emails_footer: Подтекст за e-mail
533 text_user_mail_option: "За неизбраните проекти, ще получавате известия само за наблюдавани дейности или в които участвате (т.е. автор или назначени на мен)."
606 label_float: Дробно
534 label_user_mail_option_selected: "За всички събития само в избраните проекти..."
607 button_copy: Копиране
535 label_user_mail_option_all: "За всяко събитие в проектите, в които участвам"
608 mail_body_account_information_external: "Можете да използвате вашия {{value}} профил за вход."
536 label_user_mail_option_none: "Само за наблюдавани или в които участвам (автор или назначени на мен)"
609 mail_body_account_information: Информацията за профила ви
537 setting_emails_footer: Подтекст за e-mail
610 setting_protocol: Протокол
538 label_float: Дробно
611 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
539 button_copy: Копиране
612 setting_time_format: Формат на часа
540 mail_body_account_information_external: Можете да използвате вашия "%s" профил за вход.
613 label_registration_activation_by_email: активиране на профила по email
541 mail_body_account_information: Информацията за профила ви
614 mail_subject_account_activation_request: "Заявка за активиране на профил в {{value}}"
542 setting_protocol: Протокол
615 mail_body_account_activation_request: "Има новорегистриран потребител ({{value}}), очакващ вашето одобрение:'"
543 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
616 label_registration_automatic_activation: автоматично активиране
544 setting_time_format: Формат на часа
617 label_registration_manual_activation: ръчно активиране
545 label_registration_activation_by_email: активиране на профила по email
618 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
546 mail_subject_account_activation_request: Заявка за активиране на профил в %s
619 field_time_zone: Часова зона
547 mail_body_account_activation_request: 'Има новорегистриран потребител (%s), очакващ вашето одобрение:'
620 text_caracters_minimum: "Минимум {{count}} символа."
548 label_registration_automatic_activation: автоматично активиране
621 setting_bcc_recipients: Получатели на скрито копие (bcc)
549 label_registration_manual_activation: ръчно активиране
622 button_annotate: Анотация
550 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
623 label_issues_by: "Задачи по {{value}}"
551 field_time_zone: Часова зона
624 field_searchable: С възможност за търсене
552 text_caracters_minimum: Минимум %d символа.
625 label_display_per_page: "На страница по: {{value}}'"
553 setting_bcc_recipients: Получатели на скрито копие (bcc)
626 setting_per_page_options: Опции за страниране
554 button_annotate: Анотация
627 label_age: Възраст
555 label_issues_by: Задачи по %s
628 notice_default_data_loaded: Примерната информацията е успешно заредена.
556 field_searchable: С възможност за търсене
629 text_load_default_configuration: Зареждане на примерна информация
557 label_display_per_page: 'На страница по: %s'
630 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
558 setting_per_page_options: Опции за страниране
631 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: {{value}}"
559 label_age: Възраст
632 button_update: Обновяване
560 notice_default_data_loaded: Примерната информацията е успешно заредена.
633 label_change_properties: Промяна на настройки
561 text_load_default_configuration: Зареждане на примерна информация
634 label_general: Основни
562 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
635 label_repository_plural: Хранилища
563 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %s"
636 label_associated_revisions: Асоциирани ревизии
564 button_update: Обновяване
637 setting_user_format: Потребителски формат
565 label_change_properties: Промяна на настройки
638 text_status_changed_by_changeset: "Приложено с ревизия {{value}}."
566 label_general: Основни
639 label_more: Още
567 label_repository_plural: Хранилища
640 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
568 label_associated_revisions: Асоциирани ревизии
641 label_scm: SCM (Система за контрол на кода)
569 setting_user_format: Потребителски формат
642 text_select_project_modules: 'Изберете активните модули за този проект:'
570 text_status_changed_by_changeset: Приложено с ревизия %s.
643 label_issue_added: Добавена задача
571 label_more: Още
644 label_issue_updated: Обновена задача
572 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
645 label_document_added: Добавен документ
573 label_scm: SCM (Система за контрол на кода)
646 label_message_posted: Добавено съобщение
574 text_select_project_modules: 'Изберете активните модули за този проект:'
647 label_file_added: Добавен файл
575 label_issue_added: Добавена задача
648 label_news_added: Добавена новина
576 label_issue_updated: Обновена задача
649 project_module_boards: Форуми
577 label_document_added: Добавен документ
650 project_module_issue_tracking: Тракинг
578 label_message_posted: Добавено съобщение
651 project_module_wiki: Wiki
579 label_file_added: Добавен файл
652 project_module_files: Файлове
580 label_news_added: Добавена новина
653 project_module_documents: Документи
581 project_module_boards: Форуми
654 project_module_repository: Хранилище
582 project_module_issue_tracking: Тракинг
655 project_module_news: Новини
583 project_module_wiki: Wiki
656 project_module_time_tracking: Отделяне на време
584 project_module_files: Файлове
657 text_file_repository_writable: Възможност за писане в хранилището с файлове
585 project_module_documents: Документи
658 text_default_administrator_account_changed: Сменен фабричния администраторски профил
586 project_module_repository: Хранилище
659 text_rmagick_available: Наличен RMagick (по избор)
587 project_module_news: Новини
660 button_configure: Конфигуриране
588 project_module_time_tracking: Отделяне на време
661 label_plugins: Плъгини
589 text_file_repository_writable: Възможност за писане в хранилището с файлове
662 label_ldap_authentication: LDAP оторизация
590 text_default_administrator_account_changed: Сменен фабричния администраторски профил
663 label_downloads_abbr: D/L
591 text_rmagick_available: Наличен RMagick (по избор)
664 label_this_month: текущия месец
592 button_configure: Конфигуриране
665 label_last_n_days: "последните {{count}} дни"
593 label_plugins: Плъгини
666 label_all_time: всички
594 label_ldap_authentication: LDAP оторизация
667 label_this_year: текущата година
595 label_downloads_abbr: D/L
668 label_date_range: Период
596 label_this_month: текущия месец
669 label_last_week: последната седмица
597 label_last_n_days: последните %d дни
670 label_yesterday: вчера
598 label_all_time: всички
671 label_last_month: последния месец
599 label_this_year: текущата година
672 label_add_another_file: Добавяне на друг файл
600 label_date_range: Период
673 label_optional_description: Незадължително описание
601 label_last_week: последната седмица
674 text_destroy_time_entries_question: %.02f часа са отделени на задачите, които искате да изтриете. Какво избирате?
602 label_yesterday: вчера
675 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
603 label_last_month: последния месец
676 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
604 label_add_another_file: Добавяне на друг файл
677 text_destroy_time_entries: Изтриване на отделеното време
605 label_optional_description: Незадължително описание
678 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
606 text_destroy_time_entries_question: %.02f часа са отделени на задачите, които искате да изтриете. Какво избирате?
679 setting_activity_days_default: Брой дни показвани на таб Дейност
607 error_issue_not_found_in_project: 'Задачата не е намерена или не принадлежи на този проект'
680 label_chronological_order: Хронологичен ред
608 text_assign_time_entries_to_project: Прехвърляне на отделеното време към проект
681 field_comments_sorting: Сортиране на коментарите
609 text_destroy_time_entries: Изтриване на отделеното време
682 label_reverse_chronological_order: Обратен хронологичен ред
610 text_reassign_time_entries: 'Прехвърляне на отделеното време към задача:'
683 label_preferences: Предпочитания
611 setting_activity_days_default: Брой дни показвани на таб Дейност
684 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
612 label_chronological_order: Хронологичен ред
685 label_overall_activity: Цялостна дейност
613 field_comments_sorting: Сортиране на коментарите
686 setting_default_projects_public: Новите проекти са публични по подразбиране
614 label_reverse_chronological_order: Обратен хронологичен ред
687 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
615 label_preferences: Предпочитания
688 label_planning: Планиране
616 setting_display_subprojects_issues: Показване на подпроектите в проектите по подразбиране
689 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
617 label_overall_activity: Цялостна дейност
690 label_and_its_subprojects: "{{value}} and its subprojects"
618 setting_default_projects_public: Новите проекти са публични по подразбиране
691 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
619 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
692 mail_subject_reminder: "{{count}} issue(s) due in the next days"
620 label_planning: Планиране
693 text_user_wrote: "{{value}} wrote:'"
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
694 label_duplicated_by: duplicated by
622 label_and_its_subprojects: %s and its subprojects
695 setting_enabled_scm: Enabled SCM
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
696 text_enumeration_category_reassign_to: 'Reassign them to this value:'
624 mail_subject_reminder: "%d issue(s) due in the next days"
697 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
625 text_user_wrote: '%s wrote:'
698 label_incoming_emails: Incoming emails
626 label_duplicated_by: duplicated by
699 label_generate_key: Generate a key
627 setting_enabled_scm: Enabled SCM
700 setting_mail_handler_api_enabled: Enable WS for incoming emails
628 text_enumeration_category_reassign_to: 'Reassign them to this value:'
701 setting_mail_handler_api_key: API key
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
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."
630 label_incoming_emails: Incoming emails
703 field_parent_title: Parent page
631 label_generate_key: Generate a key
704 label_issue_watchers: Watchers
632 setting_mail_handler_api_enabled: Enable WS for incoming emails
705 setting_commit_logs_encoding: Commit messages encoding
633 setting_mail_handler_api_key: API key
706 button_quote: Quote
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."
707 setting_sequential_project_identifiers: Generate sequential project identifiers
635 field_parent_title: Parent page
708 notice_unable_delete_version: Unable to delete version
636 label_issue_watchers: Watchers
709 label_renamed: renamed
637 setting_commit_logs_encoding: Commit messages encoding
710 label_copied: copied
638 button_quote: Quote
711 setting_plain_text_mail: plain text only (no HTML)
639 setting_sequential_project_identifiers: Generate sequential project identifiers
712 permission_view_files: View files
640 notice_unable_delete_version: Unable to delete version
713 permission_edit_issues: Edit issues
641 label_renamed: renamed
714 permission_edit_own_time_entries: Edit own time logs
642 label_copied: copied
715 permission_manage_public_queries: Manage public queries
643 setting_plain_text_mail: plain text only (no HTML)
716 permission_add_issues: Add issues
644 permission_view_files: View files
717 permission_log_time: Log spent time
645 permission_edit_issues: Edit issues
718 permission_view_changesets: View changesets
646 permission_edit_own_time_entries: Edit own time logs
719 permission_view_time_entries: View spent time
647 permission_manage_public_queries: Manage public queries
720 permission_manage_versions: Manage versions
648 permission_add_issues: Add issues
721 permission_manage_wiki: Manage wiki
649 permission_log_time: Log spent time
722 permission_manage_categories: Manage issue categories
650 permission_view_changesets: View changesets
723 permission_protect_wiki_pages: Protect wiki pages
651 permission_view_time_entries: View spent time
724 permission_comment_news: Comment news
652 permission_manage_versions: Manage versions
725 permission_delete_messages: Delete messages
653 permission_manage_wiki: Manage wiki
726 permission_select_project_modules: Select project modules
654 permission_manage_categories: Manage issue categories
727 permission_manage_documents: Manage documents
655 permission_protect_wiki_pages: Protect wiki pages
728 permission_edit_wiki_pages: Edit wiki pages
656 permission_comment_news: Comment news
729 permission_add_issue_watchers: Add watchers
657 permission_delete_messages: Delete messages
730 permission_view_gantt: View gantt chart
658 permission_select_project_modules: Select project modules
731 permission_move_issues: Move issues
659 permission_manage_documents: Manage documents
732 permission_manage_issue_relations: Manage issue relations
660 permission_edit_wiki_pages: Edit wiki pages
733 permission_delete_wiki_pages: Delete wiki pages
661 permission_add_issue_watchers: Add watchers
734 permission_manage_boards: Manage boards
662 permission_view_gantt: View gantt chart
735 permission_delete_wiki_pages_attachments: Delete attachments
663 permission_move_issues: Move issues
736 permission_view_wiki_edits: View wiki history
664 permission_manage_issue_relations: Manage issue relations
737 permission_add_messages: Post messages
665 permission_delete_wiki_pages: Delete wiki pages
738 permission_view_messages: View messages
666 permission_manage_boards: Manage boards
739 permission_manage_files: Manage files
667 permission_delete_wiki_pages_attachments: Delete attachments
740 permission_edit_issue_notes: Edit notes
668 permission_view_wiki_edits: View wiki history
741 permission_manage_news: Manage news
669 permission_add_messages: Post messages
742 permission_view_calendar: View calendrier
670 permission_view_messages: View messages
743 permission_manage_members: Manage members
671 permission_manage_files: Manage files
744 permission_edit_messages: Edit messages
672 permission_edit_issue_notes: Edit notes
745 permission_delete_issues: Delete issues
673 permission_manage_news: Manage news
746 permission_view_issue_watchers: View watchers list
674 permission_view_calendar: View calendrier
747 permission_manage_repository: Manage repository
675 permission_manage_members: Manage members
748 permission_commit_access: Commit access
676 permission_edit_messages: Edit messages
749 permission_browse_repository: Browse repository
677 permission_delete_issues: Delete issues
750 permission_view_documents: View documents
678 permission_view_issue_watchers: View watchers list
751 permission_edit_project: Edit project
679 permission_manage_repository: Manage repository
752 permission_add_issue_notes: Add notes
680 permission_commit_access: Commit access
753 permission_save_queries: Save queries
681 permission_browse_repository: Browse repository
754 permission_view_wiki_pages: View wiki
682 permission_view_documents: View documents
755 permission_rename_wiki_pages: Rename wiki pages
683 permission_edit_project: Edit project
756 permission_edit_time_entries: Edit time logs
684 permission_add_issue_notes: Add notes
757 permission_edit_own_issue_notes: Edit own notes
685 permission_save_queries: Save queries
758 setting_gravatar_enabled: Use Gravatar user icons
686 permission_view_wiki_pages: View wiki
759 label_example: Example
687 permission_rename_wiki_pages: Rename wiki pages
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."
688 permission_edit_time_entries: Edit time logs
761 permission_edit_own_messages: Edit own messages
689 permission_edit_own_issue_notes: Edit own notes
762 permission_delete_own_messages: Delete own messages
690 setting_gravatar_enabled: Use Gravatar user icons
763 label_user_activity: "{{value}}'s activity"
691 label_example: Example
764 label_updated_time_by: "Updated by {{author}} {{age}} ago"
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."
765 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
693 permission_edit_own_messages: Edit own messages
766 setting_diff_max_lines_displayed: Max number of diff lines displayed
694 permission_delete_own_messages: Delete own messages
767 text_plugin_assets_writable: Plugin assets directory writable
695 label_user_activity: "%s's activity"
768 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
696 label_updated_time_by: Updated by %s %s ago
769 button_create_and_continue: Create and continue
697 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
770 text_custom_field_possible_values_info: 'One line for each value'
698 setting_diff_max_lines_displayed: Max number of diff lines displayed
771 label_display: Display
699 text_plugin_assets_writable: Plugin assets directory writable
772 field_editable: Editable
700 warning_attachments_not_saved: "%d file(s) could not be saved."
773 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
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
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:
20 time:
4 actionview_datehelper_select_month_names: Gener,Febrer,Març,Abril,Maig,Juny,Juliol,Agost,Setembre,Octubre,Novembre,Desembre
21 formats:
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Abr,Mai,Jun,Jul,Ago,Set,Oct,Nov,Dec
22 default: "%a, %d %b %Y %H:%M:%S %z"
6 actionview_datehelper_select_month_prefix:
23 short: "%d %b %H:%M"
7 actionview_datehelper_select_year_prefix:
24 long: "%B %d, %Y %H:%M"
8 actionview_datehelper_time_in_words_day: 1 dia
25 am: "am"
9 actionview_datehelper_time_in_words_day_plural: %d dies
26 pm: "pm"
10 actionview_datehelper_time_in_words_hour_about: aproximadament una hora
27
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadament %d hores
28 datetime:
12 actionview_datehelper_time_in_words_hour_about_single: aproximadament una hora
29 distance_in_words:
13 actionview_datehelper_time_in_words_minute: 1 minut
30 half_a_minute: "half a minute"
14 actionview_datehelper_time_in_words_minute_half: mig minut
31 less_than_x_seconds:
15 actionview_datehelper_time_in_words_minute_less_than: "menys d'un minut"
32 one: "less than 1 second"
16 actionview_datehelper_time_in_words_minute_plural: %d minuts
33 other: "less than {{count}} seconds"
17 actionview_datehelper_time_in_words_minute_single: 1 minut
34 x_seconds:
18 actionview_datehelper_time_in_words_second_less_than: "menys d'un segon"
35 one: "1 second"
19 actionview_datehelper_time_in_words_second_less_than_plural: menys de %d segons
36 other: "{{count}} seconds"
20 actionview_instancetag_blank_option: Seleccioneu
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
95 actionview_instancetag_blank_option: Seleccioneu
23 activerecord_error_exclusion: està reservat
96
24 activerecord_error_invalid: no és vàlid
97 general_text_No: 'No'
25 activerecord_error_confirmation: la confirmació no coincideix
98 general_text_Yes: 'Si'
26 activerecord_error_accepted: "s'ha d'acceptar"
99 general_text_no: 'no'
27 activerecord_error_empty: no pot estar buit
100 general_text_yes: 'si'
28 activerecord_error_blank: no pot estar en blanc
101 general_lang_name: 'Català'
29 activerecord_error_too_long: és massa llarg
102 general_csv_separator: ';'
30 activerecord_error_too_short: és massa curt
103 general_csv_decimal_separator: ','
31 activerecord_error_wrong_length: la longitud és incorrecta
104 general_csv_encoding: ISO-8859-15
32 activerecord_error_taken: "ja s'està utilitzant"
105 general_pdf_encoding: ISO-8859-15
33 activerecord_error_not_a_number: no és un número
106 general_first_day_of_week: '1'
34 activerecord_error_not_a_date: no és una data vàlida
107
35 activerecord_error_greater_than_start_date: ha de ser superior que la data inicial
108 notice_account_updated: "El compte s'ha actualitzat correctament."
36 activerecord_error_not_same_project: no pertany al mateix projecte
109 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
37 activerecord_error_circular_dependency: Aquesta relació crearia una dependència circular
110 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
38
111 notice_account_wrong_password: Contrasenya incorrecta
39 general_fmt_age: %d any
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."
40 general_fmt_age_plural: %d anys
113 notice_account_unknown_email: Usuari desconegut.
41 general_fmt_date: %%d/%%m/%%Y
114 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
115 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
116 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
44 general_fmt_time: %%H:%%M
117 notice_successful_create: "S'ha creat correctament."
45 general_text_No: 'No'
118 notice_successful_update: "S'ha modificat correctament."
46 general_text_Yes: 'Si'
119 notice_successful_delete: "S'ha suprimit correctament."
47 general_text_no: 'no'
120 notice_successful_connection: "S'ha connectat correctament."
48 general_text_yes: 'si'
121 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
49 general_lang_name: 'Català'
122 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
50 general_csv_separator: ';'
123 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
51 general_csv_decimal_separator: ','
124 notice_email_sent: "S'ha enviat un correu electrònic a {{value}}"
52 general_csv_encoding: ISO-8859-15
125 notice_email_error: "S'ha produït un error en enviar el correu ({{value}})"
53 general_pdf_encoding: ISO-8859-15
126 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
54 general_day_names: Dilluns,Dimarts,Dimecres,Dijous,Divendres,Dissabte,Diumenge
127 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de {{count}} seleccionats: {{value}}."
55 general_first_day_of_week: '1'
128 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
56
129 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
57 notice_account_updated: "El compte s'ha actualitzat correctament."
130 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
58 notice_account_invalid_creditentials: Usuari o contrasenya invàlid
131 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
59 notice_account_password_updated: "La contrasenya s'ha modificat correctament."
132
60 notice_account_wrong_password: Contrasenya incorrecta
133 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: {{value}} "
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."
134 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
62 notice_account_unknown_email: Usuari desconegut.
135 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: {{value}}"
63 notice_can_t_change_password: "Aquest compte utilitza una font d'autenticació externa. No és possible canviar la contrasenya."
136 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
64 notice_account_lost_email_sent: "S'ha enviat un correu electrònic amb instruccions per a seleccionar una contrasenya nova."
137 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
65 notice_account_activated: "El compte s'ha activat. Ara podeu entrar."
138
66 notice_successful_create: "S'ha creat correctament."
139 mail_subject_lost_password: "Contrasenya de {{value}}"
67 notice_successful_update: "S'ha modificat correctament."
140 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
68 notice_successful_delete: "S'ha suprimit correctament."
141 mail_subject_register: "Activació del compte de {{value}}"
69 notice_successful_connection: "S'ha connectat correctament."
142 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
70 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
143 mail_body_account_information_external: "Podeu utilitzar el compte «{{value}}» per a entrar."
71 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
144 mail_body_account_information: Informació del compte
72 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
145 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de {{value}}"
73 notice_email_sent: "S'ha enviat un correu electrònic a %s"
146 mail_body_account_activation_request: "S'ha registrat un usuari nou ({{value}}). El seu compte està pendent d'aprovació:"
74 notice_email_error: "S'ha produït un error en enviar el correu (%s)"
147 mail_subject_reminder: "%d assumptes venceran els següents {{count}} dies"
75 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
148 mail_body_reminder: "{{count}} assumptes que teniu assignades venceran els següents {{days}} dies:"
76 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de %d seleccionats: %s."
149
77 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
150 gui_validation_error: 1 error
78 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
151 gui_validation_error_plural: "{{count}} errors"
79 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
152
80 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
153 field_name: Nom
81
154 field_description: Descripció
82 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %s"
155 field_summary: Resum
83 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
156 field_is_required: Necessari
84 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: %s"
157 field_firstname: Nom
85 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
158 field_lastname: Cognom
86 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
159 field_mail: Correu electrònic
87
160 field_filename: Fitxer
88 mail_subject_lost_password: Contrasenya de %s
161 field_filesize: Mida
89 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
162 field_downloads: Baixades
90 mail_subject_register: Activació del compte de %s
163 field_author: Autor
91 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
164 field_created_on: Creat
92 mail_body_account_information_external: Podeu utilitzar el compte «%s» per a entrar.
165 field_updated_on: Actualitzat
93 mail_body_account_information: Informació del compte
166 field_field_format: Format
94 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %s"
167 field_is_for_all: Per a tots els projectes
95 mail_body_account_activation_request: "S'ha registrat un usuari nou (%s). El seu compte està pendent d'aprovació:"
168 field_possible_values: Valores possibles
96 mail_subject_reminder: "%d assumptes venceran els següents %d dies"
169 field_regexp: Expressió regular
97 mail_body_reminder: "%d assumptes que teniu assignades venceran els següents %d dies:"
170 field_min_length: Longitud mínima
98
171 field_max_length: Longitud màxima
99 gui_validation_error: 1 error
172 field_value: Valor
100 gui_validation_error_plural: %d errors
173 field_category: Categoria
101
174 field_title: Títol
102 field_name: Nom
175 field_project: Projecte
103 field_description: Descripció
176 field_issue: Assumpte
104 field_summary: Resum
177 field_status: Estat
105 field_is_required: Necessari
178 field_notes: Notes
106 field_firstname: Nom
179 field_is_closed: Assumpte tancat
107 field_lastname: Cognom
180 field_is_default: Estat predeterminat
108 field_mail: Correu electrònic
181 field_tracker: Seguidor
109 field_filename: Fitxer
182 field_subject: Tema
110 field_filesize: Mida
183 field_due_date: Data de venciment
111 field_downloads: Baixades
184 field_assigned_to: Assignat a
112 field_author: Autor
185 field_priority: Prioritat
113 field_created_on: Creat
186 field_fixed_version: Versió objectiu
114 field_updated_on: Actualitzat
187 field_user: Usuari
115 field_field_format: Format
188 field_role: Rol
116 field_is_for_all: Per a tots els projectes
189 field_homepage: Pàgina web
117 field_possible_values: Valores possibles
190 field_is_public: Públic
118 field_regexp: Expressió regular
191 field_parent: Subprojecte de
119 field_min_length: Longitud mínima
192 field_is_in_chlog: Assumptes mostrats en el registre de canvis
120 field_max_length: Longitud màxima
193 field_is_in_roadmap: Assumptes mostrats en la planificació
121 field_value: Valor
194 field_login: Entrada
122 field_category: Categoria
195 field_mail_notification: Notificacions per correu electrònic
123 field_title: Títol
196 field_admin: Administrador
124 field_project: Projecte
197 field_last_login_on: Última connexió
125 field_issue: Assumpte
198 field_language: Idioma
126 field_status: Estat
199 field_effective_date: Data
127 field_notes: Notes
200 field_password: Contrasenya
128 field_is_closed: Assumpte tancat
201 field_new_password: Contrasenya nova
129 field_is_default: Estat predeterminat
202 field_password_confirmation: Confirmació
130 field_tracker: Seguidor
203 field_version: Versió
131 field_subject: Tema
204 field_type: Tipus
132 field_due_date: Data de venciment
205 field_host: Ordinador
133 field_assigned_to: Assignat a
206 field_port: Port
134 field_priority: Prioritat
207 field_account: Compte
135 field_fixed_version: Versió objectiu
208 field_base_dn: Base DN
136 field_user: Usuari
209 field_attr_login: "Atribut d'entrada"
137 field_role: Rol
210 field_attr_firstname: Atribut del nom
138 field_homepage: Pàgina web
211 field_attr_lastname: Atribut del cognom
139 field_is_public: Públic
212 field_attr_mail: Atribut del correu electrònic
140 field_parent: Subprojecte de
213 field_onthefly: "Creació de l'usuari «al vol»"
141 field_is_in_chlog: Assumptes mostrats en el registre de canvis
214 field_start_date: Inici
142 field_is_in_roadmap: Assumptes mostrats en la planificació
215 field_done_ratio: %% realitzat
143 field_login: Entrada
216 field_auth_source: "Mode d'autenticació"
144 field_mail_notification: Notificacions per correu electrònic
217 field_hide_mail: "Oculta l'adreça de correu electrònic"
145 field_admin: Administrador
218 field_comments: Comentari
146 field_last_login_on: Última connexió
219 field_url: URL
147 field_language: Idioma
220 field_start_page: Pàgina inicial
148 field_effective_date: Data
221 field_subproject: Subprojecte
149 field_password: Contrasenya
222 field_hours: Hores
150 field_new_password: Contrasenya nova
223 field_activity: Activitat
151 field_password_confirmation: Confirmació
224 field_spent_on: Data
152 field_version: Versió
225 field_identifier: Identificador
153 field_type: Tipus
226 field_is_filter: "S'ha utilitzat com a filtre"
154 field_host: Ordinador
227 field_issue_to_id: Assumpte relacionat
155 field_port: Port
228 field_delay: Retard
156 field_account: Compte
229 field_assignable: Es poden assignar assumptes a aquest rol
157 field_base_dn: Base DN
230 field_redirect_existing_links: Redirigeix els enllaços existents
158 field_attr_login: "Atribut d'entrada"
231 field_estimated_hours: Temps previst
159 field_attr_firstname: Atribut del nom
232 field_column_names: Columnes
160 field_attr_lastname: Atribut del cognom
233 field_time_zone: Zona horària
161 field_attr_mail: Atribut del correu electrònic
234 field_searchable: Es pot cercar
162 field_onthefly: "Creació de l'usuari «al vol»"
235 field_default_value: Valor predeterminat
163 field_start_date: Inici
236 field_comments_sorting: Mostra els comentaris
164 field_done_ratio: %% realitzat
237 field_parent_title: Pàgina pare
165 field_auth_source: "Mode d'autenticació"
238
166 field_hide_mail: "Oculta l'adreça de correu electrònic"
239 setting_app_title: "Títol de l'aplicació"
167 field_comments: Comentari
240 setting_app_subtitle: "Subtítol de l'aplicació"
168 field_url: URL
241 setting_welcome_text: Text de benvinguda
169 field_start_page: Pàgina inicial
242 setting_default_language: Idioma predeterminat
170 field_subproject: Subprojecte
243 setting_login_required: Es necessita autenticació
171 field_hours: Hores
244 setting_self_registration: Registre automàtic
172 field_activity: Activitat
245 setting_attachment_max_size: Mida màxima dels adjunts
173 field_spent_on: Data
246 setting_issues_export_limit: "Límit d'exportació d'assumptes"
174 field_identifier: Identificador
247 setting_mail_from: "Adreça de correu electrònic d'emissió"
175 field_is_filter: "S'ha utilitzat com a filtre"
248 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
176 field_issue_to_id: Assumpte relacionat
249 setting_host_name: "Nom de l'ordinador"
177 field_delay: Retard
250 setting_text_formatting: Format del text
178 field_assignable: Es poden assignar assumptes a aquest rol
251 setting_wiki_compression: "Comprimeix l'historial del wiki"
179 field_redirect_existing_links: Redirigeix els enllaços existents
252 setting_feeds_limit: Límit de contingut del canal
180 field_estimated_hours: Temps previst
253 setting_default_projects_public: Els projectes nous són públics per defecte
181 field_column_names: Columnes
254 setting_autofetch_changesets: Omple automàticament les publicacions
182 field_time_zone: Zona horària
255 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
183 field_searchable: Es pot cercar
256 setting_commit_ref_keywords: Paraules claus per a la referència
184 field_default_value: Valor predeterminat
257 setting_commit_fix_keywords: Paraules claus per a la correcció
185 field_comments_sorting: Mostra els comentaris
258 setting_autologin: Entrada automàtica
186 field_parent_title: Pàgina pare
259 setting_date_format: Format de la data
187
260 setting_time_format: Format de hora
188 setting_app_title: "Títol de l'aplicació"
261 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
189 setting_app_subtitle: "Subtítol de l'aplicació"
262 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
190 setting_welcome_text: Text de benvinguda
263 setting_repositories_encodings: Codificacions del dipòsit
191 setting_default_language: Idioma predeterminat
264 setting_commit_logs_encoding: Codificació dels missatges publicats
192 setting_login_required: Es necessita autenticació
265 setting_emails_footer: Peu dels correus electrònics
193 setting_self_registration: Registre automàtic
266 setting_protocol: Protocol
194 setting_attachment_max_size: Mida màxima dels adjunts
267 setting_per_page_options: Opcions dels objectes per pàgina
195 setting_issues_export_limit: "Límit d'exportació d'assumptes"
268 setting_user_format: "Format de com mostrar l'usuari"
196 setting_mail_from: "Adreça de correu electrònic d'emissió"
269 setting_activity_days_default: "Dies a mostrar l'activitat del projecte"
197 setting_bcc_recipients: Vincula els destinataris de les còpies amb carbó (bcc)
270 setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte"
198 setting_host_name: "Nom de l'ordinador"
271 setting_enabled_scm: "Habilita l'SCM"
199 setting_text_formatting: Format del text
272 setting_mail_handler_api_enabled: "Habilita el WS per correus electrònics d'entrada"
200 setting_wiki_compression: "Comprimeix l'historial del wiki"
273 setting_mail_handler_api_key: Clau API
201 setting_feeds_limit: Límit de contingut del canal
274 setting_sequential_project_identifiers: Genera identificadors de projecte seqüencials
202 setting_default_projects_public: Els projectes nous són públics per defecte
275
203 setting_autofetch_changesets: Omple automàticament les publicacions
276 project_module_issue_tracking: "Seguidor d'assumptes"
204 setting_sys_api_enabled: Habilita el WS per a la gestió del dipòsit
277 project_module_time_tracking: Seguidor de temps
205 setting_commit_ref_keywords: Paraules claus per a la referència
278 project_module_news: Noticies
206 setting_commit_fix_keywords: Paraules claus per a la correcció
279 project_module_documents: Documents
207 setting_autologin: Entrada automàtica
280 project_module_files: Fitxers
208 setting_date_format: Format de la data
281 project_module_wiki: Wiki
209 setting_time_format: Format de hora
282 project_module_repository: Dipòsit
210 setting_cross_project_issue_relations: "Permet les relacions d'assumptes entre projectes"
283 project_module_boards: Taulers
211 setting_issue_list_default_columns: "Columnes mostrades per defecte en la llista d'assumptes"
284
212 setting_repositories_encodings: Codificacions del dipòsit
285 label_user: Usuari
213 setting_commit_logs_encoding: Codificació dels missatges publicats
286 label_user_plural: Usuaris
214 setting_emails_footer: Peu dels correus electrònics
287 label_user_new: Usuari nou
215 setting_protocol: Protocol
288 label_project: Projecte
216 setting_per_page_options: Opcions dels objectes per pàgina
289 label_project_new: Projecte nou
217 setting_user_format: "Format de com mostrar l'usuari"
290 label_project_plural: Projectes
218 setting_activity_days_default: "Dies a mostrar l'activitat del projecte"
291 label_x_projects:
219 setting_display_subprojects_issues: "Mostra els assumptes d'un subprojecte en el projecte pare per defecte"
292 zero: no projects
220 setting_enabled_scm: "Habilita l'SCM"
293 one: 1 project
221 setting_mail_handler_api_enabled: "Habilita el WS per correus electrònics d'entrada"
294 other: "{{count}} projects"
222 setting_mail_handler_api_key: Clau API
295 label_project_all: Tots els projectes
223 setting_sequential_project_identifiers: Genera identificadors de projecte seqüencials
296 label_project_latest: Els últims projectes
224
297 label_issue: Assumpte
225 project_module_issue_tracking: "Seguidor d'assumptes"
298 label_issue_new: Assumpte nou
226 project_module_time_tracking: Seguidor de temps
299 label_issue_plural: Assumptes
227 project_module_news: Noticies
300 label_issue_view_all: Visualitza tots els assumptes
228 project_module_documents: Documents
301 label_issues_by: "Assumptes per {{value}}"
229 project_module_files: Fitxers
302 label_issue_added: Assumpte afegit
230 project_module_wiki: Wiki
303 label_issue_updated: Assumpte actualitzat
231 project_module_repository: Dipòsit
304 label_document: Document
232 project_module_boards: Taulers
305 label_document_new: Document nou
233
306 label_document_plural: Documents
234 label_user: Usuari
307 label_document_added: Document afegit
235 label_user_plural: Usuaris
308 label_role: Rol
236 label_user_new: Usuari nou
309 label_role_plural: Rols
237 label_project: Projecte
310 label_role_new: Rol nou
238 label_project_new: Projecte nou
311 label_role_and_permissions: Rols i permisos
239 label_project_plural: Projectes
312 label_member: Membre
240 label_project_all: Tots els projectes
313 label_member_new: Membre nou
241 label_project_latest: Els últims projectes
314 label_member_plural: Membres
242 label_issue: Assumpte
315 label_tracker: Seguidor
243 label_issue_new: Assumpte nou
316 label_tracker_plural: Seguidors
244 label_issue_plural: Assumptes
317 label_tracker_new: Seguidor nou
245 label_issue_view_all: Visualitza tots els assumptes
318 label_workflow: Flux de treball
246 label_issues_by: Assumptes per %s
319 label_issue_status: "Estat de l'assumpte"
247 label_issue_added: Assumpte afegit
320 label_issue_status_plural: "Estats de l'assumpte"
248 label_issue_updated: Assumpte actualitzat
321 label_issue_status_new: Estat nou
249 label_document: Document
322 label_issue_category: "Categoria de l'assumpte"
250 label_document_new: Document nou
323 label_issue_category_plural: "Categories de l'assumpte"
251 label_document_plural: Documents
324 label_issue_category_new: Categoria nova
252 label_document_added: Document afegit
325 label_custom_field: Camp personalitzat
253 label_role: Rol
326 label_custom_field_plural: Camps personalitzats
254 label_role_plural: Rols
327 label_custom_field_new: Camp personalitzat nou
255 label_role_new: Rol nou
328 label_enumerations: Enumeracions
256 label_role_and_permissions: Rols i permisos
329 label_enumeration_new: Valor nou
257 label_member: Membre
330 label_information: Informació
258 label_member_new: Membre nou
331 label_information_plural: Informació
259 label_member_plural: Membres
332 label_please_login: Entreu
260 label_tracker: Seguidor
333 label_register: Registre
261 label_tracker_plural: Seguidors
334 label_password_lost: Contrasenya perduda
262 label_tracker_new: Seguidor nou
335 label_home: Inici
263 label_workflow: Flux de treball
336 label_my_page: La meva pàgina
264 label_issue_status: "Estat de l'assumpte"
337 label_my_account: El meu compte
265 label_issue_status_plural: "Estats de l'assumpte"
338 label_my_projects: Els meus projectes
266 label_issue_status_new: Estat nou
339 label_administration: Administració
267 label_issue_category: "Categoria de l'assumpte"
340 label_login: Entra
268 label_issue_category_plural: "Categories de l'assumpte"
341 label_logout: Surt
269 label_issue_category_new: Categoria nova
342 label_help: Ajuda
270 label_custom_field: Camp personalitzat
343 label_reported_issues: Assumptes informats
271 label_custom_field_plural: Camps personalitzats
344 label_assigned_to_me_issues: Assumptes assignats a mi
272 label_custom_field_new: Camp personalitzat nou
345 label_last_login: Última connexió
273 label_enumerations: Enumeracions
346 label_registered_on: Informat el
274 label_enumeration_new: Valor nou
347 label_activity: Activitat
275 label_information: Informació
348 label_overall_activity: Activitat global
276 label_information_plural: Informació
349 label_new: Nou
277 label_please_login: Entreu
350 label_logged_as: Heu entrat com a
278 label_register: Registre
351 label_environment: Entorn
279 label_password_lost: Contrasenya perduda
352 label_authentication: Autenticació
280 label_home: Inici
353 label_auth_source: "Mode d'autenticació"
281 label_my_page: La meva pàgina
354 label_auth_source_new: "Mode d'autenticació nou"
282 label_my_account: El meu compte
355 label_auth_source_plural: "Modes d'autenticació"
283 label_my_projects: Els meus projectes
356 label_subproject_plural: Subprojectes
284 label_administration: Administració
357 label_and_its_subprojects: "{{value}} i els seus subprojectes"
285 label_login: Entra
358 label_min_max_length: Longitud mín - max
286 label_logout: Surt
359 label_list: Llist
287 label_help: Ajuda
360 label_date: Data
288 label_reported_issues: Assumptes informats
361 label_integer: Enter
289 label_assigned_to_me_issues: Assumptes assignats a mi
362 label_float: Flotant
290 label_last_login: Última connexió
363 label_boolean: Booleà
291 label_last_updates: Última actualització
364 label_string: Text
292 label_last_updates_plural: %d última actualització
365 label_text: Text llarg
293 label_registered_on: Informat el
366 label_attribute: Atribut
294 label_activity: Activitat
367 label_attribute_plural: Atributs
295 label_overall_activity: Activitat global
368 label_download: "{{count}} baixada"
296 label_new: Nou
369 label_download_plural: "{{count}} baixades"
297 label_logged_as: Heu entrat com a
370 label_no_data: Sense dades a mostrar
298 label_environment: Entorn
371 label_change_status: "Canvia l'estat"
299 label_authentication: Autenticació
372 label_history: Historial
300 label_auth_source: "Mode d'autenticació"
373 label_attachment: Fitxer
301 label_auth_source_new: "Mode d'autenticació nou"
374 label_attachment_new: Fitxer nou
302 label_auth_source_plural: "Modes d'autenticació"
375 label_attachment_delete: Suprimeix el fitxer
303 label_subproject_plural: Subprojectes
376 label_attachment_plural: Fitxers
304 label_and_its_subprojects: %s i els seus subprojectes
377 label_file_added: Fitxer afegit
305 label_min_max_length: Longitud mín - max
378 label_report: Informe
306 label_list: Llist
379 label_report_plural: Informes
307 label_date: Data
380 label_news: Noticies
308 label_integer: Enter
381 label_news_new: Afegeix noticies
309 label_float: Flotant
382 label_news_plural: Noticies
310 label_boolean: Booleà
383 label_news_latest: Últimes noticies
311 label_string: Text
384 label_news_view_all: Visualitza totes les noticies
312 label_text: Text llarg
385 label_news_added: Noticies afegides
313 label_attribute: Atribut
386 label_change_log: Registre de canvis
314 label_attribute_plural: Atributs
387 label_settings: Paràmetres
315 label_download: %d baixada
388 label_overview: Resum
316 label_download_plural: %d baixades
389 label_version: Versió
317 label_no_data: Sense dades a mostrar
390 label_version_new: Versió nova
318 label_change_status: "Canvia l'estat"
391 label_version_plural: Versions
319 label_history: Historial
392 label_confirmation: Confirmació
320 label_attachment: Fitxer
393 label_export_to: 'També disponible a:'
321 label_attachment_new: Fitxer nou
394 label_read: Llegeix...
322 label_attachment_delete: Suprimeix el fitxer
395 label_public_projects: Projectes públics
323 label_attachment_plural: Fitxers
396 label_open_issues: obert
324 label_file_added: Fitxer afegit
397 label_open_issues_plural: oberts
325 label_report: Informe
398 label_closed_issues: tancat
326 label_report_plural: Informes
399 label_closed_issues_plural: tancats
327 label_news: Noticies
400 label_x_open_issues_abbr_on_total:
328 label_news_new: Afegeix noticies
401 zero: 0 open / {{total}}
329 label_news_plural: Noticies
402 one: 1 open / {{total}}
330 label_news_latest: Últimes noticies
403 other: "{{count}} open / {{total}}"
331 label_news_view_all: Visualitza totes les noticies
404 label_x_open_issues_abbr:
332 label_news_added: Noticies afegides
405 zero: 0 open
333 label_change_log: Registre de canvis
406 one: 1 open
334 label_settings: Paràmetres
407 other: "{{count}} open"
335 label_overview: Resum
408 label_x_closed_issues_abbr:
336 label_version: Versió
409 zero: 0 closed
337 label_version_new: Versió nova
410 one: 1 closed
338 label_version_plural: Versions
411 other: "{{count}} closed"
339 label_confirmation: Confirmació
412 label_total: Total
340 label_export_to: 'També disponible a:'
413 label_permissions: Permisos
341 label_read: Llegeix...
414 label_current_status: Estat actual
342 label_public_projects: Projectes públics
415 label_new_statuses_allowed: Nous estats autoritzats
343 label_open_issues: obert
416 label_all: tots
344 label_open_issues_plural: oberts
417 label_none: cap
345 label_closed_issues: tancat
418 label_nobody: ningú
346 label_closed_issues_plural: tancats
419 label_next: Següent
347 label_total: Total
420 label_previous: Anterior
348 label_permissions: Permisos
421 label_used_by: Utilitzat per
349 label_current_status: Estat actual
422 label_details: Detalls
350 label_new_statuses_allowed: Nous estats autoritzats
423 label_add_note: Afegeix una nota
351 label_all: tots
424 label_per_page: Per pàgina
352 label_none: cap
425 label_calendar: Calendari
353 label_nobody: ningú
426 label_months_from: mesos des de
354 label_next: Següent
427 label_gantt: Gantt
355 label_previous: Anterior
428 label_internal: Intern
356 label_used_by: Utilitzat per
429 label_last_changes: "últims {{count}} canvis"
357 label_details: Detalls
430 label_change_view_all: Visualitza tots els canvis
358 label_add_note: Afegeix una nota
431 label_personalize_page: Personalitza aquesta pàgina
359 label_per_page: Per pàgina
432 label_comment: Comentari
360 label_calendar: Calendari
433 label_comment_plural: Comentaris
361 label_months_from: mesos des de
434 label_x_comments:
362 label_gantt: Gantt
435 zero: no comments
363 label_internal: Intern
436 one: 1 comment
364 label_last_changes: últims %d canvis
437 other: "{{count}} comments"
365 label_change_view_all: Visualitza tots els canvis
438 label_comment_add: Afegeix un comentari
366 label_personalize_page: Personalitza aquesta pàgina
439 label_comment_added: Comentari afegit
367 label_comment: Comentari
440 label_comment_delete: Suprimeix comentaris
368 label_comment_plural: Comentaris
441 label_query: Consulta personalitzada
369 label_comment_add: Afegeix un comentari
442 label_query_plural: Consultes personalitzades
370 label_comment_added: Comentari afegit
443 label_query_new: Consulta nova
371 label_comment_delete: Suprimeix comentaris
444 label_filter_add: Afegeix un filtre
372 label_query: Consulta personalitzada
445 label_filter_plural: Filtres
373 label_query_plural: Consultes personalitzades
446 label_equals: és
374 label_query_new: Consulta nova
447 label_not_equals: no és
375 label_filter_add: Afegeix un filtre
448 label_in_less_than: en menys de
376 label_filter_plural: Filtres
449 label_in_more_than: en més de
377 label_equals: és
450 label_in: en
378 label_not_equals: no és
451 label_today: avui
379 label_in_less_than: en menys de
452 label_all_time: tot el temps
380 label_in_more_than: en més de
453 label_yesterday: ahir
381 label_in: en
454 label_this_week: aquesta setmana
382 label_today: avui
455 label_last_week: "l'última setmana"
383 label_all_time: tot el temps
456 label_last_n_days: "els últims {{count}} dies"
384 label_yesterday: ahir
457 label_this_month: aquest més
385 label_this_week: aquesta setmana
458 label_last_month: "l'últim més"
386 label_last_week: "l'última setmana"
459 label_this_year: aquest any
387 label_last_n_days: els últims %d dies
460 label_date_range: Abast de les dates
388 label_this_month: aquest més
461 label_less_than_ago: fa menys de
389 label_last_month: "l'últim més"
462 label_more_than_ago: fa més de
390 label_this_year: aquest any
463 label_ago: fa
391 label_date_range: Abast de les dates
464 label_contains: conté
392 label_less_than_ago: fa menys de
465 label_not_contains: no conté
393 label_more_than_ago: fa més de
466 label_day_plural: dies
394 label_ago: fa
467 label_repository: Dipòsit
395 label_contains: conté
468 label_repository_plural: Dipòsits
396 label_not_contains: no conté
469 label_browse: Navega
397 label_day_plural: dies
470 label_modification: "{{count}} canvi"
398 label_repository: Dipòsit
471 label_modification_plural: "{{count}} canvis"
399 label_repository_plural: Dipòsits
472 label_revision: Revisió
400 label_browse: Navega
473 label_revision_plural: Revisions
401 label_modification: %d canvi
474 label_associated_revisions: Revisions associades
402 label_modification_plural: %d canvis
475 label_added: afegit
403 label_revision: Revisió
476 label_modified: modificat
404 label_revision_plural: Revisions
477 label_renamed: reanomenat
405 label_associated_revisions: Revisions associades
478 label_copied: copiat
406 label_added: afegit
479 label_deleted: suprimit
407 label_modified: modificat
480 label_latest_revision: Última revisió
408 label_renamed: reanomenat
481 label_latest_revision_plural: Últimes revisions
409 label_copied: copiat
482 label_view_revisions: Visualitza les revisions
410 label_deleted: suprimit
483 label_max_size: Mida màxima
411 label_latest_revision: Última revisió
484 label_sort_highest: Mou a la part superior
412 label_latest_revision_plural: Últimes revisions
485 label_sort_higher: Mou cap amunt
413 label_view_revisions: Visualitza les revisions
486 label_sort_lower: Mou cap avall
414 label_max_size: Mida màxima
487 label_sort_lowest: Mou a la part inferior
415 label_on: 'de'
488 label_roadmap: Planificació
416 label_sort_highest: Mou a la part superior
489 label_roadmap_due_in: "Venç en {{value}}"
417 label_sort_higher: Mou cap amunt
490 label_roadmap_overdue: "{{value}} tard"
418 label_sort_lower: Mou cap avall
491 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
419 label_sort_lowest: Mou a la part inferior
492 label_search: Cerca
420 label_roadmap: Planificació
493 label_result_plural: Resultats
421 label_roadmap_due_in: Venç en %s
494 label_all_words: Totes les paraules
422 label_roadmap_overdue: %s tard
495 label_wiki: Wiki
423 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
496 label_wiki_edit: Edició wiki
424 label_search: Cerca
497 label_wiki_edit_plural: Edicions wiki
425 label_result_plural: Resultats
498 label_wiki_page: Pàgina wiki
426 label_all_words: Totes les paraules
499 label_wiki_page_plural: Pàgines wiki
427 label_wiki: Wiki
500 label_index_by_title: Índex per títol
428 label_wiki_edit: Edició wiki
501 label_index_by_date: Índex per data
429 label_wiki_edit_plural: Edicions wiki
502 label_current_version: Versió actual
430 label_wiki_page: Pàgina wiki
503 label_preview: Previsualització
431 label_wiki_page_plural: Pàgines wiki
504 label_feed_plural: Canals
432 label_index_by_title: Índex per títol
505 label_changes_details: Detalls de tots els canvis
433 label_index_by_date: Índex per data
506 label_issue_tracking: "Seguiment d'assumptes"
434 label_current_version: Versió actual
507 label_spent_time: Temps invertit
435 label_preview: Previsualització
508 label_f_hour: "{{value}} hora"
436 label_feed_plural: Canals
509 label_f_hour_plural: "{{value}} hores"
437 label_changes_details: Detalls de tots els canvis
510 label_time_tracking: Temps de seguiment
438 label_issue_tracking: "Seguiment d'assumptes"
511 label_change_plural: Canvis
439 label_spent_time: Temps invertit
512 label_statistics: Estadístiques
440 label_f_hour: %.2f hora
513 label_commits_per_month: Publicacions per mes
441 label_f_hour_plural: %.2f hores
514 label_commits_per_author: Publicacions per autor
442 label_time_tracking: Temps de seguiment
515 label_view_diff: Visualitza les diferències
443 label_change_plural: Canvis
516 label_diff_inline: en línia
444 label_statistics: Estadístiques
517 label_diff_side_by_side: costat per costat
445 label_commits_per_month: Publicacions per mes
518 label_options: Opcions
446 label_commits_per_author: Publicacions per autor
519 label_copy_workflow_from: Copia el flux de treball des de
447 label_view_diff: Visualitza les diferències
520 label_permissions_report: Informe de permisos
448 label_diff_inline: en línia
521 label_watched_issues: Assumptes vigilats
449 label_diff_side_by_side: costat per costat
522 label_related_issues: Assumptes relacionats
450 label_options: Opcions
523 label_applied_status: Estat aplicat
451 label_copy_workflow_from: Copia el flux de treball des de
524 label_loading: "S'està carregant..."
452 label_permissions_report: Informe de permisos
525 label_relation_new: Relació nova
453 label_watched_issues: Assumptes vigilats
526 label_relation_delete: Suprimeix la relació
454 label_related_issues: Assumptes relacionats
527 label_relates_to: relacionat amb
455 label_applied_status: Estat aplicat
528 label_duplicates: duplicats
456 label_loading: "S'està carregant..."
529 label_duplicated_by: duplicat per
457 label_relation_new: Relació nova
530 label_blocks: bloqueja
458 label_relation_delete: Suprimeix la relació
531 label_blocked_by: bloquejats per
459 label_relates_to: relacionat amb
532 label_precedes: anterior a
460 label_duplicates: duplicats
533 label_follows: posterior a
461 label_duplicated_by: duplicat per
534 label_end_to_start: final al començament
462 label_blocks: bloqueja
535 label_end_to_end: final al final
463 label_blocked_by: bloquejats per
536 label_start_to_start: començament al començament
464 label_precedes: anterior a
537 label_start_to_end: començament al final
465 label_follows: posterior a
538 label_stay_logged_in: "Manté l'entrada"
466 label_end_to_start: final al començament
539 label_disabled: inhabilitat
467 label_end_to_end: final al final
540 label_show_completed_versions: Mostra les versions completes
468 label_start_to_start: començament al començament
541 label_me: jo mateix
469 label_start_to_end: començament al final
542 label_board: Fòrum
470 label_stay_logged_in: "Manté l'entrada"
543 label_board_new: Fòrum nou
471 label_disabled: inhabilitat
544 label_board_plural: Fòrums
472 label_show_completed_versions: Mostra les versions completes
545 label_topic_plural: Temes
473 label_me: jo mateix
546 label_message_plural: Missatges
474 label_board: Fòrum
547 label_message_last: Últim missatge
475 label_board_new: Fòrum nou
548 label_message_new: Missatge nou
476 label_board_plural: Fòrums
549 label_message_posted: Missatge afegit
477 label_topic_plural: Temes
550 label_reply_plural: Respostes
478 label_message_plural: Missatges
551 label_send_information: "Envia la informació del compte a l'usuari"
479 label_message_last: Últim missatge
552 label_year: Any
480 label_message_new: Missatge nou
553 label_month: Mes
481 label_message_posted: Missatge afegit
554 label_week: Setmana
482 label_reply_plural: Respostes
555 label_date_from: Des de
483 label_send_information: "Envia la informació del compte a l'usuari"
556 label_date_to: A
484 label_year: Any
557 label_language_based: "Basat en l'idioma de l'usuari"
485 label_month: Mes
558 label_sort_by: "Ordena per {{value}}"
486 label_week: Setmana
559 label_send_test_email: Envia un correu electrònic de prova
487 label_date_from: Des de
560 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa {{value}}"
488 label_date_to: A
561 label_module_plural: Mòduls
489 label_language_based: "Basat en l'idioma de l'usuari"
562 label_added_time_by: "Afegit per {{author}} fa {{age}}"
490 label_sort_by: Ordena per %s
563 label_updated_time: "Actualitzat fa {{value}}"
491 label_send_test_email: Envia un correu electrònic de prova
564 label_jump_to_a_project: Salta al projecte...
492 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa %s"
565 label_file_plural: Fitxers
493 label_module_plural: Mòduls
566 label_changeset_plural: Conjunt de canvis
494 label_added_time_by: Afegit per %s fa %s
567 label_default_columns: Columnes predeterminades
495 label_updated_time: Actualitzat fa %s
568 label_no_change_option: (sense canvis)
496 label_jump_to_a_project: Salta al projecte...
569 label_bulk_edit_selected_issues: Edita en bloc els assumptes seleccionats
497 label_file_plural: Fitxers
570 label_theme: Tema
498 label_changeset_plural: Conjunt de canvis
571 label_default: Predeterminat
499 label_default_columns: Columnes predeterminades
572 label_search_titles_only: Cerca només en els títols
500 label_no_change_option: (sense canvis)
573 label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes"
501 label_bulk_edit_selected_issues: Edita en bloc els assumptes seleccionats
574 label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..."
502 label_theme: Tema
575 label_user_mail_option_none: "Només per les coses que vigilo o hi estic implicat"
503 label_default: Predeterminat
576 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix"
504 label_search_titles_only: Cerca només en els títols
577 label_registration_activation_by_email: activació del compte per correu electrònic
505 label_user_mail_option_all: "Per qualsevol esdeveniment en tots els meus projectes"
578 label_registration_manual_activation: activació del compte manual
506 label_user_mail_option_selected: "Per qualsevol esdeveniment en els projectes seleccionats..."
579 label_registration_automatic_activation: activació del compte automàtica
507 label_user_mail_option_none: "Només per les coses que vigilo o hi estic implicat"
580 label_display_per_page: "Per pàgina: {{value}}'"
508 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo mateix"
581 label_age: Edat
509 label_registration_activation_by_email: activació del compte per correu electrònic
582 label_change_properties: Canvia les propietats
510 label_registration_manual_activation: activació del compte manual
583 label_general: General
511 label_registration_automatic_activation: activació del compte automàtica
584 label_more: Més
512 label_display_per_page: 'Per pàgina: %s'
585 label_scm: SCM
513 label_age: Edat
586 label_plugins: Connectors
514 label_change_properties: Canvia les propietats
587 label_ldap_authentication: Autenticació LDAP
515 label_general: General
588 label_downloads_abbr: Baixades
516 label_more: Més
589 label_optional_description: Descripció opcional
517 label_scm: SCM
590 label_add_another_file: Afegeix un altre fitxer
518 label_plugins: Connectors
591 label_preferences: Preferències
519 label_ldap_authentication: Autenticació LDAP
592 label_chronological_order: En ordre cronològic
520 label_downloads_abbr: Baixades
593 label_reverse_chronological_order: En ordre cronològic invers
521 label_optional_description: Descripció opcional
594 label_planning: Planificació
522 label_add_another_file: Afegeix un altre fitxer
595 label_incoming_emails: "Correu electrònics d'entrada"
523 label_preferences: Preferències
596 label_generate_key: Genera una clau
524 label_chronological_order: En ordre cronològic
597 label_issue_watchers: Vigilants
525 label_reverse_chronological_order: En ordre cronològic invers
598
526 label_planning: Planificació
599 button_login: Entra
527 label_incoming_emails: "Correu electrònics d'entrada"
600 button_submit: Tramet
528 label_generate_key: Genera una clau
601 button_save: Desa
529 label_issue_watchers: Vigilants
602 button_check_all: Activa-ho tot
530
603 button_uncheck_all: Desactiva-ho tot
531 button_login: Entra
604 button_delete: Suprimeix
532 button_submit: Tramet
605 button_create: Crea
533 button_save: Desa
606 button_test: Test
534 button_check_all: Activa-ho tot
607 button_edit: Edit
535 button_uncheck_all: Desactiva-ho tot
608 button_add: Afegeix
536 button_delete: Suprimeix
609 button_change: Canvia
537 button_create: Crea
610 button_apply: Aplica
538 button_test: Test
611 button_clear: Neteja
539 button_edit: Edit
612 button_lock: Bloca
540 button_add: Afegeix
613 button_unlock: Desbloca
541 button_change: Canvia
614 button_download: Baixa
542 button_apply: Aplica
615 button_list: Llista
543 button_clear: Neteja
616 button_view: Visualitza
544 button_lock: Bloca
617 button_move: Mou
545 button_unlock: Desbloca
618 button_back: Enrere
546 button_download: Baixa
619 button_cancel: Cancel·la
547 button_list: Llista
620 button_activate: Activa
548 button_view: Visualitza
621 button_sort: Ordena
549 button_move: Mou
622 button_log_time: "Hora d'entrada"
550 button_back: Enrere
623 button_rollback: Torna a aquesta versió
551 button_cancel: Cancel·la
624 button_watch: Vigila
552 button_activate: Activa
625 button_unwatch: No vigilis
553 button_sort: Ordena
626 button_reply: Resposta
554 button_log_time: "Hora d'entrada"
627 button_archive: Arxiva
555 button_rollback: Torna a aquesta versió
628 button_unarchive: Desarxiva
556 button_watch: Vigila
629 button_reset: Reinicia
557 button_unwatch: No vigilis
630 button_rename: Reanomena
558 button_reply: Resposta
631 button_change_password: Canvia la contrasenya
559 button_archive: Arxiva
632 button_copy: Copia
560 button_unarchive: Desarxiva
633 button_annotate: Anota
561 button_reset: Reinicia
634 button_update: Actualitza
562 button_rename: Reanomena
635 button_configure: Configura
563 button_change_password: Canvia la contrasenya
636 button_quote: Cita
564 button_copy: Copia
637
565 button_annotate: Anota
638 status_active: actiu
566 button_update: Actualitza
639 status_registered: informat
567 button_configure: Configura
640 status_locked: bloquejat
568 button_quote: Cita
641
569
642 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria d'enviar una notificació per correu electrònic."
570 status_active: actiu
643 text_regexp_info: ex. ^[A-Z0-9]+$
571 status_registered: informat
644 text_min_max_length_info: 0 significa sense restricció
572 status_locked: bloquejat
645 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
573
646 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: {{value}}."
574 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria d'enviar una notificació per correu electrònic."
647 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
575 text_regexp_info: ex. ^[A-Z0-9]+$
648 text_are_you_sure: Segur?
576 text_min_max_length_info: 0 significa sense restricció
649 text_journal_changed: "canviat des de {{old}} a {{new}}"
577 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
650 text_journal_set_to: "establert a {{value}}"
578 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: %s."
651 text_journal_deleted: suprimit
579 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
652 text_tip_task_begin_day: "tasca que s'inicia aquest dia"
580 text_are_you_sure: Segur?
653 text_tip_task_end_day: tasca que finalitza aquest dia
581 text_journal_changed: canviat des de %s a %s
654 text_tip_task_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
582 text_journal_set_to: establert a %s
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."
583 text_journal_deleted: suprimit
656 text_caracters_maximum: "{{count}} caràcters com a màxim."
584 text_tip_task_begin_day: "tasca que s'inicia aquest dia"
657 text_caracters_minimum: "Com a mínim ha de tenir {{count}} caràcters."
585 text_tip_task_end_day: tasca que finalitza aquest dia
658 text_length_between: "Longitud entre {{min}} i {{max}} caràcters."
586 text_tip_task_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
659 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
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."
660 text_unallowed_characters: Caràcters no permesos
588 text_caracters_maximum: %d caràcters com a màxim.
661 text_comma_separated: Es permeten valors múltiples (separats per una coma).
589 text_caracters_minimum: Com a mínim ha de tenir %d caràcters.
662 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
590 text_length_between: Longitud entre %d i %d caràcters.
663 text_issue_added: "L'assumpte {{id}} ha sigut informat per {{author}}."
591 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
664 text_issue_updated: "L'assumpte {{id}} ha sigut actualitzat per {{author}}."
592 text_unallowed_characters: Caràcters no permesos
665 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
593 text_comma_separated: Es permeten valors múltiples (separats per una coma).
666 text_issue_category_destroy_question: "Alguns assumptes ({{count}}) estan assignats a aquesta categoria. Què voleu fer?"
594 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
667 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
595 text_issue_added: "L'assumpte %s ha sigut informat per %s."
668 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
596 text_issue_updated: "L'assumpte %s ha sigut actualitzat per %s."
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)."
597 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
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."
598 text_issue_category_destroy_question: Alguns assumptes (%d) estan assignats a aquesta categoria. Què voleu fer?
671 text_load_default_configuration: Carrega la configuració predeterminada
599 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
672 text_status_changed_by_changeset: "Aplicat en el conjunt de canvis {{value}}."
600 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
673 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
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)."
674 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
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."
675 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
603 text_load_default_configuration: Carrega la configuració predeterminada
676 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
604 text_status_changed_by_changeset: Aplicat en el conjunt de canvis %s.
677 text_rmagick_available: RMagick disponible (opcional)
605 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
678 text_destroy_time_entries_question: "S'han informat %.02f hores en els assumptes que aneu a suprimir. Què voleu fer?"
606 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
679 text_destroy_time_entries: Suprimeix les hores informades
607 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
680 text_assign_time_entries_to_project: Assigna les hores informades al projecte
608 text_file_repository_writable: Es pot escriure en el dipòsit de fitxers
681 text_reassign_time_entries: 'Torna a assignar les hores informades a aquest assumpte:'
609 text_rmagick_available: RMagick disponible (opcional)
682 text_user_wrote: "{{value}} va escriure:'"
610 text_destroy_time_entries_question: "S'han informat %.02f hores en els assumptes que aneu a suprimir. Què voleu fer?"
683 text_enumeration_destroy_question: "{{count}} objectes estan assignats a aquest valor.'"
611 text_destroy_time_entries: Suprimeix les hores informades
684 text_enumeration_category_reassign_to: 'Torna a assignar-los a aquest valor:'
612 text_assign_time_entries_to_project: Assigna les hores informades al projecte
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."
613 text_reassign_time_entries: 'Torna a assignar les hores informades a aquest assumpte:'
686
614 text_user_wrote: '%s va escriure:'
687 default_role_manager: Gestor
615 text_enumeration_destroy_question: '%d objectes estan assignats a aquest valor.'
688 default_role_developper: Desenvolupador
616 text_enumeration_category_reassign_to: 'Torna a assignar-los a aquest valor:'
689 default_role_reporter: Informador
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."
690 default_tracker_bug: Error
618
691 default_tracker_feature: Característica
619 default_role_manager: Gestor
692 default_tracker_support: Suport
620 default_role_developper: Desenvolupador
693 default_issue_status_new: Nou
621 default_role_reporter: Informador
694 default_issue_status_assigned: Assignat
622 default_tracker_bug: Error
695 default_issue_status_resolved: Resolt
623 default_tracker_feature: Característica
696 default_issue_status_feedback: Comentaris
624 default_tracker_support: Suport
697 default_issue_status_closed: Tancat
625 default_issue_status_new: Nou
698 default_issue_status_rejected: Rebutjat
626 default_issue_status_assigned: Assignat
699 default_doc_category_user: "Documentació d'usuari"
627 default_issue_status_resolved: Resolt
700 default_doc_category_tech: Documentació tècnica
628 default_issue_status_feedback: Comentaris
701 default_priority_low: Baixa
629 default_issue_status_closed: Tancat
702 default_priority_normal: Normal
630 default_issue_status_rejected: Rebutjat
703 default_priority_high: Alta
631 default_doc_category_user: "Documentació d'usuari"
704 default_priority_urgent: Urgent
632 default_doc_category_tech: Documentació tècnica
705 default_priority_immediate: Immediata
633 default_priority_low: Baixa
706 default_activity_design: Disseny
634 default_priority_normal: Normal
707 default_activity_development: Desenvolupament
635 default_priority_high: Alta
708
636 default_priority_urgent: Urgent
709 enumeration_issue_priorities: Prioritat dels assumptes
637 default_priority_immediate: Immediata
710 enumeration_doc_categories: Categories del document
638 default_activity_design: Disseny
711 enumeration_activities: Activitats (seguidor de temps)
639 default_activity_development: Desenvolupament
712 setting_plain_text_mail: plain text only (no HTML)
640
713 permission_view_files: View files
641 enumeration_issue_priorities: Prioritat dels assumptes
714 permission_edit_issues: Edit issues
642 enumeration_doc_categories: Categories del document
715 permission_edit_own_time_entries: Edit own time logs
643 enumeration_activities: Activitats (seguidor de temps)
716 permission_manage_public_queries: Manage public queries
644 setting_plain_text_mail: plain text only (no HTML)
717 permission_add_issues: Add issues
645 permission_view_files: View files
718 permission_log_time: Log spent time
646 permission_edit_issues: Edit issues
719 permission_view_changesets: View changesets
647 permission_edit_own_time_entries: Edit own time logs
720 permission_view_time_entries: View spent time
648 permission_manage_public_queries: Manage public queries
721 permission_manage_versions: Manage versions
649 permission_add_issues: Add issues
722 permission_manage_wiki: Manage wiki
650 permission_log_time: Log spent time
723 permission_manage_categories: Manage issue categories
651 permission_view_changesets: View changesets
724 permission_protect_wiki_pages: Protect wiki pages
652 permission_view_time_entries: View spent time
725 permission_comment_news: Comment news
653 permission_manage_versions: Manage versions
726 permission_delete_messages: Delete messages
654 permission_manage_wiki: Manage wiki
727 permission_select_project_modules: Select project modules
655 permission_manage_categories: Manage issue categories
728 permission_manage_documents: Manage documents
656 permission_protect_wiki_pages: Protect wiki pages
729 permission_edit_wiki_pages: Edit wiki pages
657 permission_comment_news: Comment news
730 permission_add_issue_watchers: Add watchers
658 permission_delete_messages: Delete messages
731 permission_view_gantt: View gantt chart
659 permission_select_project_modules: Select project modules
732 permission_move_issues: Move issues
660 permission_manage_documents: Manage documents
733 permission_manage_issue_relations: Manage issue relations
661 permission_edit_wiki_pages: Edit wiki pages
734 permission_delete_wiki_pages: Delete wiki pages
662 permission_add_issue_watchers: Add watchers
735 permission_manage_boards: Manage boards
663 permission_view_gantt: View gantt chart
736 permission_delete_wiki_pages_attachments: Delete attachments
664 permission_move_issues: Move issues
737 permission_view_wiki_edits: View wiki history
665 permission_manage_issue_relations: Manage issue relations
738 permission_add_messages: Post messages
666 permission_delete_wiki_pages: Delete wiki pages
739 permission_view_messages: View messages
667 permission_manage_boards: Manage boards
740 permission_manage_files: Manage files
668 permission_delete_wiki_pages_attachments: Delete attachments
741 permission_edit_issue_notes: Edit notes
669 permission_view_wiki_edits: View wiki history
742 permission_manage_news: Manage news
670 permission_add_messages: Post messages
743 permission_view_calendar: View calendrier
671 permission_view_messages: View messages
744 permission_manage_members: Manage members
672 permission_manage_files: Manage files
745 permission_edit_messages: Edit messages
673 permission_edit_issue_notes: Edit notes
746 permission_delete_issues: Delete issues
674 permission_manage_news: Manage news
747 permission_view_issue_watchers: View watchers list
675 permission_view_calendar: View calendrier
748 permission_manage_repository: Manage repository
676 permission_manage_members: Manage members
749 permission_commit_access: Commit access
677 permission_edit_messages: Edit messages
750 permission_browse_repository: Browse repository
678 permission_delete_issues: Delete issues
751 permission_view_documents: View documents
679 permission_view_issue_watchers: View watchers list
752 permission_edit_project: Edit project
680 permission_manage_repository: Manage repository
753 permission_add_issue_notes: Add notes
681 permission_commit_access: Commit access
754 permission_save_queries: Save queries
682 permission_browse_repository: Browse repository
755 permission_view_wiki_pages: View wiki
683 permission_view_documents: View documents
756 permission_rename_wiki_pages: Rename wiki pages
684 permission_edit_project: Edit project
757 permission_edit_time_entries: Edit time logs
685 permission_add_issue_notes: Add notes
758 permission_edit_own_issue_notes: Edit own notes
686 permission_save_queries: Save queries
759 setting_gravatar_enabled: Use Gravatar user icons
687 permission_view_wiki_pages: View wiki
760 label_example: Example
688 permission_rename_wiki_pages: Rename wiki pages
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."
689 permission_edit_time_entries: Edit time logs
762 permission_edit_own_messages: Edit own messages
690 permission_edit_own_issue_notes: Edit own notes
763 permission_delete_own_messages: Delete own messages
691 setting_gravatar_enabled: Use Gravatar user icons
764 label_user_activity: "{{value}}'s activity"
692 label_example: Example
765 label_updated_time_by: "Updated by {{author}} {{age}} ago"
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."
766 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
694 permission_edit_own_messages: Edit own messages
767 setting_diff_max_lines_displayed: Max number of diff lines displayed
695 permission_delete_own_messages: Delete own messages
768 text_plugin_assets_writable: Plugin assets directory writable
696 label_user_activity: "%s's activity"
769 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
697 label_updated_time_by: Updated by %s %s ago
770 button_create_and_continue: Create and continue
698 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
771 text_custom_field_possible_values_info: 'One line for each value'
699 setting_diff_max_lines_displayed: Max number of diff lines displayed
772 label_display: Display
700 text_plugin_assets_writable: Plugin assets directory writable
773 field_editable: Editable
701 warning_attachments_not_saved: "%d file(s) could not be saved."
774 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
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
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
1 cs:
2 # Based on original CZ translation by Jan Kadleček
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:
95 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
7 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
96 # Based on original CZ translation by Jan Kadleček
8 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
97
9 actionview_datehelper_select_month_prefix:
98 actionview_instancetag_blank_option: Prosím vyberte
10 actionview_datehelper_select_year_prefix:
99
11 actionview_datehelper_time_in_words_day: 1 den
100 general_text_No: 'Ne'
12 actionview_datehelper_time_in_words_day_plural: %d dny
101 general_text_Yes: 'Ano'
13 actionview_datehelper_time_in_words_hour_about: asi hodinou
102 general_text_no: 'ne'
14 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodinami
103 general_text_yes: 'ano'
15 actionview_datehelper_time_in_words_hour_about_single: asi hodinou
104 general_lang_name: 'Čeština'
16 actionview_datehelper_time_in_words_minute: 1 minutou
105 general_csv_separator: ','
17 actionview_datehelper_time_in_words_minute_half: půl minutou
106 general_csv_decimal_separator: '.'
18 actionview_datehelper_time_in_words_minute_less_than: méně než minutou
107 general_csv_encoding: UTF-8
19 actionview_datehelper_time_in_words_minute_plural: %d minutami
108 general_pdf_encoding: UTF-8
20 actionview_datehelper_time_in_words_minute_single: 1 minutou
109 general_first_day_of_week: '1'
21 actionview_datehelper_time_in_words_second_less_than: méně než sekundou
110
22 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekundami
111 notice_account_updated: Účet byl úspěšně změněn.
23 actionview_instancetag_blank_option: Prosím vyberte
112 notice_account_invalid_creditentials: Chybné jméno nebo heslo
24
113 notice_account_password_updated: Heslo bylo úspěšně změněno.
25 activerecord_error_inclusion: není zahrnuto v seznamu
114 notice_account_wrong_password: Chybné heslo
26 activerecord_error_exclusion: je rezervováno
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.
27 activerecord_error_invalid: je neplatné
116 notice_account_unknown_email: Neznámý uživatel.
28 activerecord_error_confirmation: se neshoduje s potvrzením
117 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
29 activerecord_error_accepted: musí být akceptováno
118 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
30 activerecord_error_empty: nemůže být prázdný
119 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
31 activerecord_error_blank: nemůže být prázdný
120 notice_successful_create: Úspěšně vytvořeno.
32 activerecord_error_too_long: je příliš dlouhý
121 notice_successful_update: Úspěšně aktualizováno.
33 activerecord_error_too_short: je příliš krátký
122 notice_successful_delete: Úspěšně odstraněno.
34 activerecord_error_wrong_length: má chybnou délku
123 notice_successful_connection: Úspěšné připojení.
35 activerecord_error_taken: je již použito
124 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
36 activerecord_error_not_a_number: není číslo
125 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
37 activerecord_error_not_a_date: není platné datum
126 notice_scm_error: Entry and/or revision doesn't exist in the repository.
38 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
127 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
39 activerecord_error_not_same_project: nepatří stejnému projektu
128 notice_email_sent: "Na adresu {{value}} byl odeslán email"
40 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
129 notice_email_error: "Při odesílání emailu nastala chyba ({{value}})"
41
130 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
42 general_fmt_age: %d rok
131 notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}."
43 general_fmt_age_plural: %d roků
132 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
44 general_fmt_date: %%m/%%d/%%Y
133 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
134 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
135
47 general_fmt_time: %%I:%%M %%p
136 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: {{value}}"
48 general_text_No: 'Ne'
137 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
49 general_text_Yes: 'Ano'
138 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: {{value}}"
50 general_text_no: 'ne'
139 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
51 general_text_yes: 'ano'
140
52 general_lang_name: 'Čeština'
141 mail_subject_lost_password: "Vaše heslo ({{value}})"
53 general_csv_separator: ','
142 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
54 general_csv_decimal_separator: '.'
143 mail_subject_register: "Aktivace účtu ({{value}})"
55 general_csv_encoding: UTF-8
144 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
56 general_pdf_encoding: UTF-8
145 mail_body_account_information_external: "Pomocí vašeho účtu {{value}} se můžete přihlásit."
57 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
146 mail_body_account_information: Informace o vašem účtu
58 general_first_day_of_week: '1'
147 mail_subject_account_activation_request: "Aktivace {{value}} účtu"
59
148 mail_body_account_activation_request: "Byl zaregistrován nový uživatel {{value}}. Aktivace jeho účtu závisí na vašem potvrzení."
60 notice_account_updated: Účet byl úspěšně změněn.
149
61 notice_account_invalid_creditentials: Chybné jméno nebo heslo
150 gui_validation_error: 1 chyba
62 notice_account_password_updated: Heslo bylo úspěšně změněno.
151 gui_validation_error_plural: "{{count}} chyb(y)"
63 notice_account_wrong_password: Chybné heslo
152
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.
153 field_name: Název
65 notice_account_unknown_email: Neznámý uživatel.
154 field_description: Popis
66 notice_can_t_change_password: Tento účet používá externí autentifikaci. Zde heslo změnit nemůžete.
155 field_summary: Přehled
67 notice_account_lost_email_sent: Byl vám zaslán email s intrukcemi jak si nastavíte nové heslo.
156 field_is_required: Povinné pole
68 notice_account_activated: Váš účet byl aktivován. Nyní se můžete přihlásit.
157 field_firstname: Jméno
69 notice_successful_create: Úspěšně vytvořeno.
158 field_lastname: Příjmení
70 notice_successful_update: Úspěšně aktualizováno.
159 field_mail: Email
71 notice_successful_delete: Úspěšně odstraněno.
160 field_filename: Soubor
72 notice_successful_connection: Úspěšné připojení.
161 field_filesize: Velikost
73 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo byla smazána.
162 field_downloads: Staženo
74 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
163 field_author: Autor
75 notice_scm_error: Entry and/or revision doesn't exist in the repository.
164 field_created_on: Vytvořeno
76 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
165 field_updated_on: Aktualizováno
77 notice_email_sent: Na adresu %s byl odeslán email
166 field_field_format: Formát
78 notice_email_error: Při odesílání emailu nastala chyba (%s)
167 field_is_for_all: Pro všechny projekty
79 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
168 field_possible_values: Možné hodnoty
80 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
169 field_regexp: Regulární výraz
81 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
170 field_min_length: Minimální délka
82 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
171 field_max_length: Maximální délka
83 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
172 field_value: Hodnota
84
173 field_category: Kategorie
85 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %s"
174 field_title: Název
86 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
175 field_project: Projekt
87 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: %s"
176 field_issue: Úkol
88 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
177 field_status: Stav
89
178 field_notes: Poznámka
90 mail_subject_lost_password: Vaše heslo (%s)
179 field_is_closed: Úkol uzavřen
91 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
180 field_is_default: Výchozí stav
92 mail_subject_register: Aktivace účtu (%s)
181 field_tracker: Fronta
93 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
182 field_subject: Předmět
94 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit.
183 field_due_date: Uzavřít do
95 mail_body_account_information: Informace o vašem účtu
184 field_assigned_to: Přiřazeno
96 mail_subject_account_activation_request: Aktivace %s účtu
185 field_priority: Priorita
97 mail_body_account_activation_request: Byl zaregistrován nový uživatel "%s". Aktivace jeho účtu závisí na vašem potvrzení.
186 field_fixed_version: Přiřazeno k verzi
98
187 field_user: Uživatel
99 gui_validation_error: 1 chyba
188 field_role: Role
100 gui_validation_error_plural: %d chyb(y)
189 field_homepage: Homepage
101
190 field_is_public: Veřejný
102 field_name: Název
191 field_parent: Nadřazený projekt
103 field_description: Popis
192 field_is_in_chlog: Úkoly zobrazené v změnovém logu
104 field_summary: Přehled
193 field_is_in_roadmap: Úkoly zobrazené v plánu
105 field_is_required: Povinné pole
194 field_login: Přihlášení
106 field_firstname: Jméno
195 field_mail_notification: Emailová oznámení
107 field_lastname: Příjmení
196 field_admin: Administrátor
108 field_mail: Email
197 field_last_login_on: Poslední přihlášení
109 field_filename: Soubor
198 field_language: Jazyk
110 field_filesize: Velikost
199 field_effective_date: Datum
111 field_downloads: Staženo
200 field_password: Heslo
112 field_author: Autor
201 field_new_password: Nové heslo
113 field_created_on: Vytvořeno
202 field_password_confirmation: Potvrzení
114 field_updated_on: Aktualizováno
203 field_version: Verze
115 field_field_format: Formát
204 field_type: Typ
116 field_is_for_all: Pro všechny projekty
205 field_host: Host
117 field_possible_values: Možné hodnoty
206 field_port: Port
118 field_regexp: Regulární výraz
207 field_account: Účet
119 field_min_length: Minimální délka
208 field_base_dn: Base DN
120 field_max_length: Maximální délka
209 field_attr_login: Přihlášení (atribut)
121 field_value: Hodnota
210 field_attr_firstname: Jméno (atribut)
122 field_category: Kategorie
211 field_attr_lastname: Příjemní (atribut)
123 field_title: Název
212 field_attr_mail: Email (atribut)
124 field_project: Projekt
213 field_onthefly: Automatické vytváření uživatelů
125 field_issue: Úkol
214 field_start_date: Začátek
126 field_status: Stav
215 field_done_ratio: %% Hotovo
127 field_notes: Poznámka
216 field_auth_source: Autentifikační mód
128 field_is_closed: Úkol uzavřen
217 field_hide_mail: Nezobrazovat můj email
129 field_is_default: Výchozí stav
218 field_comments: Komentář
130 field_tracker: Fronta
219 field_url: URL
131 field_subject: Předmět
220 field_start_page: Výchozí stránka
132 field_due_date: Uzavřít do
221 field_subproject: Podprojekt
133 field_assigned_to: Přiřazeno
222 field_hours: Hodiny
134 field_priority: Priorita
223 field_activity: Aktivita
135 field_fixed_version: Přiřazeno k verzi
224 field_spent_on: Datum
136 field_user: Uživatel
225 field_identifier: Identifikátor
137 field_role: Role
226 field_is_filter: Použít jako filtr
138 field_homepage: Homepage
227 field_issue_to_id: Související úkol
139 field_is_public: Veřejný
228 field_delay: Zpoždění
140 field_parent: Nadřazený projekt
229 field_assignable: Úkoly mohou být přiřazeny této roli
141 field_is_in_chlog: Úkoly zobrazené v změnovém logu
230 field_redirect_existing_links: Přesměrovat stvávající odkazy
142 field_is_in_roadmap: Úkoly zobrazené v plánu
231 field_estimated_hours: Odhadovaná doba
143 field_login: Přihlášení
232 field_column_names: Sloupce
144 field_mail_notification: Emailová oznámení
233 field_time_zone: Časové pásmo
145 field_admin: Administrátor
234 field_searchable: Umožnit vyhledávání
146 field_last_login_on: Poslední přihlášení
235 field_default_value: Výchozí hodnota
147 field_language: Jazyk
236 field_comments_sorting: Zobrazit komentáře
148 field_effective_date: Datum
237
149 field_password: Heslo
238 setting_app_title: Název aplikace
150 field_new_password: Nové heslo
239 setting_app_subtitle: Podtitulek aplikace
151 field_password_confirmation: Potvrzení
240 setting_welcome_text: Uvítací text
152 field_version: Verze
241 setting_default_language: Výchozí jazyk
153 field_type: Typ
242 setting_login_required: Auten. vyžadována
154 field_host: Host
243 setting_self_registration: Povolena automatická registrace
155 field_port: Port
244 setting_attachment_max_size: Maximální velikost přílohy
156 field_account: Účet
245 setting_issues_export_limit: Limit pro export úkolů
157 field_base_dn: Base DN
246 setting_mail_from: Odesílat emaily z adresy
158 field_attr_login: Přihlášení (atribut)
247 setting_bcc_recipients: Příjemci skryté kopie (bcc)
159 field_attr_firstname: Jméno (atribut)
248 setting_host_name: Host name
160 field_attr_lastname: Příjemní (atribut)
249 setting_text_formatting: Formátování textu
161 field_attr_mail: Email (atribut)
250 setting_wiki_compression: Komperese historie Wiki
162 field_onthefly: Automatické vytváření uživatelů
251 setting_feeds_limit: Feed content limit
163 field_start_date: Začátek
252 setting_default_projects_public: Nové projekty nastavovat jako veřejné
164 field_done_ratio: %% Hotovo
253 setting_autofetch_changesets: Autofetch commits
165 field_auth_source: Autentifikační mód
254 setting_sys_api_enabled: Povolit WS pro správu repozitory
166 field_hide_mail: Nezobrazovat můj email
255 setting_commit_ref_keywords: Klíčová slova pro odkazy
167 field_comments: Komentář
256 setting_commit_fix_keywords: Klíčová slova pro uzavření
168 field_url: URL
257 setting_autologin: Automatické přihlašování
169 field_start_page: Výchozí stránka
258 setting_date_format: Formát data
170 field_subproject: Podprojekt
259 setting_time_format: Formát času
171 field_hours: Hodiny
260 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
172 field_activity: Aktivita
261 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
173 field_spent_on: Datum
262 setting_repositories_encodings: Kódování
174 field_identifier: Identifikátor
263 setting_emails_footer: Patička emailů
175 field_is_filter: Použít jako filtr
264 setting_protocol: Protokol
176 field_issue_to_id: Související úkol
265 setting_per_page_options: Povolené počty řádků na stránce
177 field_delay: Zpoždění
266 setting_user_format: Formát zobrazení uživatele
178 field_assignable: Úkoly mohou být přiřazeny této roli
267 setting_activity_days_default: Days displayed on project activity
179 field_redirect_existing_links: Přesměrovat stvávající odkazy
268 setting_display_subprojects_issues: Display subprojects issues on main projects by default
180 field_estimated_hours: Odhadovaná doba
269
181 field_column_names: Sloupce
270 project_module_issue_tracking: Sledování úkolů
182 field_time_zone: Časové pásmo
271 project_module_time_tracking: Sledování času
183 field_searchable: Umožnit vyhledávání
272 project_module_news: Novinky
184 field_default_value: Výchozí hodnota
273 project_module_documents: Dokumenty
185 field_comments_sorting: Zobrazit komentáře
274 project_module_files: Soubory
186
275 project_module_wiki: Wiki
187 setting_app_title: Název aplikace
276 project_module_repository: Repository
188 setting_app_subtitle: Podtitulek aplikace
277 project_module_boards: Diskuse
189 setting_welcome_text: Uvítací text
278
190 setting_default_language: Výchozí jazyk
279 label_user: Uživatel
191 setting_login_required: Auten. vyžadována
280 label_user_plural: Uživatelé
192 setting_self_registration: Povolena automatická registrace
281 label_user_new: Nový uživatel
193 setting_attachment_max_size: Maximální velikost přílohy
282 label_project: Projekt
194 setting_issues_export_limit: Limit pro export úkolů
283 label_project_new: Nový projekt
195 setting_mail_from: Odesílat emaily z adresy
284 label_project_plural: Projekty
196 setting_bcc_recipients: Příjemci skryté kopie (bcc)
285 label_x_projects:
197 setting_host_name: Host name
286 zero: no projects
198 setting_text_formatting: Formátování textu
287 one: 1 project
199 setting_wiki_compression: Komperese historie Wiki
288 other: "{{count}} projects"
200 setting_feeds_limit: Feed content limit
289 label_project_all: Všechny projekty
201 setting_default_projects_public: Nové projekty nastavovat jako veřejné
290 label_project_latest: Poslední projekty
202 setting_autofetch_changesets: Autofetch commits
291 label_issue: Úkol
203 setting_sys_api_enabled: Povolit WS pro správu repozitory
292 label_issue_new: Nový úkol
204 setting_commit_ref_keywords: Klíčová slova pro odkazy
293 label_issue_plural: Úkoly
205 setting_commit_fix_keywords: Klíčová slova pro uzavření
294 label_issue_view_all: Všechny úkoly
206 setting_autologin: Automatické přihlašování
295 label_issues_by: "Úkoly od uživatele {{value}}"
207 setting_date_format: Formát data
296 label_issue_added: Úkol přidán
208 setting_time_format: Formát času
297 label_issue_updated: Úkol aktualizován
209 setting_cross_project_issue_relations: Povolit vazby úkolů napříč projekty
298 label_document: Dokument
210 setting_issue_list_default_columns: Výchozí sloupce zobrazené v seznamu úkolů
299 label_document_new: Nový dokument
211 setting_repositories_encodings: Kódování
300 label_document_plural: Dokumenty
212 setting_emails_footer: Patička emailů
301 label_document_added: Dokument přidán
213 setting_protocol: Protokol
302 label_role: Role
214 setting_per_page_options: Povolené počty řádků na stránce
303 label_role_plural: Role
215 setting_user_format: Formát zobrazení uživatele
304 label_role_new: Nová role
216 setting_activity_days_default: Days displayed on project activity
305 label_role_and_permissions: Role a práva
217 setting_display_subprojects_issues: Display subprojects issues on main projects by default
306 label_member: Člen
218
307 label_member_new: Nový člen
219 project_module_issue_tracking: Sledování úkolů
308 label_member_plural: Členové
220 project_module_time_tracking: Sledování času
309 label_tracker: Fronta
221 project_module_news: Novinky
310 label_tracker_plural: Fronty
222 project_module_documents: Dokumenty
311 label_tracker_new: Nová fronta
223 project_module_files: Soubory
312 label_workflow: Workflow
224 project_module_wiki: Wiki
313 label_issue_status: Stav úkolu
225 project_module_repository: Repository
314 label_issue_status_plural: Stavy úkolů
226 project_module_boards: Diskuse
315 label_issue_status_new: Nový stav
227
316 label_issue_category: Kategorie úkolu
228 label_user: Uživatel
317 label_issue_category_plural: Kategorie úkolů
229 label_user_plural: Uživatelé
318 label_issue_category_new: Nová kategorie
230 label_user_new: Nový uživatel
319 label_custom_field: Uživatelské pole
231 label_project: Projekt
320 label_custom_field_plural: Uživatelská pole
232 label_project_new: Nový projekt
321 label_custom_field_new: Nové uživatelské pole
233 label_project_plural: Projekty
322 label_enumerations: Seznamy
234 label_project_all: Všechny projekty
323 label_enumeration_new: Nová hodnota
235 label_project_latest: Poslední projekty
324 label_information: Informace
236 label_issue: Úkol
325 label_information_plural: Informace
237 label_issue_new: Nový úkol
326 label_please_login: Prosím přihlašte se
238 label_issue_plural: Úkoly
327 label_register: Registrovat
239 label_issue_view_all: Všechny úkoly
328 label_password_lost: Zapomenuté heslo
240 label_issues_by: Úkoly od uživatele %s
329 label_home: Úvodní
241 label_issue_added: Úkol přidán
330 label_my_page: Moje stránka
242 label_issue_updated: Úkol aktualizován
331 label_my_account: Můj účet
243 label_document: Dokument
332 label_my_projects: Moje projekty
244 label_document_new: Nový dokument
333 label_administration: Administrace
245 label_document_plural: Dokumenty
334 label_login: Přihlášení
246 label_document_added: Dokument přidán
335 label_logout: Odhlášení
247 label_role: Role
336 label_help: Nápověda
248 label_role_plural: Role
337 label_reported_issues: Nahlášené úkoly
249 label_role_new: Nová role
338 label_assigned_to_me_issues: Mé úkoly
250 label_role_and_permissions: Role a práva
339 label_last_login: Poslední přihlášení
251 label_member: Člen
340 label_registered_on: Registrován
252 label_member_new: Nový člen
341 label_activity: Aktivita
253 label_member_plural: Členové
342 label_overall_activity: Celková aktivita
254 label_tracker: Fronta
343 label_new: Nový
255 label_tracker_plural: Fronty
344 label_logged_as: Přihlášen jako
256 label_tracker_new: Nová fronta
345 label_environment: Prostředí
257 label_workflow: Workflow
346 label_authentication: Autentifikace
258 label_issue_status: Stav úkolu
347 label_auth_source: Mód autentifikace
259 label_issue_status_plural: Stavy úkolů
348 label_auth_source_new: Nový mód autentifikace
260 label_issue_status_new: Nový stav
349 label_auth_source_plural: Módy autentifikace
261 label_issue_category: Kategorie úkolu
350 label_subproject_plural: Podprojekty
262 label_issue_category_plural: Kategorie úkolů
351 label_min_max_length: Min - Max délka
263 label_issue_category_new: Nová kategorie
352 label_list: Seznam
264 label_custom_field: Uživatelské pole
353 label_date: Datum
265 label_custom_field_plural: Uživatelská pole
354 label_integer: Celé číslo
266 label_custom_field_new: Nové uživatelské pole
355 label_float: Desetiné číslo
267 label_enumerations: Seznamy
356 label_boolean: Ano/Ne
268 label_enumeration_new: Nová hodnota
357 label_string: Text
269 label_information: Informace
358 label_text: Dlouhý text
270 label_information_plural: Informace
359 label_attribute: Atribut
271 label_please_login: Prosím přihlašte se
360 label_attribute_plural: Atributy
272 label_register: Registrovat
361 label_download: "{{count}} Download"
273 label_password_lost: Zapomenuté heslo
362 label_download_plural: "{{count}} Downloads"
274 label_home: Úvodní
363 label_no_data: Žádné položky
275 label_my_page: Moje stránka
364 label_change_status: Změnit stav
276 label_my_account: Můj účet
365 label_history: Historie
277 label_my_projects: Moje projekty
366 label_attachment: Soubor
278 label_administration: Administrace
367 label_attachment_new: Nový soubor
279 label_login: Přihlášení
368 label_attachment_delete: Odstranit soubor
280 label_logout: Odhlášení
369 label_attachment_plural: Soubory
281 label_help: Nápověda
370 label_file_added: Soubor přidán
282 label_reported_issues: Nahlášené úkoly
371 label_report: Přeheled
283 label_assigned_to_me_issues: Mé úkoly
372 label_report_plural: Přehledy
284 label_last_login: Poslední přihlášení
373 label_news: Novinky
285 label_last_updates: Poslední změna
374 label_news_new: Přidat novinku
286 label_last_updates_plural: %d poslední změny
375 label_news_plural: Novinky
287 label_registered_on: Registrován
376 label_news_latest: Poslední novinky
288 label_activity: Aktivita
377 label_news_view_all: Zobrazit všechny novinky
289 label_overall_activity: Celková aktivita
378 label_news_added: Novinka přidána
290 label_new: Nový
379 label_change_log: Protokol změn
291 label_logged_as: Přihlášen jako
380 label_settings: Nastavení
292 label_environment: Prostředí
381 label_overview: Přehled
293 label_authentication: Autentifikace
382 label_version: Verze
294 label_auth_source: Mód autentifikace
383 label_version_new: Nová verze
295 label_auth_source_new: Nový mód autentifikace
384 label_version_plural: Verze
296 label_auth_source_plural: Módy autentifikace
385 label_confirmation: Potvrzení
297 label_subproject_plural: Podprojekty
386 label_export_to: 'Také k dispozici:'
298 label_min_max_length: Min - Max délka
387 label_read: Načítá se...
299 label_list: Seznam
388 label_public_projects: Veřejné projekty
300 label_date: Datum
389 label_open_issues: otevřený
301 label_integer: Celé číslo
390 label_open_issues_plural: otevřené
302 label_float: Desetiné číslo
391 label_closed_issues: uzavřený
303 label_boolean: Ano/Ne
392 label_closed_issues_plural: uzavřené
304 label_string: Text
393 label_x_open_issues_abbr_on_total:
305 label_text: Dlouhý text
394 zero: 0 open / {{total}}
306 label_attribute: Atribut
395 one: 1 open / {{total}}
307 label_attribute_plural: Atributy
396 other: "{{count}} open / {{total}}"
308 label_download: %d Download
397 label_x_open_issues_abbr:
309 label_download_plural: %d Downloads
398 zero: 0 open
310 label_no_data: Žádné položky
399 one: 1 open
311 label_change_status: Změnit stav
400 other: "{{count}} open"
312 label_history: Historie
401 label_x_closed_issues_abbr:
313 label_attachment: Soubor
402 zero: 0 closed
314 label_attachment_new: Nový soubor
403 one: 1 closed
315 label_attachment_delete: Odstranit soubor
404 other: "{{count}} closed"
316 label_attachment_plural: Soubory
405 label_total: Celkem
317 label_file_added: Soubor přidán
406 label_permissions: Práva
318 label_report: Přeheled
407 label_current_status: Aktuální stav
319 label_report_plural: Přehledy
408 label_new_statuses_allowed: Nové povolené stavy
320 label_news: Novinky
409 label_all: vše
321 label_news_new: Přidat novinku
410 label_none: nic
322 label_news_plural: Novinky
411 label_nobody: nikdo
323 label_news_latest: Poslední novinky
412 label_next: Další
324 label_news_view_all: Zobrazit všechny novinky
413 label_previous: Předchozí
325 label_news_added: Novinka přidána
414 label_used_by: Použito
326 label_change_log: Protokol změn
415 label_details: Detaily
327 label_settings: Nastavení
416 label_add_note: Přidat poznámku
328 label_overview: Přehled
417 label_per_page: Na stránku
329 label_version: Verze
418 label_calendar: Kalendář
330 label_version_new: Nová verze
419 label_months_from: měsíců od
331 label_version_plural: Verze
420 label_gantt: Ganttův graf
332 label_confirmation: Potvrzení
421 label_internal: Interní
333 label_export_to: 'Také k dispozici:'
422 label_last_changes: "posledních {{count}} změn"
334 label_read: Načítá se...
423 label_change_view_all: Zobrazit všechny změny
335 label_public_projects: Veřejné projekty
424 label_personalize_page: Přizpůsobit tuto stránku
336 label_open_issues: otevřený
425 label_comment: Komentář
337 label_open_issues_plural: otevřené
426 label_comment_plural: Komentáře
338 label_closed_issues: uzavřený
427 label_x_comments:
339 label_closed_issues_plural: uzavřené
428 zero: no comments
340 label_total: Celkem
429 one: 1 comment
341 label_permissions: Práva
430 other: "{{count}} comments"
342 label_current_status: Aktuální stav
431 label_comment_add: Přidat komentáře
343 label_new_statuses_allowed: Nové povolené stavy
432 label_comment_added: Komentář přidán
344 label_all: vše
433 label_comment_delete: Odstranit komentář
345 label_none: nic
434 label_query: Uživatelský dotaz
346 label_nobody: nikdo
435 label_query_plural: Uživatelské dotazy
347 label_next: Další
436 label_query_new: Nový dotaz
348 label_previous: Předchozí
437 label_filter_add: Přidat filtr
349 label_used_by: Použito
438 label_filter_plural: Filtry
350 label_details: Detaily
439 label_equals: je
351 label_add_note: Přidat poznámku
440 label_not_equals: není
352 label_per_page: Na stránku
441 label_in_less_than: je měší než
353 label_calendar: Kalendář
442 label_in_more_than: je větší než
354 label_months_from: měsíců od
443 label_in: v
355 label_gantt: Ganttův graf
444 label_today: dnes
356 label_internal: Interní
445 label_all_time: vše
357 label_last_changes: posledních %d změn
446 label_yesterday: včera
358 label_change_view_all: Zobrazit všechny změny
447 label_this_week: tento týden
359 label_personalize_page: Přizpůsobit tuto stránku
448 label_last_week: minulý týden
360 label_comment: Komentář
449 label_last_n_days: "posledních {{count}} dnů"
361 label_comment_plural: Komentáře
450 label_this_month: tento měsíc
362 label_comment_add: Přidat komentáře
451 label_last_month: minulý měsíc
363 label_comment_added: Komentář přidán
452 label_this_year: tento rok
364 label_comment_delete: Odstranit komentář
453 label_date_range: Časový rozsah
365 label_query: Uživatelský dotaz
454 label_less_than_ago: před méně jak (dny)
366 label_query_plural: Uživatelské dotazy
455 label_more_than_ago: před více jak (dny)
367 label_query_new: Nový dotaz
456 label_ago: před (dny)
368 label_filter_add: Přidat filtr
457 label_contains: obsahuje
369 label_filter_plural: Filtry
458 label_not_contains: neobsahuje
370 label_equals: je
459 label_day_plural: dny
371 label_not_equals: není
460 label_repository: Repository
372 label_in_less_than: je měší než
461 label_repository_plural: Repository
373 label_in_more_than: je větší než
462 label_browse: Procházet
374 label_in: v
463 label_modification: "{{count}} změna"
375 label_today: dnes
464 label_modification_plural: "{{count}} změn"
376 label_all_time: vše
465 label_revision: Revize
377 label_yesterday: včera
466 label_revision_plural: Revizí
378 label_this_week: tento týden
467 label_associated_revisions: Související verze
379 label_last_week: minulý týden
468 label_added: přidáno
380 label_last_n_days: posledních %d dnů
469 label_modified: změněno
381 label_this_month: tento měsíc
470 label_deleted: odstraněno
382 label_last_month: minulý měsíc
471 label_latest_revision: Poslední revize
383 label_this_year: tento rok
472 label_latest_revision_plural: Poslední revize
384 label_date_range: Časový rozsah
473 label_view_revisions: Zobrazit revize
385 label_less_than_ago: před méně jak (dny)
474 label_max_size: Maximální velikost
386 label_more_than_ago: před více jak (dny)
475 label_sort_highest: Přesunout na začátek
387 label_ago: před (dny)
476 label_sort_higher: Přesunout nahoru
388 label_contains: obsahuje
477 label_sort_lower: Přesunout dolů
389 label_not_contains: neobsahuje
478 label_sort_lowest: Přesunout na konec
390 label_day_plural: dny
479 label_roadmap: Plán
391 label_repository: Repository
480 label_roadmap_due_in: "Zbývá {{value}}"
392 label_repository_plural: Repository
481 label_roadmap_overdue: "{{value}} pozdě"
393 label_browse: Procházet
482 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
394 label_modification: %d změna
483 label_search: Hledat
395 label_modification_plural: %d změn
484 label_result_plural: Výsledky
396 label_revision: Revize
485 label_all_words: Všechna slova
397 label_revision_plural: Revizí
486 label_wiki: Wiki
398 label_associated_revisions: Související verze
487 label_wiki_edit: Wiki úprava
399 label_added: přidáno
488 label_wiki_edit_plural: Wiki úpravy
400 label_modified: změněno
489 label_wiki_page: Wiki stránka
401 label_deleted: odstraněno
490 label_wiki_page_plural: Wiki stránky
402 label_latest_revision: Poslední revize
491 label_index_by_title: Index dle názvu
403 label_latest_revision_plural: Poslední revize
492 label_index_by_date: Index dle data
404 label_view_revisions: Zobrazit revize
493 label_current_version: Aktuální verze
405 label_max_size: Maximální velikost
494 label_preview: Náhled
406 label_on: 'zapnuto'
495 label_feed_plural: Příspěvky
407 label_sort_highest: Přesunout na začátek
496 label_changes_details: Detail všech změn
408 label_sort_higher: Přesunout nahoru
497 label_issue_tracking: Sledování úkolů
409 label_sort_lower: Přesunout dolů
498 label_spent_time: Strávený čas
410 label_sort_lowest: Přesunout na konec
499 label_f_hour: "{{value}} hodina"
411 label_roadmap: Plán
500 label_f_hour_plural: "{{value}} hodin"
412 label_roadmap_due_in: Zbývá %s
501 label_time_tracking: Sledování času
413 label_roadmap_overdue: %s pozdě
502 label_change_plural: Změny
414 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
503 label_statistics: Statistiky
415 label_search: Hledat
504 label_commits_per_month: Commitů za měsíc
416 label_result_plural: Výsledky
505 label_commits_per_author: Commitů za autora
417 label_all_words: Všechna slova
506 label_view_diff: Zobrazit rozdíly
418 label_wiki: Wiki
507 label_diff_inline: uvnitř
419 label_wiki_edit: Wiki úprava
508 label_diff_side_by_side: vedle sebe
420 label_wiki_edit_plural: Wiki úpravy
509 label_options: Nastavení
421 label_wiki_page: Wiki stránka
510 label_copy_workflow_from: Kopírovat workflow z
422 label_wiki_page_plural: Wiki stránky
511 label_permissions_report: Přehled práv
423 label_index_by_title: Index dle názvu
512 label_watched_issues: Sledované úkoly
424 label_index_by_date: Index dle data
513 label_related_issues: Související úkoly
425 label_current_version: Aktuální verze
514 label_applied_status: Použitý stav
426 label_preview: Náhled
515 label_loading: Nahrávám...
427 label_feed_plural: Příspěvky
516 label_relation_new: Nová souvislost
428 label_changes_details: Detail všech změn
517 label_relation_delete: Odstranit souvislost
429 label_issue_tracking: Sledování úkolů
518 label_relates_to: související s
430 label_spent_time: Strávený čas
519 label_duplicates: duplicity
431 label_f_hour: %.2f hodina
520 label_blocks: bloků
432 label_f_hour_plural: %.2f hodin
521 label_blocked_by: zablokován
433 label_time_tracking: Sledování času
522 label_precedes: předchází
434 label_change_plural: Změny
523 label_follows: následuje
435 label_statistics: Statistiky
524 label_end_to_start: od konce do začátku
436 label_commits_per_month: Commitů za měsíc
525 label_end_to_end: od konce do konce
437 label_commits_per_author: Commitů za autora
526 label_start_to_start: od začátku do začátku
438 label_view_diff: Zobrazit rozdíly
527 label_start_to_end: od začátku do konce
439 label_diff_inline: uvnitř
528 label_stay_logged_in: Zůstat přihlášený
440 label_diff_side_by_side: vedle sebe
529 label_disabled: zakázán
441 label_options: Nastavení
530 label_show_completed_versions: Ukázat dokončené verze
442 label_copy_workflow_from: Kopírovat workflow z
531 label_me:
443 label_permissions_report: Přehled práv
532 label_board: Fórum
444 label_watched_issues: Sledované úkoly
533 label_board_new: Nové fórum
445 label_related_issues: Související úkoly
534 label_board_plural: Fóra
446 label_applied_status: Použitý stav
535 label_topic_plural: Témata
447 label_loading: Nahrávám...
536 label_message_plural: Zprávy
448 label_relation_new: Nová souvislost
537 label_message_last: Poslední zpráva
449 label_relation_delete: Odstranit souvislost
538 label_message_new: Nová zpráva
450 label_relates_to: související s
539 label_message_posted: Zpráva přidána
451 label_duplicates: duplicity
540 label_reply_plural: Odpovědi
452 label_blocks: bloků
541 label_send_information: Zaslat informace o účtu uživateli
453 label_blocked_by: zablokován
542 label_year: Rok
454 label_precedes: předchází
543 label_month: Měsíc
455 label_follows: následuje
544 label_week: Týden
456 label_end_to_start: od konce do začátku
545 label_date_from: Od
457 label_end_to_end: od konce do konce
546 label_date_to: Do
458 label_start_to_start: od začátku do začátku
547 label_language_based: Podle výchozího jazyku
459 label_start_to_end: od začátku do konce
548 label_sort_by: "Seřadit podle {{value}}"
460 label_stay_logged_in: Zůstat přihlášený
549 label_send_test_email: Poslat testovací email
461 label_disabled: zakázán
550 label_feeds_access_key_created_on: "Přístupový klíč pro RSS byl vytvořen před {{value}}"
462 label_show_completed_versions: Ukázat dokončené verze
551 label_module_plural: Moduly
463 label_me:
552 label_added_time_by: "'Přidáno uživatelem {{author}} před {{age}}'"
464 label_board: Fórum
553 label_updated_time: "Aktualizováno před {{value}}'"
465 label_board_new: Nové fórum
554 label_jump_to_a_project: Zvolit projekt...
466 label_board_plural: Fóra
555 label_file_plural: Soubory
467 label_topic_plural: Témata
556 label_changeset_plural: Changesety
468 label_message_plural: Zprávy
557 label_default_columns: Výchozí sloupce
469 label_message_last: Poslední zpráva
558 label_no_change_option: (beze změny)
470 label_message_new: Nová zpráva
559 label_bulk_edit_selected_issues: Bulk edit selected issues
471 label_message_posted: Zpráva přidána
560 label_theme: Téma
472 label_reply_plural: Odpovědi
561 label_default: Výchozí
473 label_send_information: Zaslat informace o účtu uživateli
562 label_search_titles_only: Vyhledávat pouze v názvech
474 label_year: Rok
563 label_user_mail_option_all: "Pro všechny události všech mých projektů"
475 label_month: Měsíc
564 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
476 label_week: Týden
565 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
477 label_date_from: Od
566 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
478 label_date_to: Do
567 label_registration_activation_by_email: aktivace účtu emailem
479 label_language_based: Podle výchozího jazyku
568 label_registration_manual_activation: manuální aktivace účtu
480 label_sort_by: Seřadit podle %s
569 label_registration_automatic_activation: automatická aktivace účtu
481 label_send_test_email: Poslat testovací email
570 label_display_per_page: "{{value}} na stránku'"
482 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
571 label_age: Věk
483 label_module_plural: Moduly
572 label_change_properties: Změnit vlastnosti
484 label_added_time_by: 'Přidáno uživatelem %s před %s'
573 label_general: Obecné
485 label_updated_time: 'Aktualizováno před %s'
574 label_more: Více
486 label_jump_to_a_project: Zvolit projekt...
575 label_scm: SCM
487 label_file_plural: Soubory
576 label_plugins: Doplňky
488 label_changeset_plural: Changesety
577 label_ldap_authentication: Autentifikace LDAP
489 label_default_columns: Výchozí sloupce
578 label_downloads_abbr: D/L
490 label_no_change_option: (beze změny)
579 label_optional_description: Volitelný popis
491 label_bulk_edit_selected_issues: Bulk edit selected issues
580 label_add_another_file: Přidat další soubor
492 label_theme: Téma
581 label_preferences: Nastavení
493 label_default: Výchozí
582 label_chronological_order: V chronologickém pořadí
494 label_search_titles_only: Vyhledávat pouze v názvech
583 label_reverse_chronological_order: V obrácaném chronologickém pořadí
495 label_user_mail_option_all: "Pro všechny události všech mých projektů"
584
496 label_user_mail_option_selected: "Pro všechny události vybraných projektů..."
585 button_login: Přihlásit
497 label_user_mail_option_none: "Pouze pro události které sleduji nebo které se mne týkají"
586 button_submit: Potvrdit
498 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených změnách"
587 button_save: Uložit
499 label_registration_activation_by_email: aktivace účtu emailem
588 button_check_all: Zašrtnout vše
500 label_registration_manual_activation: manuální aktivace účtu
589 button_uncheck_all: Odšrtnout vše
501 label_registration_automatic_activation: automatická aktivace účtu
590 button_delete: Odstranit
502 label_display_per_page: '%s na stránku'
591 button_create: Vytvořit
503 label_age: Věk
592 button_test: Test
504 label_change_properties: Změnit vlastnosti
593 button_edit: Upravit
505 label_general: Obecné
594 button_add: Přidat
506 label_more: Více
595 button_change: Změnit
507 label_scm: SCM
596 button_apply: Použít
508 label_plugins: Doplňky
597 button_clear: Smazat
509 label_ldap_authentication: Autentifikace LDAP
598 button_lock: Zamknout
510 label_downloads_abbr: D/L
599 button_unlock: Odemknout
511 label_optional_description: Volitelný popis
600 button_download: Stáhnout
512 label_add_another_file: Přidat další soubor
601 button_list: Vypsat
513 label_preferences: Nastavení
602 button_view: Zobrazit
514 label_chronological_order: V chronologickém pořadí
603 button_move: Přesunout
515 label_reverse_chronological_order: V obrácaném chronologickém pořadí
604 button_back: Zpět
516
605 button_cancel: Storno
517 button_login: Přihlásit
606 button_activate: Aktivovat
518 button_submit: Potvrdit
607 button_sort: Seřadit
519 button_save: Uložit
608 button_log_time: Přidat čas
520 button_check_all: Zašrtnout vše
609 button_rollback: Zpět k této verzi
521 button_uncheck_all: Odšrtnout vše
610 button_watch: Sledovat
522 button_delete: Odstranit
611 button_unwatch: Nesledovat
523 button_create: Vytvořit
612 button_reply: Odpovědět
524 button_test: Test
613 button_archive: Archivovat
525 button_edit: Upravit
614 button_unarchive: Odarchivovat
526 button_add: Přidat
615 button_reset: Reset
527 button_change: Změnit
616 button_rename: Přejmenovat
528 button_apply: Použít
617 button_change_password: Změnit heslo
529 button_clear: Smazat
618 button_copy: Kopírovat
530 button_lock: Zamknout
619 button_annotate: Komentovat
531 button_unlock: Odemknout
620 button_update: Aktualizovat
532 button_download: Stáhnout
621 button_configure: Konfigurovat
533 button_list: Vypsat
622
534 button_view: Zobrazit
623 status_active: aktivní
535 button_move: Přesunout
624 status_registered: registrovaný
536 button_back: Zpět
625 status_locked: uzamčený
537 button_cancel: Storno
626
538 button_activate: Aktivovat
627 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
539 button_sort: Seřadit
628 text_regexp_info: např. ^[A-Z0-9]+$
540 button_log_time: Přidat čas
629 text_min_max_length_info: 0 znamená bez limitu
541 button_rollback: Zpět k této verzi
630 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
542 button_watch: Sledovat
631 text_workflow_edit: Vyberte roli a frontu k editaci workflow
543 button_unwatch: Nesledovat
632 text_are_you_sure: Jste si jisti?
544 button_reply: Odpovědět
633 text_journal_changed: "změněno z {{old}} na {{new}}"
545 button_archive: Archivovat
634 text_journal_set_to: "nastaveno na {{value}}"
546 button_unarchive: Odarchivovat
635 text_journal_deleted: odstraněno
547 button_reset: Reset
636 text_tip_task_begin_day: úkol začíná v tento den
548 button_rename: Přejmenovat
637 text_tip_task_end_day: úkol končí v tento den
549 button_change_password: Změnit heslo
638 text_tip_task_begin_end_day: úkol začíná a končí v tento den
550 button_copy: Kopírovat
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.'
551 button_annotate: Komentovat
640 text_caracters_maximum: "{{count}} znaků maximálně."
552 button_update: Aktualizovat
641 text_caracters_minimum: "Musí být alespoň {{count}} znaků dlouhé."
553 button_configure: Konfigurovat
642 text_length_between: "Délka mezi {{min}} a {{max}} znaky."
554
643 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
555 status_active: aktivní
644 text_unallowed_characters: Nepovolené znaky
556 status_registered: registrovaný
645 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
557 status_locked: uzamčený
646 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
558
647 text_issue_added: "Úkol {{id}} byl vytvořen uživatelem {{author}}."
559 text_select_mail_notifications: Vyberte akci při které bude zasláno upozornění emailem.
648 text_issue_updated: "Úkol {{id}} byl aktualizován uživatelem {{author}}."
560 text_regexp_info: např. ^[A-Z0-9]+$
649 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
561 text_min_max_length_info: 0 znamená bez limitu
650 text_issue_category_destroy_question: "Některé úkoly ({{count}}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?"
562 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
651 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
563 text_workflow_edit: Vyberte roli a frontu k editaci workflow
652 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
564 text_are_you_sure: Jste si jisti?
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))."
565 text_journal_changed: změněno z %s na %s
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"
566 text_journal_set_to: nastaveno na %s
655 text_load_default_configuration: Nahrát výchozí konfiguraci
567 text_journal_deleted: odstraněno
656 text_status_changed_by_changeset: "Použito v changesetu {{value}}."
568 text_tip_task_begin_day: úkol začíná v tento den
657 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
569 text_tip_task_end_day: úkol končí v tento den
658 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
570 text_tip_task_begin_end_day: úkol začíná a končí v tento den
659 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
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.'
660 text_file_repository_writable: Povolen zápis do repository
572 text_caracters_maximum: %d znaků maximálně.
661 text_rmagick_available: RMagick k dispozici (volitelné)
573 text_caracters_minimum: Musí být alespoň %d znaků dlouhé.
662 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
574 text_length_between: Délka mezi %d a %d znaky.
663 text_destroy_time_entries: Odstranit evidované hodiny.
575 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
664 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
576 text_unallowed_characters: Nepovolené znaky
665 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
577 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
666
578 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
667 default_role_manager: Manažer
579 text_issue_added: Úkol %s byl vytvořen uživatelem %s.
668 default_role_developper: Vývojář
580 text_issue_updated: Úkol %s byl aktualizován uživatelem %s.
669 default_role_reporter: Reportér
581 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
670 default_tracker_bug: Chyba
582 text_issue_category_destroy_question: Některé úkoly (%d) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?
671 default_tracker_feature: Požadavek
583 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
672 default_tracker_support: Podpora
584 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
673 default_issue_status_new: Nový
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))."
674 default_issue_status_assigned: Přiřazený
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"
675 default_issue_status_resolved: Vyřešený
587 text_load_default_configuration: Nahrát výchozí konfiguraci
676 default_issue_status_feedback: Čeká se
588 text_status_changed_by_changeset: Použito v changesetu %s.
677 default_issue_status_closed: Uzavřený
589 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
678 default_issue_status_rejected: Odmítnutý
590 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
679 default_doc_category_user: Uživatelská dokumentace
591 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
680 default_doc_category_tech: Technická dokumentace
592 text_file_repository_writable: Povolen zápis do repository
681 default_priority_low: Nízká
593 text_rmagick_available: RMagick k dispozici (volitelné)
682 default_priority_normal: Normální
594 text_destroy_time_entries_question: U úkolů, které chcete odstranit je evidováno %.02f práce. Co chete udělat?
683 default_priority_high: Vysoká
595 text_destroy_time_entries: Odstranit evidované hodiny.
684 default_priority_urgent: Urgentní
596 text_assign_time_entries_to_project: Přiřadit evidované hodiny projektu
685 default_priority_immediate: Okamžitá
597 text_reassign_time_entries: 'Přeřadit evidované hodiny k tomuto úkolu:'
686 default_activity_design: Design
598
687 default_activity_development: Vývoj
599 default_role_manager: Manažer
688
600 default_role_developper: Vývojář
689 enumeration_issue_priorities: Priority úkolů
601 default_role_reporter: Reportér
690 enumeration_doc_categories: Kategorie dokumentů
602 default_tracker_bug: Chyba
691 enumeration_activities: Aktivity (sledování času)
603 default_tracker_feature: Požadavek
692 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
604 default_tracker_support: Podpora
693 label_planning: Plánování
605 default_issue_status_new: Nový
694 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
606 default_issue_status_assigned: Přiřazený
695 label_and_its_subprojects: "{{value}} and its subprojects"
607 default_issue_status_resolved: Vyřešený
696 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
608 default_issue_status_feedback: Čeká se
697 mail_subject_reminder: "{{count}} issue(s) due in the next days"
609 default_issue_status_closed: Uzavřený
698 text_user_wrote: "{{value}} wrote:'"
610 default_issue_status_rejected: Odmítnutý
699 label_duplicated_by: duplicated by
611 default_doc_category_user: Uživatelská dokumentace
700 setting_enabled_scm: Enabled SCM
612 default_doc_category_tech: Technická dokumentace
701 text_enumeration_category_reassign_to: 'Reassign them to this value:'
613 default_priority_low: Nízká
702 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
614 default_priority_normal: Normální
703 label_incoming_emails: Incoming emails
615 default_priority_high: Vysoká
704 label_generate_key: Generate a key
616 default_priority_urgent: Urgentní
705 setting_mail_handler_api_enabled: Enable WS for incoming emails
617 default_priority_immediate: Okamžitá
706 setting_mail_handler_api_key: API key
618 default_activity_design: Design
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."
619 default_activity_development: Vývoj
708 field_parent_title: Parent page
620
709 label_issue_watchers: Watchers
621 enumeration_issue_priorities: Priority úkolů
710 setting_commit_logs_encoding: Commit messages encoding
622 enumeration_doc_categories: Kategorie dokumentů
711 button_quote: Quote
623 enumeration_activities: Aktivity (sledování času)
712 setting_sequential_project_identifiers: Generate sequential project identifiers
624 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
713 notice_unable_delete_version: Unable to delete version
625 label_planning: Plánování
714 label_renamed: renamed
626 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
715 label_copied: copied
627 label_and_its_subprojects: %s and its subprojects
716 setting_plain_text_mail: plain text only (no HTML)
628 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
717 permission_view_files: View files
629 mail_subject_reminder: "%d issue(s) due in the next days"
718 permission_edit_issues: Edit issues
630 text_user_wrote: '%s wrote:'
719 permission_edit_own_time_entries: Edit own time logs
631 label_duplicated_by: duplicated by
720 permission_manage_public_queries: Manage public queries
632 setting_enabled_scm: Enabled SCM
721 permission_add_issues: Add issues
633 text_enumeration_category_reassign_to: 'Reassign them to this value:'
722 permission_log_time: Log spent time
634 text_enumeration_destroy_question: '%d objects are assigned to this value.'
723 permission_view_changesets: View changesets
635 label_incoming_emails: Incoming emails
724 permission_view_time_entries: View spent time
636 label_generate_key: Generate a key
725 permission_manage_versions: Manage versions
637 setting_mail_handler_api_enabled: Enable WS for incoming emails
726 permission_manage_wiki: Manage wiki
638 setting_mail_handler_api_key: API key
727 permission_manage_categories: Manage issue categories
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."
728 permission_protect_wiki_pages: Protect wiki pages
640 field_parent_title: Parent page
729 permission_comment_news: Comment news
641 label_issue_watchers: Watchers
730 permission_delete_messages: Delete messages
642 setting_commit_logs_encoding: Commit messages encoding
731 permission_select_project_modules: Select project modules
643 button_quote: Quote
732 permission_manage_documents: Manage documents
644 setting_sequential_project_identifiers: Generate sequential project identifiers
733 permission_edit_wiki_pages: Edit wiki pages
645 notice_unable_delete_version: Unable to delete version
734 permission_add_issue_watchers: Add watchers
646 label_renamed: renamed
735 permission_view_gantt: View gantt chart
647 label_copied: copied
736 permission_move_issues: Move issues
648 setting_plain_text_mail: plain text only (no HTML)
737 permission_manage_issue_relations: Manage issue relations
649 permission_view_files: View files
738 permission_delete_wiki_pages: Delete wiki pages
650 permission_edit_issues: Edit issues
739 permission_manage_boards: Manage boards
651 permission_edit_own_time_entries: Edit own time logs
740 permission_delete_wiki_pages_attachments: Delete attachments
652 permission_manage_public_queries: Manage public queries
741 permission_view_wiki_edits: View wiki history
653 permission_add_issues: Add issues
742 permission_add_messages: Post messages
654 permission_log_time: Log spent time
743 permission_view_messages: View messages
655 permission_view_changesets: View changesets
744 permission_manage_files: Manage files
656 permission_view_time_entries: View spent time
745 permission_edit_issue_notes: Edit notes
657 permission_manage_versions: Manage versions
746 permission_manage_news: Manage news
658 permission_manage_wiki: Manage wiki
747 permission_view_calendar: View calendrier
659 permission_manage_categories: Manage issue categories
748 permission_manage_members: Manage members
660 permission_protect_wiki_pages: Protect wiki pages
749 permission_edit_messages: Edit messages
661 permission_comment_news: Comment news
750 permission_delete_issues: Delete issues
662 permission_delete_messages: Delete messages
751 permission_view_issue_watchers: View watchers list
663 permission_select_project_modules: Select project modules
752 permission_manage_repository: Manage repository
664 permission_manage_documents: Manage documents
753 permission_commit_access: Commit access
665 permission_edit_wiki_pages: Edit wiki pages
754 permission_browse_repository: Browse repository
666 permission_add_issue_watchers: Add watchers
755 permission_view_documents: View documents
667 permission_view_gantt: View gantt chart
756 permission_edit_project: Edit project
668 permission_move_issues: Move issues
757 permission_add_issue_notes: Add notes
669 permission_manage_issue_relations: Manage issue relations
758 permission_save_queries: Save queries
670 permission_delete_wiki_pages: Delete wiki pages
759 permission_view_wiki_pages: View wiki
671 permission_manage_boards: Manage boards
760 permission_rename_wiki_pages: Rename wiki pages
672 permission_delete_wiki_pages_attachments: Delete attachments
761 permission_edit_time_entries: Edit time logs
673 permission_view_wiki_edits: View wiki history
762 permission_edit_own_issue_notes: Edit own notes
674 permission_add_messages: Post messages
763 setting_gravatar_enabled: Use Gravatar user icons
675 permission_view_messages: View messages
764 label_example: Example
676 permission_manage_files: Manage files
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."
677 permission_edit_issue_notes: Edit notes
766 permission_edit_own_messages: Edit own messages
678 permission_manage_news: Manage news
767 permission_delete_own_messages: Delete own messages
679 permission_view_calendar: View calendrier
768 label_user_activity: "{{value}}'s activity"
680 permission_manage_members: Manage members
769 label_updated_time_by: "Updated by {{author}} {{age}} ago"
681 permission_edit_messages: Edit messages
770 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
682 permission_delete_issues: Delete issues
771 setting_diff_max_lines_displayed: Max number of diff lines displayed
683 permission_view_issue_watchers: View watchers list
772 text_plugin_assets_writable: Plugin assets directory writable
684 permission_manage_repository: Manage repository
773 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
685 permission_commit_access: Commit access
774 button_create_and_continue: Create and continue
686 permission_browse_repository: Browse repository
775 text_custom_field_possible_values_info: 'One line for each value'
687 permission_view_documents: View documents
776 label_display: Display
688 permission_edit_project: Edit project
777 field_editable: Editable
689 permission_add_issue_notes: Add notes
778 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
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
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 da:
4 actionview_datehelper_select_month_names: Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December
5 date:
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 formats:
6 actionview_datehelper_select_month_prefix:
7 default: "%d.%m.%Y"
7 actionview_datehelper_select_year_prefix:
8 short: "%e. %b %Y"
8 actionview_datehelper_time_in_words_day: 1 dag
9 long: "%e. %B %Y"
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
21
10
22 activerecord_error_inclusion: er ikke i listen
11 day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
23 activerecord_error_exclusion: er reserveret
12 abbr_day_names: [, ma, ti, 'on', to, fr, ]
24 activerecord_error_invalid: er ugyldig
13 month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december]
25 activerecord_error_confirmation: passer ikke bekræftelsen
14 abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
26 activerecord_error_accepted: skal accepteres
15 order: [ :day, :month, :year ]
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
38
16
39 general_fmt_age: %d år
17 time:
40 general_fmt_age_plural: %d år
18 formats:
41 general_fmt_date: %%d/%%m/%%Y
19 default: "%e. %B %Y, %H:%M"
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
20 short: "%e. %b %Y, %H:%M"
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
21 long: "%A, %e. %B %Y, %H:%M"
44 general_fmt_time: %%H:%%M
22 am: ""
45 general_text_No: 'Nej'
23 pm: ""
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'
55
24
56 notice_account_updated: Kontoen er opdateret.
25 support:
57 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
26 array:
58 notice_account_password_updated: Kodeordet er opdateret.
27 sentence_connector: "og"
59 notice_account_wrong_password: Forkert kodeord
28 skip_last_comma: true
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.
79
29
80 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %s"
30 datetime:
81 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
31 distance_in_words:
82 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: %s"
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
64 number:
85 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
65 format:
86 mail_subject_register: %s kontoaktivering
66 separator: ","
87 mail_body_register: 'For at aktivere din konto, klik dette link:'
67 delimiter: "."
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind.
68 precision: 3
89 mail_body_account_information: Din kontoinformation
69 currency:
90 mail_subject_account_activation_request: %s kontoaktivering
70 format:
91 mail_body_account_activation_request: 'En ny bruger (%s) er registreret. Godkend venligst kontoen:'
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
93 activerecord:
94 gui_validation_error_plural: %d fejl
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
119 template:
97 field_description: Beskrivelse
120 header:
98 field_summary: Sammenfatning
121 one: "En fejl forhindrede {{model}} i at blive gemt"
99 field_is_required: Skal udfyldes
122 other: "{{count}} fejl forhindrede denne {{model}} i at blive gemt"
100 field_firstname: Fornavn
123 body: "Der var problemer med følgende felter:"
101 field_lastname: Efternavn
124
102 field_mail: Email
125 actionview_instancetag_blank_option: Vælg venligst
103 field_filename: Fil
126
104 field_filesize: Størrelse
127 general_text_No: 'Nej'
105 field_downloads: Downloads
128 general_text_Yes: 'Ja'
106 field_author: Forfatter
129 general_text_no: 'nej'
107 field_created_on: Oprettet
130 general_text_yes: 'ja'
108 field_updated_on: Opdateret
131 general_lang_name: 'Danish (Dansk)'
109 field_field_format: Format
132 general_csv_separator: ','
110 field_is_for_all: For alle projekter
133 general_csv_encoding: ISO-8859-1
111 field_possible_values: Mulige værdier
134 general_pdf_encoding: ISO-8859-1
112 field_regexp: Regulære udtryk
135 general_first_day_of_week: '1'
113 field_min_length: Mindste længde
136
114 field_max_length: Største længde
137 notice_account_updated: Kontoen er opdateret.
115 field_value: Værdi
138 notice_account_invalid_creditentials: Ugyldig bruger og kodeord
116 field_category: Kategori
139 notice_account_password_updated: Kodeordet er opdateret.
117 field_title: Titel
140 notice_account_wrong_password: Forkert kodeord
118 field_project: Projekt
141 notice_account_register_done: Kontoen er oprettet. For at aktivere kontoen skal du klikke på linket i den tilsendte email.
119 field_issue: Sag
142 notice_account_unknown_email: Ukendt bruger.
120 field_status: Status
143 notice_can_t_change_password: Denne konto benytter en ekstern sikkerhedsgodkendelse. Det er ikke muligt at skifte kodeord.
121 field_notes: Noter
144 notice_account_lost_email_sent: En email med instruktioner til at vælge et nyt kodeord er afsendt til dig.
122 field_is_closed: Sagen er lukket
145 notice_account_activated: Din konto er aktiveret. Du kan nu logge ind.
123 field_is_default: Standardværdi
146 notice_successful_create: Succesfuld oprettelse.
124 field_tracker: Type
147 notice_successful_update: Succesfuld opdatering.
125 field_subject: Emne
148 notice_successful_delete: Succesfuld sletning.
126 field_due_date: Deadline
149 notice_successful_connection: Succesfuld forbindelse.
127 field_assigned_to: Tildelt til
150 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
128 field_priority: Prioritet
151 notice_locking_conflict: Data er opdateret af en anden bruger.
129 field_fixed_version: Target version
152 notice_not_authorized: Du har ikke adgang til denne side.
130 field_user: Bruger
153 notice_email_sent: "En email er sendt til {{value}}"
131 field_role: Rolle
154 notice_email_error: "En fejl opstod under afsendelse af email ({{value}})"
132 field_homepage: Hjemmeside
155 notice_feeds_access_key_reseted: Din adgangsnøgle til RSS er nulstillet.
133 field_is_public: Offentlig
156 notice_failed_to_save_issues: "Det mislykkedes at gemme {{count}} sage(r) {{total}} valgt: {{ids}}."
134 field_parent: Underprojekt af
157 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
135 field_is_in_chlog: Sager vist i ændringer
158 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
136 field_is_in_roadmap: Sager vist i roadmap
159 notice_default_data_loaded: Standardopsætningen er indlæst.
137 field_login: Login
160
138 field_mail_notification: Email-påmindelser
161 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: {{value}}"
139 field_admin: Administrator
162 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
140 field_last_login_on: Sidste forbindelse
163 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: {{value}}"
141 field_language: Sprog
164
142 field_effective_date: Dato
165 mail_subject_lost_password: "Dit {{value}} kodeord"
143 field_password: Kodeord
166 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
144 field_new_password: Nyt kodeord
167 mail_subject_register: "{{value}} kontoaktivering"
145 field_password_confirmation: Bekræft
168 mail_body_register: 'For at aktivere din konto, klik dette link:'
146 field_version: Version
169 mail_body_account_information_external: "Du kan bruge din {{value}} konto til at logge ind."
147 field_type: Type
170 mail_body_account_information: Din kontoinformation
148 field_host: Vært
171 mail_subject_account_activation_request: "{{value}} kontoaktivering"
149 field_port: Port
172 mail_body_account_activation_request: "En ny bruger ({{value}}) er registreret. Godkend venligst kontoen:'"
150 field_account: Kode
173
151 field_base_dn: Base DN
174 gui_validation_error: 1 fejl
152 field_attr_login: Login attribut
175 gui_validation_error_plural: "{{count}} fejl"
153 field_attr_firstname: Fornavn attribut
176
154 field_attr_lastname: Efternavn attribut
177 field_name: Navn
155 field_attr_mail: Email attribut
178 field_description: Beskrivelse
156 field_onthefly: løbende brugeroprettelse
179 field_summary: Sammenfatning
157 field_start_date: Start
180 field_is_required: Skal udfyldes
158 field_done_ratio: %% Færdig
181 field_firstname: Fornavn
159 field_auth_source: Sikkerhedsmetode
182 field_lastname: Efternavn
160 field_hide_mail: Skjul min email
183 field_mail: Email
161 field_comments: Kommentar
184 field_filename: Fil
162 field_url: URL
185 field_filesize: Størrelse
163 field_start_page: Startside
186 field_downloads: Downloads
164 field_subproject: Underprojekt
187 field_author: Forfatter
165 field_hours: Timer
188 field_created_on: Oprettet
166 field_activity: Aktivitet
189 field_updated_on: Opdateret
167 field_spent_on: Dato
190 field_field_format: Format
168 field_identifier: Identificering
191 field_is_for_all: For alle projekter
169 field_is_filter: Brugt som et filter
192 field_possible_values: Mulige værdier
170 field_issue_to_id: Beslægtede sag
193 field_regexp: Regulære udtryk
171 field_delay: Udsættelse
194 field_min_length: Mindste længde
172 field_assignable: Sager kan tildeles denne rolle
195 field_max_length: Største længde
173 field_redirect_existing_links: Videresend eksisterende links
196 field_value: Værdi
174 field_estimated_hours: Anslået tid
197 field_category: Kategori
175 field_column_names: Kolonner
198 field_title: Titel
176 field_time_zone: Tidszone
199 field_project: Projekt
177 field_searchable: Søgbar
200 field_issue: Sag
178 field_default_value: Standardværdi
201 field_status: Status
179
202 field_notes: Noter
180 setting_app_title: Applikationstitel
203 field_is_closed: Sagen er lukket
181 setting_app_subtitle: Applikationsundertekst
204 field_is_default: Standardværdi
182 setting_welcome_text: Velkomsttekst
205 field_tracker: Type
183 setting_default_language: Standardsporg
206 field_subject: Emne
184 setting_login_required: Sikkerhed påkrævet
207 field_due_date: Deadline
185 setting_self_registration: Brugeroprettelse
208 field_assigned_to: Tildelt til
186 setting_attachment_max_size: Vedhæftede filers max størrelse
209 field_priority: Prioritet
187 setting_issues_export_limit: Sagseksporteringsbegrænsning
210 field_fixed_version: Target version
188 setting_mail_from: Afsender-email
211 field_user: Bruger
189 setting_bcc_recipients: Skjult modtager (bcc)
212 field_role: Rolle
190 setting_host_name: Værts navn
213 field_homepage: Hjemmeside
191 setting_text_formatting: Tekstformatering
214 field_is_public: Offentlig
192 setting_wiki_compression: Wiki historikkomprimering
215 field_parent: Underprojekt af
193 setting_feeds_limit: Feed indholdsbegrænsning
216 field_is_in_chlog: Sager vist i ændringer
194 setting_autofetch_changesets: Automatisk hent commits
217 field_is_in_roadmap: Sager vist i roadmap
195 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
218 field_login: Login
196 setting_commit_ref_keywords: Referencenøgleord
219 field_mail_notification: Email-påmindelser
197 setting_commit_fix_keywords: Afslutningsnøgleord
220 field_admin: Administrator
198 setting_autologin: Autologin
221 field_last_login_on: Sidste forbindelse
199 setting_date_format: Datoformat
222 field_language: Sprog
200 setting_time_format: Tidsformat
223 field_effective_date: Dato
201 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
224 field_password: Kodeord
202 setting_issue_list_default_columns: Standardkolonner på sagslisten
225 field_new_password: Nyt kodeord
203 setting_repositories_encodings: Repository-tegnsæt
226 field_password_confirmation: Bekræft
204 setting_emails_footer: Email-fodnote
227 field_version: Version
205 setting_protocol: Protokol
228 field_type: Type
206 setting_per_page_options: Objekter pr. side-indstillinger
229 field_host: Vært
207 setting_user_format: Brugervisningsformat
230 field_port: Port
208
231 field_account: Kode
209 project_module_issue_tracking: Sagssøgning
232 field_base_dn: Base DN
210 project_module_time_tracking: Tidsstyring
233 field_attr_login: Login attribut
211 project_module_news: Nyheder
234 field_attr_firstname: Fornavn attribut
212 project_module_documents: Dokumenter
235 field_attr_lastname: Efternavn attribut
213 project_module_files: Filer
236 field_attr_mail: Email attribut
214 project_module_wiki: Wiki
237 field_onthefly: løbende brugeroprettelse
215 project_module_repository: Repository
238 field_start_date: Start
216 project_module_boards: Opslagstavle
239 field_done_ratio: %% Færdig
217
240 field_auth_source: Sikkerhedsmetode
218 label_user: Bruger
241 field_hide_mail: Skjul min email
219 label_user_plural: Brugere
242 field_comments: Kommentar
220 label_user_new: Ny bruger
243 field_url: URL
221 label_project: Projekt
244 field_start_page: Startside
222 label_project_new: Nyt projekt
245 field_subproject: Underprojekt
223 label_project_plural: Projekter
246 field_hours: Timer
224 label_project_all: Alle projekter
247 field_activity: Aktivitet
225 label_project_latest: Seneste projekter
248 field_spent_on: Dato
226 label_issue: Sag
249 field_identifier: Identificering
227 label_issue_new: Opret sag
250 field_is_filter: Brugt som et filter
228 label_issue_plural: Sager
251 field_issue_to_id: Beslægtede sag
229 label_issue_view_all: Vis alle sager
252 field_delay: Udsættelse
230 label_issues_by: Sager fra %s
253 field_assignable: Sager kan tildeles denne rolle
231 label_issue_added: Sagen er oprettet
254 field_redirect_existing_links: Videresend eksisterende links
232 label_issue_updated: Sagen er opdateret
255 field_estimated_hours: Anslået tid
233 label_document: Dokument
256 field_column_names: Kolonner
234 label_document_new: Nyt dokument
257 field_time_zone: Tidszone
235 label_document_plural: Dokumenter
258 field_searchable: Søgbar
236 label_document_added: Dokument tilføjet
259 field_default_value: Standardværdi
237 label_role: Rolle
260
238 label_role_plural: Roller
261 setting_app_title: Applikationstitel
239 label_role_new: Ny rolle
262 setting_app_subtitle: Applikationsundertekst
240 label_role_and_permissions: Roller og rettigheder
263 setting_welcome_text: Velkomsttekst
241 label_member: Medlem
264 setting_default_language: Standardsporg
242 label_member_new: Nyt medlem
265 setting_login_required: Sikkerhed påkrævet
243 label_member_plural: Medlemmer
266 setting_self_registration: Brugeroprettelse
244 label_tracker: Type
267 setting_attachment_max_size: Vedhæftede filers max størrelse
245 label_tracker_plural: Typer
268 setting_issues_export_limit: Sagseksporteringsbegrænsning
246 label_tracker_new: Ny type
269 setting_mail_from: Afsender-email
247 label_workflow: Arbejdsgang
270 setting_bcc_recipients: Skjult modtager (bcc)
248 label_issue_status: Sagsstatus
271 setting_host_name: Værts navn
249 label_issue_status_plural: Sagsstatuser
272 setting_text_formatting: Tekstformatering
250 label_issue_status_new: Ny status
273 setting_wiki_compression: Wiki historikkomprimering
251 label_issue_category: Sagskategori
274 setting_feeds_limit: Feed indholdsbegrænsning
252 label_issue_category_plural: Sagskategorier
275 setting_autofetch_changesets: Automatisk hent commits
253 label_issue_category_new: Ny kategori
276 setting_sys_api_enabled: Aktiver webservice for automatisk administration af repository
254 label_custom_field: Brugerdefineret felt
277 setting_commit_ref_keywords: Referencenøgleord
255 label_custom_field_plural: Brugerdefineret felt
278 setting_commit_fix_keywords: Afslutningsnøgleord
256 label_custom_field_new: Nyt brugerdefineret felt
279 setting_autologin: Autologin
257 label_enumerations: Værdier
280 setting_date_format: Datoformat
258 label_enumeration_new: Ny værdi
281 setting_time_format: Tidsformat
259 label_information: Information
282 setting_cross_project_issue_relations: Tillad sagsrelationer på tværs af projekter
260 label_information_plural: Information
283 setting_issue_list_default_columns: Standardkolonner på sagslisten
261 label_please_login: Login
284 setting_repositories_encodings: Repository-tegnsæt
262 label_register: Registrer
285 setting_emails_footer: Email-fodnote
263 label_password_lost: Glemt kodeord
286 setting_protocol: Protokol
264 label_home: Forside
287 setting_per_page_options: Objekter pr. side-indstillinger
265 label_my_page: Min side
288 setting_user_format: Brugervisningsformat
266 label_my_account: Min konto
289
267 label_my_projects: Mine projekter
290 project_module_issue_tracking: Sagssøgning
268 label_administration: Administration
291 project_module_time_tracking: Tidsstyring
269 label_login: Log ind
292 project_module_news: Nyheder
270 label_logout: Log ud
293 project_module_documents: Dokumenter
271 label_help: Hjælp
294 project_module_files: Filer
272 label_reported_issues: Rapporterede sager
295 project_module_wiki: Wiki
273 label_assigned_to_me_issues: Sager tildelt til mig
296 project_module_repository: Repository
274 label_last_login: Sidste forbindelse
297 project_module_boards: Opslagstavle
275 label_last_updates: Sidst opdateret
298
276 label_last_updates_plural: %d sidst opdateret
299 label_user: Bruger
277 label_registered_on: Registeret den
300 label_user_plural: Brugere
278 label_activity: Aktivitet
301 label_user_new: Ny bruger
279 label_new: Ny
302 label_project: Projekt
280 label_logged_as: Registreret som
303 label_project_new: Nyt projekt
281 label_environment: Miljø
304 label_project_plural: Projekter
282 label_authentication: Sikkerhed
305 label_x_projects:
283 label_auth_source: Sikkerhedsmetode
306 zero: no projects
284 label_auth_source_new: Ny sikkerhedsmetode
307 one: 1 project
285 label_auth_source_plural: Sikkerhedsmetoder
308 other: "{{count}} projects"
286 label_subproject_plural: Underprojekter
309 label_project_all: Alle projekter
287 label_min_max_length: Min - Max længde
310 label_project_latest: Seneste projekter
288 label_list: Liste
311 label_issue: Sag
289 label_date: Dato
312 label_issue_new: Opret sag
290 label_integer: Heltal
313 label_issue_plural: Sager
291 label_float: Kommatal
314 label_issue_view_all: Vis alle sager
292 label_boolean: Sand/falsk
315 label_issues_by: "Sager fra {{value}}"
293 label_string: Tekst
316 label_issue_added: Sagen er oprettet
294 label_text: Lang tekst
317 label_issue_updated: Sagen er opdateret
295 label_attribute: Attribut
318 label_document: Dokument
296 label_attribute_plural: Attributter
319 label_document_new: Nyt dokument
297 label_download: %d Download
320 label_document_plural: Dokumenter
298 label_download_plural: %d Downloads
321 label_document_added: Dokument tilføjet
299 label_no_data: Ingen data at vise
322 label_role: Rolle
300 label_change_status: Ændringsstatus
323 label_role_plural: Roller
301 label_history: Historik
324 label_role_new: Ny rolle
302 label_attachment: Fil
325 label_role_and_permissions: Roller og rettigheder
303 label_attachment_new: Ny fil
326 label_member: Medlem
304 label_attachment_delete: Slet fil
327 label_member_new: Nyt medlem
305 label_attachment_plural: Filer
328 label_member_plural: Medlemmer
306 label_file_added: Fil tilføjet
329 label_tracker: Type
307 label_report: Rapport
330 label_tracker_plural: Typer
308 label_report_plural: Rapporter
331 label_tracker_new: Ny type
309 label_news: Nyheder
332 label_workflow: Arbejdsgang
310 label_news_new: Tilføj nyheder
333 label_issue_status: Sagsstatus
311 label_news_plural: Nyheder
334 label_issue_status_plural: Sagsstatuser
312 label_news_latest: Seneste nyheder
335 label_issue_status_new: Ny status
313 label_news_view_all: Vis alle nyheder
336 label_issue_category: Sagskategori
314 label_news_added: Nyhed tilføjet
337 label_issue_category_plural: Sagskategorier
315 label_change_log: Ændringer
338 label_issue_category_new: Ny kategori
316 label_settings: Indstillinger
339 label_custom_field: Brugerdefineret felt
317 label_overview: Oversigt
340 label_custom_field_plural: Brugerdefineret felt
318 label_version: Version
341 label_custom_field_new: Nyt brugerdefineret felt
319 label_version_new: Ny version
342 label_enumerations: Værdier
320 label_version_plural: Versioner
343 label_enumeration_new: Ny værdi
321 label_confirmation: Bekræftigelser
344 label_information: Information
322 label_export_to: Eksporter til
345 label_information_plural: Information
323 label_read: Læs...
346 label_please_login: Login
324 label_public_projects: Offentlige projekter
347 label_register: Registrer
325 label_open_issues: åben
348 label_password_lost: Glemt kodeord
326 label_open_issues_plural: åbne
349 label_home: Forside
327 label_closed_issues: lukket
350 label_my_page: Min side
328 label_closed_issues_plural: lukkede
351 label_my_account: Min konto
329 label_total: Total
352 label_my_projects: Mine projekter
330 label_permissions: Rettigheder
353 label_administration: Administration
331 label_current_status: Nuværende status
354 label_login: Log ind
332 label_new_statuses_allowed: Ny status tilladt
355 label_logout: Log ud
333 label_all: alle
356 label_help: Hjælp
334 label_none: intet
357 label_reported_issues: Rapporterede sager
335 label_nobody: ingen
358 label_assigned_to_me_issues: Sager tildelt til mig
336 label_next: Næste
359 label_last_login: Sidste forbindelse
337 label_previous: Forrig
360 label_registered_on: Registeret den
338 label_used_by: Brugt af
361 label_activity: Aktivitet
339 label_details: Detaljer
362 label_new: Ny
340 label_add_note: Tilføj en note
363 label_logged_as: Registreret som
341 label_per_page: Pr. side
364 label_environment: Miljø
342 label_calendar: Kalender
365 label_authentication: Sikkerhed
343 label_months_from: måneder frem
366 label_auth_source: Sikkerhedsmetode
344 label_gantt: Gantt
367 label_auth_source_new: Ny sikkerhedsmetode
345 label_internal: Intern
368 label_auth_source_plural: Sikkerhedsmetoder
346 label_last_changes: sidste %d ændringer
369 label_subproject_plural: Underprojekter
347 label_change_view_all: Vis alle ændringer
370 label_min_max_length: Min - Max længde
348 label_personalize_page: Tilret denne side
371 label_list: Liste
349 label_comment: Kommentar
372 label_date: Dato
350 label_comment_plural: Kommentarer
373 label_integer: Heltal
351 label_comment_add: Tilføj en kommentar
374 label_float: Kommatal
352 label_comment_added: Kommentaren er tilføjet
375 label_boolean: Sand/falsk
353 label_comment_delete: Slet kommentar
376 label_string: Tekst
354 label_query: Brugerdefineret forespørgsel
377 label_text: Lang tekst
355 label_query_plural: Brugerdefinerede forespørgsler
378 label_attribute: Attribut
356 label_query_new: Ny forespørgsel
379 label_attribute_plural: Attributter
357 label_filter_add: Tilføj filter
380 label_download: "{{count}} Download"
358 label_filter_plural: Filtre
381 label_download_plural: "{{count}} Downloads"
359 label_equals: er
382 label_no_data: Ingen data at vise
360 label_not_equals: er ikke
383 label_change_status: Ændringsstatus
361 label_in_less_than: er mindre end
384 label_history: Historik
362 label_in_more_than: er større end
385 label_attachment: Fil
363 label_in: indeholdt i
386 label_attachment_new: Ny fil
364 label_today: i dag
387 label_attachment_delete: Slet fil
365 label_all_time: altid
388 label_attachment_plural: Filer
366 label_yesterday: i går
389 label_file_added: Fil tilføjet
367 label_this_week: denne uge
390 label_report: Rapport
368 label_last_week: sidste uge
391 label_report_plural: Rapporter
369 label_last_n_days: sidste %d dage
392 label_news: Nyheder
370 label_this_month: denne måned
393 label_news_new: Tilføj nyheder
371 label_last_month: sidste måned
394 label_news_plural: Nyheder
372 label_this_year: dette år
395 label_news_latest: Seneste nyheder
373 label_date_range: Dato interval
396 label_news_view_all: Vis alle nyheder
374 label_less_than_ago: mindre end dage siden
397 label_news_added: Nyhed tilføjet
375 label_more_than_ago: mere end dage siden
398 label_change_log: Ændringer
376 label_ago: days siden
399 label_settings: Indstillinger
377 label_contains: indeholder
400 label_overview: Oversigt
378 label_not_contains: ikke indeholder
401 label_version: Version
379 label_day_plural: dage
402 label_version_new: Ny version
380 label_repository: Repository
403 label_version_plural: Versioner
381 label_repository_plural: Repositories
404 label_confirmation: Bekræftigelser
382 label_browse: Gennemse
405 label_export_to: Eksporter til
383 label_modification: %d ændring
406 label_read: Læs...
384 label_modification_plural: %d ændringer
407 label_public_projects: Offentlige projekter
385 label_revision: Revision
408 label_open_issues: åben
386 label_revision_plural: Revisioner
409 label_open_issues_plural: åbne
387 label_associated_revisions: Tilnyttede revisioner
410 label_closed_issues: lukket
388 label_added: tilføjet
411 label_closed_issues_plural: lukkede
389 label_modified: ændret
412 label_x_open_issues_abbr_on_total:
390 label_deleted: slettet
413 zero: 0 open / {{total}}
391 label_latest_revision: Seneste revision
414 one: 1 open / {{total}}
392 label_latest_revision_plural: Seneste revisioner
415 other: "{{count}} open / {{total}}"
393 label_view_revisions: Se revisioner
416 label_x_open_issues_abbr:
394 label_max_size: Maximal størrelse
417 zero: 0 open
395 label_on: 'til'
418 one: 1 open
396 label_sort_highest: Flyt til toppen
419 other: "{{count}} open"
397 label_sort_higher: Flyt op
420 label_x_closed_issues_abbr:
398 label_sort_lower: Flyt ned
421 zero: 0 closed
399 label_sort_lowest: Flyt til bunden
422 one: 1 closed
400 label_roadmap: Roadmap
423 other: "{{count}} closed"
401 label_roadmap_due_in: Deadline
424 label_total: Total
402 label_roadmap_overdue: %s forsinket
425 label_permissions: Rettigheder
403 label_roadmap_no_issues: Ingen sager til denne version
426 label_current_status: Nuværende status
404 label_search: Søg
427 label_new_statuses_allowed: Ny status tilladt
405 label_result_plural: Resultater
428 label_all: alle
406 label_all_words: Alle ord
429 label_none: intet
407 label_wiki: Wiki
430 label_nobody: ingen
408 label_wiki_edit: Wiki ændring
431 label_next: Næste
409 label_wiki_edit_plural: Wiki ændringer
432 label_previous: Forrig
410 label_wiki_page: Wiki side
433 label_used_by: Brugt af
411 label_wiki_page_plural: Wiki sider
434 label_details: Detaljer
412 label_index_by_title: Indhold efter titel
435 label_add_note: Tilføj en note
413 label_index_by_date: Indhold efter dato
436 label_per_page: Pr. side
414 label_current_version: Nuværende version
437 label_calendar: Kalender
415 label_preview: Forhåndsvisning
438 label_months_from: måneder frem
416 label_feed_plural: Feeds
439 label_gantt: Gantt
417 label_changes_details: Detaljer for alle ænringer
440 label_internal: Intern
418 label_issue_tracking: Sags søgning
441 label_last_changes: "sidste {{count}} ændringer"
419 label_spent_time: Brugt tid
442 label_change_view_all: Vis alle ændringer
420 label_f_hour: %.2f time
443 label_personalize_page: Tilret denne side
421 label_f_hour_plural: %.2f timer
444 label_comment: Kommentar
422 label_time_tracking: Tidsstyring
445 label_comment_plural: Kommentarer
423 label_change_plural: Ændringer
446 label_x_comments:
424 label_statistics: Statistik
447 zero: no comments
425 label_commits_per_month: Commits pr. måned
448 one: 1 comment
426 label_commits_per_author: Commits pr. bruger
449 other: "{{count}} comments"
427 label_view_diff: Vis forskellighed
450 label_comment_add: Tilføj en kommentar
428 label_diff_inline: inline
451 label_comment_added: Kommentaren er tilføjet
429 label_diff_side_by_side: side om side
452 label_comment_delete: Slet kommentar
430 label_options: Optioner
453 label_query: Brugerdefineret forespørgsel
431 label_copy_workflow_from: Kopier arbejdsgang fra
454 label_query_plural: Brugerdefinerede forespørgsler
432 label_permissions_report: Godkendelsesrapport
455 label_query_new: Ny forespørgsel
433 label_watched_issues: Overvågede sager
456 label_filter_add: Tilføj filter
434 label_related_issues: Relaterede sager
457 label_filter_plural: Filtre
435 label_applied_status: Anvendte statuser
458 label_equals: er
436 label_loading: Indlæser...
459 label_not_equals: er ikke
437 label_relation_new: Ny relation
460 label_in_less_than: er mindre end
438 label_relation_delete: Slet relation
461 label_in_more_than: er større end
439 label_relates_to: relaterer til
462 label_in: indeholdt i
440 label_duplicates: kopierer
463 label_today: i dag
441 label_blocks: blokerer
464 label_all_time: altid
442 label_blocked_by: blokeret af
465 label_yesterday: i går
443 label_precedes: kommer før
466 label_this_week: denne uge
444 label_follows: følger
467 label_last_week: sidste uge
445 label_end_to_start: slut til start
468 label_last_n_days: "sidste {{count}} dage"
446 label_end_to_end: slut til slut
469 label_this_month: denne måned
447 label_start_to_start: start til start
470 label_last_month: sidste måned
448 label_start_to_end: start til slut
471 label_this_year: dette år
449 label_stay_logged_in: Forbliv indlogget
472 label_date_range: Dato interval
450 label_disabled: deaktiveret
473 label_less_than_ago: mindre end dage siden
451 label_show_completed_versions: Vis færdige versioner
474 label_more_than_ago: mere end dage siden
452 label_me: mig
475 label_ago: days siden
453 label_board: Forum
476 label_contains: indeholder
454 label_board_new: Nyt forum
477 label_not_contains: ikke indeholder
455 label_board_plural: Fora
478 label_day_plural: dage
456 label_topic_plural: Emner
479 label_repository: Repository
457 label_message_plural: Beskeder
480 label_repository_plural: Repositories
458 label_message_last: Sidste besked
481 label_browse: Gennemse
459 label_message_new: Ny besked
482 label_modification: "{{count}} ændring"
460 label_message_posted: Besked tilføjet
483 label_modification_plural: "{{count}} ændringer"
461 label_reply_plural: Besvarer
484 label_revision: Revision
462 label_send_information: Send konto information til bruger
485 label_revision_plural: Revisioner
463 label_year: År
486 label_associated_revisions: Tilnyttede revisioner
464 label_month: Måned
487 label_added: tilføjet
465 label_week: Uge
488 label_modified: ændret
466 label_date_from: Fra
489 label_deleted: slettet
467 label_date_to: Til
490 label_latest_revision: Seneste revision
468 label_language_based: Baseret på brugerens sprog
491 label_latest_revision_plural: Seneste revisioner
469 label_sort_by: Sorter efter %s
492 label_view_revisions: Se revisioner
470 label_send_test_email: Send en test email
493 label_max_size: Maximal størrelse
471 label_feeds_access_key_created_on: RSS adgangsnøgle danet for %s siden
494 label_sort_highest: Flyt til toppen
472 label_module_plural: Moduler
495 label_sort_higher: Flyt op
473 label_added_time_by: Tilføjet af %s for %s siden
496 label_sort_lower: Flyt ned
474 label_updated_time: Opdateret for %s siden
497 label_sort_lowest: Flyt til bunden
475 label_jump_to_a_project: Skift til projekt...
498 label_roadmap: Roadmap
476 label_file_plural: Filer
499 label_roadmap_due_in: Deadline
477 label_changeset_plural: Ændringer
500 label_roadmap_overdue: "{{value}} forsinket"
478 label_default_columns: Standard kolonner
501 label_roadmap_no_issues: Ingen sager til denne version
479 label_no_change_option: (Ingen ændringer)
502 label_search: Søg
480 label_bulk_edit_selected_issues: Masseret de valgte sager
503 label_result_plural: Resultater
481 label_theme: Tema
504 label_all_words: Alle ord
482 label_default: standard
505 label_wiki: Wiki
483 label_search_titles_only: Søg kun i titler
506 label_wiki_edit: Wiki ændring
484 label_user_mail_option_all: "For alle hændelser mine projekter"
507 label_wiki_edit_plural: Wiki ændringer
485 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
508 label_wiki_page: Wiki side
486 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
509 label_wiki_page_plural: Wiki sider
487 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
510 label_index_by_title: Indhold efter titel
488 label_registration_activation_by_email: kontoaktivering på email
511 label_index_by_date: Indhold efter dato
489 label_registration_manual_activation: manuel kontoaktivering
512 label_current_version: Nuværende version
490 label_registration_automatic_activation: automatisk kontoaktivering
513 label_preview: Forhåndsvisning
491 label_display_per_page: 'Per side: %s'
514 label_feed_plural: Feeds
492 label_age: Alder
515 label_changes_details: Detaljer for alle ænringer
493 label_change_properties: Ændre indstillinger
516 label_issue_tracking: Sags søgning
494 label_general: Generalt
517 label_spent_time: Brugt tid
495 label_more: Mere
518 label_f_hour: "{{value}} time"
496 label_scm: SCM
519 label_f_hour_plural: "{{value}} timer"
497 label_plugins: Plugins
520 label_time_tracking: Tidsstyring
498 label_ldap_authentication: LDAP-godkendelse
521 label_change_plural: Ændringer
499 label_downloads_abbr: D/L
522 label_statistics: Statistik
500
523 label_commits_per_month: Commits pr. måned
501 button_login: Login
524 label_commits_per_author: Commits pr. bruger
502 button_submit: Send
525 label_view_diff: Vis forskellighed
503 button_save: Gem
526 label_diff_inline: inline
504 button_check_all: Vælg alt
527 label_diff_side_by_side: side om side
505 button_uncheck_all: Fravælg alt
528 label_options: Optioner
506 button_delete: Slet
529 label_copy_workflow_from: Kopier arbejdsgang fra
507 button_create: Opret
530 label_permissions_report: Godkendelsesrapport
508 button_test: Test
531 label_watched_issues: Overvågede sager
509 button_edit: Ret
532 label_related_issues: Relaterede sager
510 button_add: Tilføj
533 label_applied_status: Anvendte statuser
511 button_change: Ændre
534 label_loading: Indlæser...
512 button_apply: Anvend
535 label_relation_new: Ny relation
513 button_clear: Nulstil
536 label_relation_delete: Slet relation
514 button_lock: Lås
537 label_relates_to: relaterer til
515 button_unlock: Lås op
538 label_duplicates: kopierer
516 button_download: Download
539 label_blocks: blokerer
517 button_list: List
540 label_blocked_by: blokeret af
518 button_view: Vis
541 label_precedes: kommer før
519 button_move: Flyt
542 label_follows: følger
520 button_back: Tilbage
543 label_end_to_start: slut til start
521 button_cancel: Annuller
544 label_end_to_end: slut til slut
522 button_activate: Aktiver
545 label_start_to_start: start til start
523 button_sort: Sorter
546 label_start_to_end: start til slut
524 button_log_time: Log tid
547 label_stay_logged_in: Forbliv indlogget
525 button_rollback: Tilbagefør til denne version
548 label_disabled: deaktiveret
526 button_watch: Overvåg
549 label_show_completed_versions: Vis færdige versioner
527 button_unwatch: Stop overvågning
550 label_me: mig
528 button_reply: Besvar
551 label_board: Forum
529 button_archive: Arkiver
552 label_board_new: Nyt forum
530 button_unarchive: Fjern fra arkiv
553 label_board_plural: Fora
531 button_reset: Nulstil
554 label_topic_plural: Emner
532 button_rename: Omdøb
555 label_message_plural: Beskeder
533 button_change_password: Skift kodeord
556 label_message_last: Sidste besked
534 button_copy: Kopier
557 label_message_new: Ny besked
535 button_annotate: Annotere
558 label_message_posted: Besked tilføjet
536 button_update: Opdater
559 label_reply_plural: Besvarer
537 button_configure: Konfigurer
560 label_send_information: Send konto information til bruger
538
561 label_year: År
539 status_active: aktiv
562 label_month: Måned
540 status_registered: registreret
563 label_week: Uge
541 status_locked: låst
564 label_date_from: Fra
542
565 label_date_to: Til
543 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
566 label_language_based: Baseret på brugerens sprog
544 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
567 label_sort_by: "Sorter efter {{value}}"
545 text_min_max_length_info: 0 betyder ingen begrænsninger
568 label_send_test_email: Send en test email
546 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
569 label_feeds_access_key_created_on: "RSS adgangsnøgle danet for {{value}} siden"
547 text_workflow_edit: Vælg en rolle samt en type for at redigere arbejdsgangen
570 label_module_plural: Moduler
548 text_are_you_sure: Er du sikker?
571 label_added_time_by: "Tilføjet af {{author}} for {{age}} siden"
549 text_journal_changed: ændret fra %s til %s
572 label_updated_time: "Opdateret for {{value}} siden"
550 text_journal_set_to: sat til %s
573 label_jump_to_a_project: Skift til projekt...
551 text_journal_deleted: slettet
574 label_file_plural: Filer
552 text_tip_task_begin_day: opgaven begynder denne dag
575 label_changeset_plural: Ændringer
553 text_tip_task_end_day: opaven slutter denne dag
576 label_default_columns: Standard kolonner
554 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
577 label_no_change_option: (Ingen ændringer)
555 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
578 label_bulk_edit_selected_issues: Masseret de valgte sager
556 text_caracters_maximum: max %d karakterer.
579 label_theme: Tema
557 text_caracters_minimum: Skal være mindst %d karakterer lang.
580 label_default: standard
558 text_length_between: Længde skal være mellem %d og %d karakterer.
581 label_search_titles_only: Søg kun i titler
559 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
582 label_user_mail_option_all: "For alle hændelser mine projekter"
560 text_unallowed_characters: Ikke tilladte karakterer
583 label_user_mail_option_selected: "For alle hændelser, kun de valgte projekter..."
561 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
584 label_user_mail_option_none: "Kun for ting jeg overvåger, eller jeg er involveret i"
562 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
585 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretaget af mig selv"
563 text_issue_added: Sag %s er rapporteret af %s.
586 label_registration_activation_by_email: kontoaktivering på email
564 text_issue_updated: Sag %s er blevet opdateret af %s.
587 label_registration_manual_activation: manuel kontoaktivering
565 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
588 label_registration_automatic_activation: automatisk kontoaktivering
566 text_issue_category_destroy_question: Nogle sager (%d) er tildelt denne kategori. Hvad ønsker du at gøre?
589 label_display_per_page: "Per side: {{value}}'"
567 text_issue_category_destroy_assignments: Slet tildelinger af kategori
590 label_age: Alder
568 text_issue_category_reassign_to: Tildel sager til denne kategori
591 label_change_properties: Ændre indstillinger
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)."
592 label_general: Generalt
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."
593 label_more: Mere
571 text_load_default_configuration: Indlæs standardopsætningen
594 label_scm: SCM
572 text_status_changed_by_changeset: Anvendt i ændring %s.
595 label_plugins: Plugins
573 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
596 label_ldap_authentication: LDAP-godkendelse
574 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
597 label_downloads_abbr: D/L
575 text_default_administrator_account_changed: Standard administratorkonto ændret
598
576 text_file_repository_writable: Filarkiv er skrivbar
599 button_login: Login
577 text_rmagick_available: RMagick tilgængelig (valgfri)
600 button_submit: Send
578
601 button_save: Gem
579 default_role_manager: Leder
602 button_check_all: Vælg alt
580 default_role_developper: Udvikler
603 button_uncheck_all: Fravælg alt
581 default_role_reporter: Rapportør
604 button_delete: Slet
582 default_tracker_bug: Bug
605 button_create: Opret
583 default_tracker_feature: Feature
606 button_test: Test
584 default_tracker_support: Support
607 button_edit: Ret
585 default_issue_status_new: Ny
608 button_add: Tilføj
586 default_issue_status_assigned: Tildelt
609 button_change: Ændre
587 default_issue_status_resolved: Løst
610 button_apply: Anvend
588 default_issue_status_feedback: Feedback
611 button_clear: Nulstil
589 default_issue_status_closed: Lukket
612 button_lock: Lås
590 default_issue_status_rejected: Afvist
613 button_unlock: Lås op
591 default_doc_category_user: Brugerdokumentation
614 button_download: Download
592 default_doc_category_tech: Teknisk dokumentation
615 button_list: List
593 default_priority_low: Lav
616 button_view: Vis
594 default_priority_normal: Normal
617 button_move: Flyt
595 default_priority_high: Høj
618 button_back: Tilbage
596 default_priority_urgent: Akut
619 button_cancel: Annuller
597 default_priority_immediate: Omgående
620 button_activate: Aktiver
598 default_activity_design: Design
621 button_sort: Sorter
599 default_activity_development: Udvikling
622 button_log_time: Log tid
600
623 button_rollback: Tilbagefør til denne version
601 enumeration_issue_priorities: Sagsprioriteter
624 button_watch: Overvåg
602 enumeration_doc_categories: Dokumentkategorier
625 button_unwatch: Stop overvågning
603 enumeration_activities: Aktiviteter (tidsstyring)
626 button_reply: Besvar
604
627 button_archive: Arkiver
605 label_add_another_file: Tilføj endnu en fil
628 button_unarchive: Fjern fra arkiv
606 label_chronological_order: I kronologisk rækkefølge
629 button_reset: Nulstil
607 setting_activity_days_default: Antal dage der vises under projektaktivitet
630 button_rename: Omdøb
608 text_destroy_time_entries_question: %.02f timer er reporteret på denne sag, som du er ved at slette. Hvad vil du gøre?
631 button_change_password: Skift kodeord
609 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
632 button_copy: Kopier
610 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
633 button_annotate: Annotere
611 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
634 button_update: Opdater
612 label_optional_description: Optionel beskrivelse
635 button_configure: Konfigurer
613 text_destroy_time_entries: Slet raportede timer
636
614 field_comments_sorting: Vis kommentar
637 status_active: aktiv
615 text_reassign_time_entries: 'Tildel raportede timer til denne sag igen'
638 status_registered: registreret
616 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
639 status_locked: låst
617 label_preferences: Preferences
640
618 label_overall_activity: Overordnet aktivitet
641 text_select_mail_notifications: Vælg handlinger der skal sendes email besked for.
619 setting_default_projects_public: Nye projekter er offentlige som standard
642 text_regexp_info: f.eks. ^[A-ZÆØÅ0-9]+$
620 error_scm_annotate: "The entry does not exist or can not be annotated."
643 text_min_max_length_info: 0 betyder ingen begrænsninger
621 label_planning: Planlægning
644 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
622 text_subprojects_destroy_warning: 'Dets underprojekter(er): %s vil også blive slettet.'
645 text_workflow_edit: Vælg en rolle samt en type for at redigere arbejdsgangen
623 permission_edit_issues: Edit issues
646 text_are_you_sure: Er du sikker?
624 setting_diff_max_lines_displayed: Max number of diff lines displayed
647 text_journal_changed: "ændret fra {{old}} til {{new}}"
625 permission_edit_own_issue_notes: Edit own notes
648 text_journal_set_to: "sat til {{value}}"
626 setting_enabled_scm: Enabled SCM
649 text_journal_deleted: slettet
627 button_quote: Quote
650 text_tip_task_begin_day: opgaven begynder denne dag
628 permission_view_files: View files
651 text_tip_task_end_day: opaven slutter denne dag
629 permission_add_issues: Add issues
652 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
630 permission_edit_own_messages: Edit own messages
653 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
631 permission_delete_own_messages: Delete own messages
654 text_caracters_maximum: "max {{count}} karakterer."
632 permission_manage_public_queries: Manage public queries
655 text_caracters_minimum: "Skal være mindst {{count}} karakterer lang."
633 permission_log_time: Log spent time
656 text_length_between: "Længde skal være mellem {{min}} og {{max}} karakterer."
634 label_renamed: renamed
657 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
635 label_incoming_emails: Incoming emails
658 text_unallowed_characters: Ikke tilladte karakterer
636 permission_view_changesets: View changesets
659 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
637 permission_manage_versions: Manage versions
660 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
638 permission_view_time_entries: View spent time
661 text_issue_added: "Sag {{id}} er rapporteret af {{author}}."
639 label_generate_key: Generate a key
662 text_issue_updated: "Sag {{id}} er blevet opdateret af {{author}}."
640 permission_manage_categories: Manage issue categories
663 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
641 permission_manage_wiki: Manage wiki
664 text_issue_category_destroy_question: "Nogle sager ({{count}}) er tildelt denne kategori. Hvad ønsker du at gøre?"
642 setting_sequential_project_identifiers: Generate sequential project identifiers
665 text_issue_category_destroy_assignments: Slet tildelinger af kategori
643 setting_plain_text_mail: Plain text mail (no HTML)
666 text_issue_category_reassign_to: Tildel sager til denne kategori
644 field_parent_title: Parent page
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)."
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."
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."
646 permission_protect_wiki_pages: Protect wiki pages
669 text_load_default_configuration: Indlæs standardopsætningen
647 permission_manage_documents: Manage documents
670 text_status_changed_by_changeset: "Anvendt i ændring {{value}}."
648 permission_add_issue_watchers: Add watchers
671 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
649 warning_attachments_not_saved: "%d file(s) could not be saved."
672 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
650 permission_comment_news: Comment news
673 text_default_administrator_account_changed: Standard administratorkonto ændret
651 text_enumeration_category_reassign_to: 'Reassign them to this value:'
674 text_file_repository_writable: Filarkiv er skrivbar
652 permission_select_project_modules: Select project modules
675 text_rmagick_available: RMagick tilgængelig (valgfri)
653 permission_view_gantt: View gantt chart
676
654 permission_delete_messages: Delete messages
677 default_role_manager: Leder
655 permission_move_issues: Move issues
678 default_role_developper: Udvikler
656 permission_edit_wiki_pages: Edit wiki pages
679 default_role_reporter: Rapportør
657 label_user_activity: "%s's activity"
680 default_tracker_bug: Bug
658 permission_manage_issue_relations: Manage issue relations
681 default_tracker_feature: Feature
659 label_issue_watchers: Watchers
682 default_tracker_support: Support
660 permission_delete_wiki_pages: Delete wiki pages
683 default_issue_status_new: Ny
661 notice_unable_delete_version: Unable to delete version.
684 default_issue_status_assigned: Tildelt
662 permission_view_wiki_edits: View wiki history
685 default_issue_status_resolved: Løst
663 field_editable: Editable
686 default_issue_status_feedback: Feedback
664 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
687 default_issue_status_closed: Lukket
665 label_duplicated_by: duplicated by
688 default_issue_status_rejected: Afvist
666 permission_manage_boards: Manage boards
689 default_doc_category_user: Brugerdokumentation
667 permission_delete_wiki_pages_attachments: Delete attachments
690 default_doc_category_tech: Teknisk dokumentation
668 permission_view_messages: View messages
691 default_priority_low: Lav
669 text_enumeration_destroy_question: '%d objects are assigned to this value.'
692 default_priority_normal: Normal
670 permission_manage_files: Manage files
693 default_priority_high: Høj
671 permission_add_messages: Post messages
694 default_priority_urgent: Akut
672 permission_edit_issue_notes: Edit notes
695 default_priority_immediate: Omgående
673 permission_manage_news: Manage news
696 default_activity_design: Design
674 text_plugin_assets_writable: Plugin assets directory writable
697 default_activity_development: Udvikling
675 label_display: Display
698
676 label_and_its_subprojects: %s and its subprojects
699 enumeration_issue_priorities: Sagsprioriteter
677 permission_view_calendar: View calender
700 enumeration_doc_categories: Dokumentkategorier
678 button_create_and_continue: Create and continue
701 enumeration_activities: Aktiviteter (tidsstyring)
679 setting_gravatar_enabled: Use Gravatar user icons
702
680 label_updated_time_by: Updated by %s %s ago
703 label_add_another_file: Tilføj endnu en fil
681 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
704 label_chronological_order: I kronologisk rækkefølge
682 text_user_wrote: '%s wrote:'
705 setting_activity_days_default: Antal dage der vises under projektaktivitet
683 setting_mail_handler_api_enabled: Enable WS for incoming emails
706 text_destroy_time_entries_question: %.02f timer er reporteret på denne sag, som du er ved at slette. Hvad vil du gøre?
684 permission_delete_issues: Delete issues
707 error_issue_not_found_in_project: 'Sagen blev ikke fundet eller tilhører ikke dette projekt'
685 permission_view_documents: View documents
708 text_assign_time_entries_to_project: Tildel raporterede timer til projektet
686 permission_browse_repository: Browse repository
709 setting_display_subprojects_issues: Vis sager for underprojekter på hovedprojektet som standard
687 permission_manage_repository: Manage repository
710 label_optional_description: Optionel beskrivelse
688 permission_manage_members: Manage members
711 text_destroy_time_entries: Slet raportede timer
689 mail_subject_reminder: "%d issue(s) due in the next days"
712 field_comments_sorting: Vis kommentar
690 permission_add_issue_notes: Add notes
713 text_reassign_time_entries: 'Tildel raportede timer til denne sag igen'
691 permission_edit_messages: Edit messages
714 label_reverse_chronological_order: I omvendt kronologisk rækkefølge
692 permission_view_issue_watchers: View watchers list
715 label_preferences: Preferences
693 permission_commit_access: Commit access
716 label_overall_activity: Overordnet aktivitet
694 setting_mail_handler_api_key: API key
717 setting_default_projects_public: Nye projekter er offentlige som standard
695 label_example: Example
718 error_scm_annotate: "The entry does not exist or can not be annotated."
696 permission_rename_wiki_pages: Rename wiki pages
719 label_planning: Planlægning
697 text_custom_field_possible_values_info: 'One line for each value'
720 text_subprojects_destroy_warning: "Dets underprojekter(er): {{value}} vil også blive slettet.'"
698 permission_view_wiki_pages: View wiki
721 permission_edit_issues: Edit issues
699 permission_edit_project: Edit project
722 setting_diff_max_lines_displayed: Max number of diff lines displayed
700 permission_save_queries: Save queries
723 permission_edit_own_issue_notes: Edit own notes
701 label_copied: copied
724 setting_enabled_scm: Enabled SCM
702 setting_commit_logs_encoding: Commit messages encoding
725 button_quote: Quote
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."
726 permission_view_files: View files
704 permission_edit_time_entries: Edit time logs
727 permission_add_issues: Add issues
705 general_csv_decimal_separator: '.'
728 permission_edit_own_messages: Edit own messages
706 permission_edit_own_time_entries: Edit own time logs
729 permission_delete_own_messages: Delete own messages
707 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
730 permission_manage_public_queries: Manage public queries
708 field_identity_url: OpenID URL
731 permission_log_time: Log spent time
709 setting_openid: Allow OpenID login and registration
732 label_renamed: renamed
710 label_login_with_open_id_option: or login with OpenID
733 label_incoming_emails: Incoming emails
711 field_watcher: Watcher
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 de:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 date:
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 formats:
6 actionview_datehelper_select_month_prefix:
7 default: "%d.%m.%Y"
7 actionview_datehelper_select_year_prefix:
8 short: "%e. %b"
8 actionview_datehelper_time_in_words_day: 1 Tag
9 long: "%e. %B %Y"
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
10 only_day: "%e"
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
21
11
22 activerecord_error_inclusion: ist nicht in der Liste enthalten
12 day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
23 activerecord_error_exclusion: ist reserviert
13 abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
24 activerecord_error_invalid: ist unzulässig
14 month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
25 activerecord_error_confirmation: passt nicht zur Bestätigung
15 abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
26 activerecord_error_accepted: muss angenommen werden
16 order: [ :day, :month, :year ]
27 activerecord_error_empty: darf nicht leer sein
17
28 activerecord_error_blank: darf nicht leer sein
18 time:
29 activerecord_error_too_long: ist zu lang
19 formats:
30 activerecord_error_too_short: ist zu kurz
20 default: "%A, %e. %B %Y, %H:%M Uhr"
31 activerecord_error_wrong_length: hat die falsche Länge
21 short: "%e. %B, %H:%M Uhr"
32 activerecord_error_taken: ist bereits vergeben
22 long: "%A, %e. %B %Y, %H:%M Uhr"
33 activerecord_error_not_a_number: ist keine Zahl
23 time: "%H:%M"
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
38
24
39 general_fmt_age: %d Jahr
25 am: "vormittags"
40 general_fmt_age_plural: %d Jahre
26 pm: "nachmittags"
41 general_fmt_date: %%d.%%m.%%y
27
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
28 datetime:
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
29 distance_in_words:
44 general_fmt_time: %%H:%%M
30 half_a_minute: 'eine halbe Minute'
45 general_text_No: 'Nein'
31 less_than_x_seconds:
46 general_text_Yes: 'Ja'
32 zero: 'weniger als 1 Sekunde'
47 general_text_no: 'nein'
33 one: 'weniger als 1 Sekunde'
48 general_text_yes: 'ja'
34 other: 'weniger als {{count}} Sekunden'
49 general_lang_name: 'Deutsch'
35 x_seconds:
50 general_csv_separator: ';'
36 one: '1 Sekunde'
51 general_csv_decimal_separator: ','
37 other: '{{count}} Sekunden'
52 general_csv_encoding: ISO-8859-1
38 less_than_x_minutes:
53 general_pdf_encoding: ISO-8859-1
39 zero: 'weniger als 1 Minute'
54 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
40 one: 'weniger als eine Minute'
55 general_first_day_of_week: '1'
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.
87 support:
58 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
88 array:
59 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
89 sentence_connector: "und"
60 notice_account_wrong_password: Falsches Kennwort
90 skip_last_comma: true
61 notice_account_register_done: Konto wurde erfolgreich angelegt.
91
62 notice_account_unknown_email: Unbekannter Benutzer.
92 activerecord:
63 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
93 errors:
64 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
94 template:
65 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
95 header:
66 notice_successful_create: Erfolgreich angelegt
96 one: "Konnte dieses {{model}} Objekt nicht speichern: 1 Fehler."
67 notice_successful_update: Erfolgreich aktualisiert.
97 other: "Konnte dieses {{model}} Objekt nicht speichern: {{count}} Fehler."
68 notice_successful_delete: Erfolgreich gelöscht.
98 body: "Bitte überprüfen Sie die folgenden Felder:"
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
81
99
82 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %s"
100 messages:
83 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
101 inclusion: "ist kein gültiger Wert"
84 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %s"
102 exclusion: "ist nicht verfügbar"
85 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
103 invalid: "ist nicht gültig"
86 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
104 confirmation: "stimmt nicht mit der Bestätigung überein"
87
105 accepted: "muss akzeptiert werden"
88 warning_attachments_not_saved: "%d Datei(en) konnten nicht gespeichert werden."
106 empty: "muss ausgefüllt werden"
89
107 blank: "muss ausgefüllt werden"
90 mail_subject_lost_password: Ihr %s Kennwort
108 too_long: "ist zu lang (nicht mehr als {{count}} Zeichen)"
91 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
109 too_short: "ist zu kurz (nicht weniger als {{count}} Zeichen)"
92 mail_subject_register: %s Kontoaktivierung
110 wrong_length: "hat die falsche Länge (muss genau {{count}} Zeichen haben)"
93 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
111 taken: "ist bereits vergeben"
94 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an anmelden.
112 not_a_number: "ist keine Zahl"
95 mail_body_account_information: Ihre Konto-Informationen
113 greater_than: "muss größer als {{count}} sein"
96 mail_subject_account_activation_request: Antrag auf %s Kontoaktivierung
114 greater_than_or_equal_to: "muss größer oder gleich {{count}} sein"
97 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
115 equal_to: "muss genau {{count}} sein"
98 mail_subject_reminder: "%d Tickets müssen in den nächsten Tagen abgegeben werden"
116 less_than: "muss kleiner als {{count}} sein"
99 mail_body_reminder: "%d Tickets, die Ihnen zugewiesen sind, müssen in den nächsten %d Tagen abgegeben werden:"
117 less_than_or_equal_to: "muss kleiner oder gleich {{count}} sein"
100
118 odd: "muss ungerade sein"
101 gui_validation_error: 1 Fehler
119 even: "muss gerade sein"
102 gui_validation_error_plural: %d Fehler
120 greater_than_start_date: "muss größer als Anfangsdatum sein"
103
121 not_same_project: "gehört nicht zum selben Projekt"
104 field_name: Name
122 circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen"
105 field_description: Beschreibung
123 models:
106 field_summary: Zusammenfassung
124
107 field_is_required: Erforderlich
125 actionview_instancetag_blank_option: Bitte auswählen
108 field_firstname: Vorname
126
109 field_lastname: Nachname
127 general_text_No: 'Nein'
110 field_mail: E-Mail
128 general_text_Yes: 'Ja'
111 field_filename: Datei
129 general_text_no: 'nein'
112 field_filesize: Größe
130 general_text_yes: 'ja'
113 field_downloads: Downloads
131 general_lang_name: 'Deutsch'
114 field_author: Autor
132 general_csv_separator: ';'
115 field_created_on: Angelegt
133 general_csv_decimal_separator: ','
116 field_updated_on: Aktualisiert
134 general_csv_encoding: ISO-8859-1
117 field_field_format: Format
135 general_pdf_encoding: ISO-8859-1
118 field_is_for_all: Für alle Projekte
136 general_first_day_of_week: '1'
119 field_possible_values: Mögliche Werte
137
120 field_regexp: Regulärer Ausdruck
138 notice_account_updated: Konto wurde erfolgreich aktualisiert.
121 field_min_length: Minimale Länge
139 notice_account_invalid_creditentials: Benutzer oder Kennwort unzulässig
122 field_max_length: Maximale Länge
140 notice_account_password_updated: Kennwort wurde erfolgreich aktualisiert.
123 field_value: Wert
141 notice_account_wrong_password: Falsches Kennwort
124 field_category: Kategorie
142 notice_account_register_done: Konto wurde erfolgreich angelegt.
125 field_title: Titel
143 notice_account_unknown_email: Unbekannter Benutzer.
126 field_project: Projekt
144 notice_can_t_change_password: Dieses Konto verwendet eine externe Authentifizierungs-Quelle. Unmöglich, das Kennwort zu ändern.
127 field_issue: Ticket
145 notice_account_lost_email_sent: Eine E-Mail mit Anweisungen, ein neues Kennwort zu wählen, wurde Ihnen geschickt.
128 field_status: Status
146 notice_account_activated: Ihr Konto ist aktiviert. Sie können sich jetzt anmelden.
129 field_notes: Kommentare
147 notice_successful_create: Erfolgreich angelegt
130 field_is_closed: Ticket geschlossen
148 notice_successful_update: Erfolgreich aktualisiert.
131 field_is_default: Standardeinstellung
149 notice_successful_delete: Erfolgreich gelöscht.
132 field_tracker: Tracker
150 notice_successful_connection: Verbindung erfolgreich.
133 field_subject: Thema
151 notice_file_not_found: Anhang existiert nicht oder ist gelöscht worden.
134 field_due_date: Abgabedatum
152 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
135 field_assigned_to: Zugewiesen an
153 notice_not_authorized: Sie sind nicht berechtigt, auf diese Seite zuzugreifen.
136 field_priority: Priorität
154 notice_email_sent: "Eine E-Mail wurde an {{value}} gesendet."
137 field_fixed_version: Zielversion
155 notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten ({{value}})."
138 field_user: Benutzer
156 notice_feeds_access_key_reseted: Ihr Atom-Zugriffsschlüssel wurde zurückgesetzt.
139 field_role: Rolle
157 notice_failed_to_save_issues: "{{count}} von {{total}} ausgewählten Tickets konnte(n) nicht gespeichert werden: {{ids}}."
140 field_homepage: Projekt-Homepage
158 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
141 field_is_public: Öffentlich
159 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
142 field_parent: Unterprojekt von
160 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
143 field_is_in_chlog: Im Change-Log anzeigen
161 notice_unable_delete_version: Die Version konnte nicht gelöscht werden
144 field_is_in_roadmap: In der Roadmap anzeigen
162
145 field_login: Mitgliedsname
163 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: {{value}}"
146 field_mail_notification: Mailbenachrichtigung
164 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
147 field_admin: Administrator
165 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: {{value}}"
148 field_last_login_on: Letzte Anmeldung
166 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
149 field_language: Sprache
167 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
150 field_effective_date: Datum
168
151 field_password: Kennwort
169 warning_attachments_not_saved: "{{count}} Datei(en) konnten nicht gespeichert werden."
152 field_new_password: Neues Kennwort
170
153 field_password_confirmation: Bestätigung
171 mail_subject_lost_password: "Ihr {{value}} Kennwort"
154 field_version: Version
172 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
155 field_type: Typ
173 mail_subject_register: "{{value}} Kontoaktivierung"
156 field_host: Host
174 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
157 field_port: Port
175 mail_body_account_information_external: "Sie können sich mit Ihrem Konto {{value}} an anmelden."
158 field_account: Konto
176 mail_body_account_information: Ihre Konto-Informationen
159 field_base_dn: Base DN
177 mail_subject_account_activation_request: "Antrag auf {{value}} Kontoaktivierung"
160 field_attr_login: Mitgliedsname-Attribut
178 mail_body_account_activation_request: "Ein neuer Benutzer ({{value}}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'"
161 field_attr_firstname: Vorname-Attribut
179 mail_subject_reminder: "{{count}} Tickets müssen in den nächsten Tagen abgegeben werden"
162 field_attr_lastname: Name-Attribut
180 mail_body_reminder: "{{count}} Tickets, die Ihnen zugewiesen sind, müssen in den nächsten {{days}} Tagen abgegeben werden:"
163 field_attr_mail: E-Mail-Attribut
181
164 field_onthefly: On-the-fly-Benutzererstellung
182 gui_validation_error: 1 Fehler
165 field_start_date: Beginn
183 gui_validation_error_plural: "{{count}} Fehler"
166 field_done_ratio: %% erledigt
184
167 field_auth_source: Authentifizierungs-Modus
185 field_name: Name
168 field_hide_mail: E-Mail-Adresse nicht anzeigen
186 field_description: Beschreibung
169 field_comments: Kommentar
187 field_summary: Zusammenfassung
170 field_url: URL
188 field_is_required: Erforderlich
171 field_start_page: Hauptseite
189 field_firstname: Vorname
172 field_subproject: Subprojekt von
190 field_lastname: Nachname
173 field_hours: Stunden
191 field_mail: E-Mail
174 field_activity: Aktivität
192 field_filename: Datei
175 field_spent_on: Datum
193 field_filesize: Größe
176 field_identifier: Kennung
194 field_downloads: Downloads
177 field_is_filter: Als Filter benutzen
195 field_author: Autor
178 field_issue_to_id: Zugehöriges Ticket
196 field_created_on: Angelegt
179 field_delay: Pufferzeit
197 field_updated_on: Aktualisiert
180 field_assignable: Tickets können dieser Rolle zugewiesen werden
198 field_field_format: Format
181 field_redirect_existing_links: Existierende Links umleiten
199 field_is_for_all: Für alle Projekte
182 field_estimated_hours: Geschätzter Aufwand
200 field_possible_values: Mögliche Werte
183 field_column_names: Spalten
201 field_regexp: Regulärer Ausdruck
184 field_time_zone: Zeitzone
202 field_min_length: Minimale Länge
185 field_searchable: Durchsuchbar
203 field_max_length: Maximale Länge
186 field_default_value: Standardwert
204 field_value: Wert
187 field_comments_sorting: Kommentare anzeigen
205 field_category: Kategorie
188 field_parent_title: Übergeordnete Seite
206 field_title: Titel
189
207 field_project: Projekt
190 setting_app_title: Applikations-Titel
208 field_issue: Ticket
191 setting_app_subtitle: Applikations-Untertitel
209 field_status: Status
192 setting_welcome_text: Willkommenstext
210 field_notes: Kommentare
193 setting_default_language: Default-Sprache
211 field_is_closed: Ticket geschlossen
194 setting_login_required: Authentisierung erforderlich
212 field_is_default: Standardeinstellung
195 setting_self_registration: Anmeldung ermöglicht
213 field_tracker: Tracker
196 setting_attachment_max_size: Max. Dateigröße
214 field_subject: Thema
197 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
215 field_due_date: Abgabedatum
198 setting_mail_from: E-Mail-Absender
216 field_assigned_to: Zugewiesen an
199 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
217 field_priority: Priorität
200 setting_plain_text_mail: Nur reinen Text (kein HTML) senden
218 field_fixed_version: Zielversion
201 setting_host_name: Hostname
219 field_user: Benutzer
202 setting_text_formatting: Textformatierung
220 field_role: Rolle
203 setting_wiki_compression: Wiki-Historie komprimieren
221 field_homepage: Projekt-Homepage
204 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
222 field_is_public: Öffentlich
205 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
223 field_parent: Unterprojekt von
206 setting_autofetch_changesets: Changesets automatisch abrufen
224 field_is_in_chlog: Im Change-Log anzeigen
207 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
225 field_is_in_roadmap: In der Roadmap anzeigen
208 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
226 field_login: Mitgliedsname
209 setting_commit_fix_keywords: Schlüsselwörter (Status)
227 field_mail_notification: Mailbenachrichtigung
210 setting_autologin: Automatische Anmeldung
228 field_admin: Administrator
211 setting_date_format: Datumsformat
229 field_last_login_on: Letzte Anmeldung
212 setting_time_format: Zeitformat
230 field_language: Sprache
213 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
231 field_effective_date: Datum
214 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
232 field_password: Kennwort
215 setting_repositories_encodings: Kodierungen der Projektarchive
233 field_new_password: Neues Kennwort
216 setting_commit_logs_encoding: Kodierung der Commit-Log-Meldungen
234 field_password_confirmation: Bestätigung
217 setting_emails_footer: E-Mail-Fußzeile
235 field_version: Version
218 setting_protocol: Protokoll
236 field_type: Typ
219 setting_per_page_options: Objekte pro Seite
237 field_host: Host
220 setting_user_format: Benutzer-Anzeigeformat
238 field_port: Port
221 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
239 field_account: Konto
222 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
240 field_base_dn: Base DN
223 setting_enabled_scm: Aktivierte Versionskontrollsysteme
241 field_attr_login: Mitgliedsname-Attribut
224 setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren
242 field_attr_firstname: Vorname-Attribut
225 setting_mail_handler_api_key: API-Schlüssel
243 field_attr_lastname: Name-Attribut
226 setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren
244 field_attr_mail: E-Mail-Attribut
227 setting_gravatar_enabled: Gravatar Benutzerbilder benutzen
245 field_onthefly: On-the-fly-Benutzererstellung
228 setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen
246 field_start_date: Beginn
229
247 field_done_ratio: %% erledigt
230 permission_edit_project: Projekt bearbeiten
248 field_auth_source: Authentifizierungs-Modus
231 permission_select_project_modules: Projektmodule auswählen
249 field_hide_mail: E-Mail-Adresse nicht anzeigen
232 permission_manage_members: Mitglieder verwalten
250 field_comments: Kommentar
233 permission_manage_versions: Versionen verwalten
251 field_url: URL
234 permission_manage_categories: Ticket-Kategorien verwalten
252 field_start_page: Hauptseite
235 permission_add_issues: Tickets hinzufügen
253 field_subproject: Subprojekt von
236 permission_edit_issues: Tickets bearbeiten
254 field_hours: Stunden
237 permission_manage_issue_relations: Ticket-Beziehungen verwalten
255 field_activity: Aktivität
238 permission_add_issue_notes: Kommentare hinzufügen
256 field_spent_on: Datum
239 permission_edit_issue_notes: Kommentare bearbeiten
257 field_identifier: Kennung
240 permission_edit_own_issue_notes: Eigene Kommentare bearbeiten
258 field_is_filter: Als Filter benutzen
241 permission_move_issues: Tickets verschieben
259 field_issue_to_id: Zugehöriges Ticket
242 permission_delete_issues: Tickets löschen
260 field_delay: Pufferzeit
243 permission_manage_public_queries: Öffentliche Filter verwalten
261 field_assignable: Tickets können dieser Rolle zugewiesen werden
244 permission_save_queries: Filter speichern
262 field_redirect_existing_links: Existierende Links umleiten
245 permission_view_gantt: Gantt-Diagramm ansehen
263 field_estimated_hours: Geschätzter Aufwand
246 permission_view_calendar: Kalender ansehen
264 field_column_names: Spalten
247 permission_view_issue_watchers: Liste der Beobachter ansehen
265 field_time_zone: Zeitzone
248 permission_add_issue_watchers: Beobachter hinzufügen
266 field_searchable: Durchsuchbar
249 permission_log_time: Aufwände buchen
267 field_default_value: Standardwert
250 permission_view_time_entries: Gebuchte Aufwände ansehen
268 field_comments_sorting: Kommentare anzeigen
251 permission_edit_time_entries: Gebuchte Aufwände bearbeiten
269 field_parent_title: Übergeordnete Seite
252 permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten
270
253 permission_manage_news: News verwalten
271 setting_app_title: Applikations-Titel
254 permission_comment_news: News kommentieren
272 setting_app_subtitle: Applikations-Untertitel
255 permission_manage_documents: Dokumente verwalten
273 setting_welcome_text: Willkommenstext
256 permission_view_documents: Dokumente ansehen
274 setting_default_language: Default-Sprache
257 permission_manage_files: Dateien verwalten
275 setting_login_required: Authentisierung erforderlich
258 permission_view_files: Dateien ansehen
276 setting_self_registration: Anmeldung ermöglicht
259 permission_manage_wiki: Wiki verwalten
277 setting_attachment_max_size: Max. Dateigröße
260 permission_rename_wiki_pages: Wiki-Seiten umbenennen
278 setting_issues_export_limit: Max. Anzahl Tickets bei CSV/PDF-Export
261 permission_delete_wiki_pages: Wiki-Seiten löschen
279 setting_mail_from: E-Mail-Absender
262 permission_view_wiki_pages: Wiki ansehen
280 setting_bcc_recipients: E-Mails als Blindkopie (BCC) senden
263 permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen
281 setting_plain_text_mail: Nur reinen Text (kein HTML) senden
264 permission_edit_wiki_pages: Wiki-Seiten bearbeiten
282 setting_host_name: Hostname
265 permission_delete_wiki_pages_attachments: Anhänge löschen
283 setting_text_formatting: Textformatierung
266 permission_protect_wiki_pages: Wiki-Seiten schützen
284 setting_wiki_compression: Wiki-Historie komprimieren
267 permission_manage_repository: Projektarchiv verwalten
285 setting_feeds_limit: Max. Anzahl Einträge pro Atom-Feed
268 permission_browse_repository: Projektarchiv ansehen
286 setting_default_projects_public: Neue Projekte sind standardmäßig öffentlich
269 permission_view_changesets: Changesets ansehen
287 setting_autofetch_changesets: Changesets automatisch abrufen
270 permission_commit_access: Commit-Zugriff (über WebDAV)
288 setting_sys_api_enabled: Webservice zur Verwaltung der Projektarchive benutzen
271 permission_manage_boards: Foren verwalten
289 setting_commit_ref_keywords: Schlüsselwörter (Beziehungen)
272 permission_view_messages: Forenbeiträge ansehen
290 setting_commit_fix_keywords: Schlüsselwörter (Status)
273 permission_add_messages: Forenbeiträge hinzufügen
291 setting_autologin: Automatische Anmeldung
274 permission_edit_messages: Forenbeiträge bearbeiten
292 setting_date_format: Datumsformat
275 permission_edit_own_messages: Eigene Forenbeiträge bearbeiten
293 setting_time_format: Zeitformat
276 permission_delete_messages: Forenbeiträge löschen
294 setting_cross_project_issue_relations: Ticket-Beziehungen zwischen Projekten erlauben
277 permission_delete_own_messages: Eigene Forenbeiträge löschen
295 setting_issue_list_default_columns: Default-Spalten in der Ticket-Auflistung
278
296 setting_repositories_encodings: Kodierungen der Projektarchive
279 project_module_issue_tracking: Ticket-Verfolgung
297 setting_commit_logs_encoding: Kodierung der Commit-Log-Meldungen
280 project_module_time_tracking: Zeiterfassung
298 setting_emails_footer: E-Mail-Fußzeile
281 project_module_news: News
299 setting_protocol: Protokoll
282 project_module_documents: Dokumente
300 setting_per_page_options: Objekte pro Seite
283 project_module_files: Dateien
301 setting_user_format: Benutzer-Anzeigeformat
284 project_module_wiki: Wiki
302 setting_activity_days_default: Anzahl Tage pro Seite der Projekt-Aktivität
285 project_module_repository: Projektarchiv
303 setting_display_subprojects_issues: Tickets von Unterprojekten im Hauptprojekt anzeigen
286 project_module_boards: Foren
304 setting_enabled_scm: Aktivierte Versionskontrollsysteme
287
305 setting_mail_handler_api_enabled: Abruf eingehender E-Mails aktivieren
288 label_user: Benutzer
306 setting_mail_handler_api_key: API-Schlüssel
289 label_user_plural: Benutzer
307 setting_sequential_project_identifiers: Fortlaufende Projektkennungen generieren
290 label_user_new: Neuer Benutzer
308 setting_gravatar_enabled: Gravatar Benutzerbilder benutzen
291 label_project: Projekt
309 setting_diff_max_lines_displayed: Maximale Anzahl anzuzeigender Diff-Zeilen
292 label_project_new: Neues Projekt
310
293 label_project_plural: Projekte
311 permission_edit_project: Projekt bearbeiten
294 label_project_all: Alle Projekte
312 permission_select_project_modules: Projektmodule auswählen
295 label_project_latest: Neueste Projekte
313 permission_manage_members: Mitglieder verwalten
296 label_issue: Ticket
314 permission_manage_versions: Versionen verwalten
297 label_issue_new: Neues Ticket
315 permission_manage_categories: Ticket-Kategorien verwalten
298 label_issue_plural: Tickets
316 permission_add_issues: Tickets hinzufügen
299 label_issue_view_all: Alle Tickets anzeigen
317 permission_edit_issues: Tickets bearbeiten
300 label_issues_by: Tickets von %s
318 permission_manage_issue_relations: Ticket-Beziehungen verwalten
301 label_issue_added: Ticket hinzugefügt
319 permission_add_issue_notes: Kommentare hinzufügen
302 label_issue_updated: Ticket aktualisiert
320 permission_edit_issue_notes: Kommentare bearbeiten
303 label_document: Dokument
321 permission_edit_own_issue_notes: Eigene Kommentare bearbeiten
304 label_document_new: Neues Dokument
322 permission_move_issues: Tickets verschieben
305 label_document_plural: Dokumente
323 permission_delete_issues: Tickets löschen
306 label_document_added: Dokument hinzugefügt
324 permission_manage_public_queries: Öffentliche Filter verwalten
307 label_role: Rolle
325 permission_save_queries: Filter speichern
308 label_role_plural: Rollen
326 permission_view_gantt: Gantt-Diagramm ansehen
309 label_role_new: Neue Rolle
327 permission_view_calendar: Kalender ansehen
310 label_role_and_permissions: Rollen und Rechte
328 permission_view_issue_watchers: Liste der Beobachter ansehen
311 label_member: Mitglied
329 permission_add_issue_watchers: Beobachter hinzufügen
312 label_member_new: Neues Mitglied
330 permission_log_time: Aufwände buchen
313 label_member_plural: Mitglieder
331 permission_view_time_entries: Gebuchte Aufwände ansehen
314 label_tracker: Tracker
332 permission_edit_time_entries: Gebuchte Aufwände bearbeiten
315 label_tracker_plural: Tracker
333 permission_edit_own_time_entries: Selbst gebuchte Aufwände bearbeiten
316 label_tracker_new: Neuer Tracker
334 permission_manage_news: News verwalten
317 label_workflow: Workflow
335 permission_comment_news: News kommentieren
318 label_issue_status: Ticket-Status
336 permission_manage_documents: Dokumente verwalten
319 label_issue_status_plural: Ticket-Status
337 permission_view_documents: Dokumente ansehen
320 label_issue_status_new: Neuer Status
338 permission_manage_files: Dateien verwalten
321 label_issue_category: Ticket-Kategorie
339 permission_view_files: Dateien ansehen
322 label_issue_category_plural: Ticket-Kategorien
340 permission_manage_wiki: Wiki verwalten
323 label_issue_category_new: Neue Kategorie
341 permission_rename_wiki_pages: Wiki-Seiten umbenennen
324 label_custom_field: Benutzerdefiniertes Feld
342 permission_delete_wiki_pages: Wiki-Seiten löschen
325 label_custom_field_plural: Benutzerdefinierte Felder
343 permission_view_wiki_pages: Wiki ansehen
326 label_custom_field_new: Neues Feld
344 permission_view_wiki_edits: Wiki-Versionsgeschichte ansehen
327 label_enumerations: Aufzählungen
345 permission_edit_wiki_pages: Wiki-Seiten bearbeiten
328 label_enumeration_new: Neuer Wert
346 permission_delete_wiki_pages_attachments: Anhänge löschen
329 label_information: Information
347 permission_protect_wiki_pages: Wiki-Seiten schützen
330 label_information_plural: Informationen
348 permission_manage_repository: Projektarchiv verwalten
331 label_please_login: Anmelden
349 permission_browse_repository: Projektarchiv ansehen
332 label_register: Registrieren
350 permission_view_changesets: Changesets ansehen
333 label_password_lost: Kennwort vergessen
351 permission_commit_access: Commit-Zugriff (über WebDAV)
334 label_home: Hauptseite
352 permission_manage_boards: Foren verwalten
335 label_my_page: Meine Seite
353 permission_view_messages: Forenbeiträge ansehen
336 label_my_account: Mein Konto
354 permission_add_messages: Forenbeiträge hinzufügen
337 label_my_projects: Meine Projekte
355 permission_edit_messages: Forenbeiträge bearbeiten
338 label_administration: Administration
356 permission_edit_own_messages: Eigene Forenbeiträge bearbeiten
339 label_login: Anmelden
357 permission_delete_messages: Forenbeiträge löschen
340 label_logout: Abmelden
358 permission_delete_own_messages: Eigene Forenbeiträge löschen
341 label_help: Hilfe
359
342 label_reported_issues: Gemeldete Tickets
360 project_module_issue_tracking: Ticket-Verfolgung
343 label_assigned_to_me_issues: Mir zugewiesen
361 project_module_time_tracking: Zeiterfassung
344 label_last_login: Letzte Anmeldung
362 project_module_news: News
345 label_last_updates: zuletzt aktualisiert
363 project_module_documents: Dokumente
346 label_last_updates_plural: %d zuletzt aktualisierten
364 project_module_files: Dateien
347 label_registered_on: Angemeldet am
365 project_module_wiki: Wiki
348 label_activity: Aktivität
366 project_module_repository: Projektarchiv
349 label_overall_activity: Aktivität aller Projekte anzeigen
367 project_module_boards: Foren
350 label_user_activity: "Aktivität von %s"
368
351 label_new: Neu
369 label_user: Benutzer
352 label_logged_as: Angemeldet als
370 label_user_plural: Benutzer
353 label_environment: Environment
371 label_user_new: Neuer Benutzer
354 label_authentication: Authentifizierung
372 label_project: Projekt
355 label_auth_source: Authentifizierungs-Modus
373 label_project_new: Neues Projekt
356 label_auth_source_new: Neuer Authentifizierungs-Modus
374 label_project_plural: Projekte
357 label_auth_source_plural: Authentifizierungs-Arten
375 label_x_projects:
358 label_subproject_plural: Unterprojekte
376 zero: no projects
359 label_and_its_subprojects: %s und dessen Unterprojekte
377 one: 1 project
360 label_min_max_length: Länge (Min. - Max.)
378 other: "{{count}} projects"
361 label_list: Liste
379 label_project_all: Alle Projekte
362 label_date: Datum
380 label_project_latest: Neueste Projekte
363 label_integer: Zahl
381 label_issue: Ticket
364 label_float: Fließkommazahl
382 label_issue_new: Neues Ticket
365 label_boolean: Boolean
383 label_issue_plural: Tickets
366 label_string: Text
384 label_issue_view_all: Alle Tickets anzeigen
367 label_text: Langer Text
385 label_issues_by: "Tickets von {{value}}"
368 label_attribute: Attribut
386 label_issue_added: Ticket hinzugefügt
369 label_attribute_plural: Attribute
387 label_issue_updated: Ticket aktualisiert
370 label_download: %d Download
388 label_document: Dokument
371 label_download_plural: %d Downloads
389 label_document_new: Neues Dokument
372 label_no_data: Nichts anzuzeigen
390 label_document_plural: Dokumente
373 label_change_status: Statuswechsel
391 label_document_added: Dokument hinzugefügt
374 label_history: Historie
392 label_role: Rolle
375 label_attachment: Datei
393 label_role_plural: Rollen
376 label_attachment_new: Neue Datei
394 label_role_new: Neue Rolle
377 label_attachment_delete: Anhang löschen
395 label_role_and_permissions: Rollen und Rechte
378 label_attachment_plural: Dateien
396 label_member: Mitglied
379 label_file_added: Datei hinzugefügt
397 label_member_new: Neues Mitglied
380 label_report: Bericht
398 label_member_plural: Mitglieder
381 label_report_plural: Berichte
399 label_tracker: Tracker
382 label_news: News
400 label_tracker_plural: Tracker
383 label_news_new: News hinzufügen
401 label_tracker_new: Neuer Tracker
384 label_news_plural: News
402 label_workflow: Workflow
385 label_news_latest: Letzte News
403 label_issue_status: Ticket-Status
386 label_news_view_all: Alle News anzeigen
404 label_issue_status_plural: Ticket-Status
387 label_news_added: News hinzugefügt
405 label_issue_status_new: Neuer Status
388 label_change_log: Change-Log
406 label_issue_category: Ticket-Kategorie
389 label_settings: Konfiguration
407 label_issue_category_plural: Ticket-Kategorien
390 label_overview: Übersicht
408 label_issue_category_new: Neue Kategorie
391 label_version: Version
409 label_custom_field: Benutzerdefiniertes Feld
392 label_version_new: Neue Version
410 label_custom_field_plural: Benutzerdefinierte Felder
393 label_version_plural: Versionen
411 label_custom_field_new: Neues Feld
394 label_confirmation: Bestätigung
412 label_enumerations: Aufzählungen
395 label_export_to: "Auch abrufbar als:"
413 label_enumeration_new: Neuer Wert
396 label_read: Lesen...
414 label_information: Information
397 label_public_projects: Öffentliche Projekte
415 label_information_plural: Informationen
398 label_open_issues: offen
416 label_please_login: Anmelden
399 label_open_issues_plural: offen
417 label_register: Registrieren
400 label_closed_issues: geschlossen
418 label_password_lost: Kennwort vergessen
401 label_closed_issues_plural: geschlossen
419 label_home: Hauptseite
402 label_total: Gesamtzahl
420 label_my_page: Meine Seite
403 label_permissions: Berechtigungen
421 label_my_account: Mein Konto
404 label_current_status: Gegenwärtiger Status
422 label_my_projects: Meine Projekte
405 label_new_statuses_allowed: Neue Berechtigungen
423 label_administration: Administration
406 label_all: alle
424 label_login: Anmelden
407 label_none: kein
425 label_logout: Abmelden
408 label_nobody: Niemand
426 label_help: Hilfe
409 label_next: Weiter
427 label_reported_issues: Gemeldete Tickets
410 label_previous: Zurück
428 label_assigned_to_me_issues: Mir zugewiesen
411 label_used_by: Benutzt von
429 label_last_login: Letzte Anmeldung
412 label_details: Details
430 label_registered_on: Angemeldet am
413 label_add_note: Kommentar hinzufügen
431 label_activity: Aktivität
414 label_per_page: Pro Seite
432 label_overall_activity: Aktivität aller Projekte anzeigen
415 label_calendar: Kalender
433 label_user_activity: "Aktivität von {{value}}"
416 label_months_from: Monate ab
434 label_new: Neu
417 label_gantt: Gantt-Diagramm
435 label_logged_as: Angemeldet als
418 label_internal: Intern
436 label_environment: Environment
419 label_last_changes: %d letzte Änderungen
437 label_authentication: Authentifizierung
420 label_change_view_all: Alle Änderungen anzeigen
438 label_auth_source: Authentifizierungs-Modus
421 label_personalize_page: Diese Seite anpassen
439 label_auth_source_new: Neuer Authentifizierungs-Modus
422 label_comment: Kommentar
440 label_auth_source_plural: Authentifizierungs-Arten
423 label_comment_plural: Kommentare
441 label_subproject_plural: Unterprojekte
424 label_comment_add: Kommentar hinzufügen
442 label_and_its_subprojects: "{{value}} und dessen Unterprojekte"
425 label_comment_added: Kommentar hinzugefügt
443 label_min_max_length: Länge (Min. - Max.)
426 label_comment_delete: Kommentar löschen
444 label_list: Liste
427 label_query: Benutzerdefinierte Abfrage
445 label_date: Datum
428 label_query_plural: Benutzerdefinierte Berichte
446 label_integer: Zahl
429 label_query_new: Neuer Bericht
447 label_float: Fließkommazahl
430 label_filter_add: Filter hinzufügen
448 label_boolean: Boolean
431 label_filter_plural: Filter
449 label_string: Text
432 label_equals: ist
450 label_text: Langer Text
433 label_not_equals: ist nicht
451 label_attribute: Attribut
434 label_in_less_than: in weniger als
452 label_attribute_plural: Attribute
435 label_in_more_than: in mehr als
453 label_download: "{{count}} Download"
436 label_in: an
454 label_download_plural: "{{count}} Downloads"
437 label_today: heute
455 label_no_data: Nichts anzuzeigen
438 label_all_time: gesamter Zeitraum
456 label_change_status: Statuswechsel
439 label_yesterday: gestern
457 label_history: Historie
440 label_this_week: aktuelle Woche
458 label_attachment: Datei
441 label_last_week: vorige Woche
459 label_attachment_new: Neue Datei
442 label_last_n_days: die letzten %d Tage
460 label_attachment_delete: Anhang löschen
443 label_this_month: aktueller Monat
461 label_attachment_plural: Dateien
444 label_last_month: voriger Monat
462 label_file_added: Datei hinzugefügt
445 label_this_year: aktuelles Jahr
463 label_report: Bericht
446 label_date_range: Zeitraum
464 label_report_plural: Berichte
447 label_less_than_ago: vor weniger als
465 label_news: News
448 label_more_than_ago: vor mehr als
466 label_news_new: News hinzufügen
449 label_ago: vor
467 label_news_plural: News
450 label_contains: enthält
468 label_news_latest: Letzte News
451 label_not_contains: enthält nicht
469 label_news_view_all: Alle News anzeigen
452 label_day_plural: Tage
470 label_news_added: News hinzugefügt
453 label_repository: Projektarchiv
471 label_change_log: Change-Log
454 label_repository_plural: Projektarchive
472 label_settings: Konfiguration
455 label_browse: Codebrowser
473 label_overview: Übersicht
456 label_modification: %d Änderung
474 label_version: Version
457 label_modification_plural: %d Änderungen
475 label_version_new: Neue Version
458 label_revision: Revision
476 label_version_plural: Versionen
459 label_revision_plural: Revisionen
477 label_confirmation: Bestätigung
460 label_associated_revisions: Zugehörige Revisionen
478 label_export_to: "Auch abrufbar als:"
461 label_added: hinzugefügt
479 label_read: Lesen...
462 label_modified: geändert
480 label_public_projects: Öffentliche Projekte
463 label_copied: kopiert
481 label_open_issues: offen
464 label_renamed: umbenannt
482 label_open_issues_plural: offen
465 label_deleted: gelöscht
483 label_closed_issues: geschlossen
466 label_latest_revision: Aktuellste Revision
484 label_closed_issues_plural: geschlossen
467 label_latest_revision_plural: Aktuellste Revisionen
485 label_x_open_issues_abbr_on_total:
468 label_view_revisions: Revisionen anzeigen
486 zero: 0 open / {{total}}
469 label_max_size: Maximale Größe
487 one: 1 open / {{total}}
470 label_on: von
488 other: "{{count}} open / {{total}}"
471 label_sort_highest: An den Anfang
489 label_x_open_issues_abbr:
472 label_sort_higher: Eins höher
490 zero: 0 open
473 label_sort_lower: Eins tiefer
491 one: 1 open
474 label_sort_lowest: Ans Ende
492 other: "{{count}} open"
475 label_roadmap: Roadmap
493 label_x_closed_issues_abbr:
476 label_roadmap_due_in: Fällig in %s
494 zero: 0 closed
477 label_roadmap_overdue: %s verspätet
495 one: 1 closed
478 label_roadmap_no_issues: Keine Tickets für diese Version
496 other: "{{count}} closed"
479 label_search: Suche
497 label_total: Gesamtzahl
480 label_result_plural: Resultate
498 label_permissions: Berechtigungen
481 label_all_words: Alle Wörter
499 label_current_status: Gegenwärtiger Status
482 label_wiki: Wiki
500 label_new_statuses_allowed: Neue Berechtigungen
483 label_wiki_edit: Wiki-Bearbeitung
501 label_all: alle
484 label_wiki_edit_plural: Wiki-Bearbeitungen
502 label_none: kein
485 label_wiki_page: Wiki-Seite
503 label_nobody: Niemand
486 label_wiki_page_plural: Wiki-Seiten
504 label_next: Weiter
487 label_index_by_title: Seiten nach Titel sortiert
505 label_previous: Zurück
488 label_index_by_date: Seiten nach Datum sortiert
506 label_used_by: Benutzt von
489 label_current_version: Gegenwärtige Version
507 label_details: Details
490 label_preview: Vorschau
508 label_add_note: Kommentar hinzufügen
491 label_feed_plural: Feeds
509 label_per_page: Pro Seite
492 label_changes_details: Details aller Änderungen
510 label_calendar: Kalender
493 label_issue_tracking: Tickets
511 label_months_from: Monate ab
494 label_spent_time: Aufgewendete Zeit
512 label_gantt: Gantt-Diagramm
495 label_f_hour: %.2f Stunde
513 label_internal: Intern
496 label_f_hour_plural: %.2f Stunden
514 label_last_changes: "{{count}} letzte Änderungen"
497 label_time_tracking: Zeiterfassung
515 label_change_view_all: Alle Änderungen anzeigen
498 label_change_plural: Änderungen
516 label_personalize_page: Diese Seite anpassen
499 label_statistics: Statistiken
517 label_comment: Kommentar
500 label_commits_per_month: Übertragungen pro Monat
518 label_comment_plural: Kommentare
501 label_commits_per_author: Übertragungen pro Autor
519 label_x_comments:
502 label_view_diff: Unterschiede anzeigen
520 zero: no comments
503 label_diff_inline: inline
521 one: 1 comment
504 label_diff_side_by_side: nebeneinander
522 other: "{{count}} comments"
505 label_options: Optionen
523 label_comment_add: Kommentar hinzufügen
506 label_copy_workflow_from: Workflow kopieren von
524 label_comment_added: Kommentar hinzugefügt
507 label_permissions_report: Berechtigungsübersicht
525 label_comment_delete: Kommentar löschen
508 label_watched_issues: Beobachtete Tickets
526 label_query: Benutzerdefinierte Abfrage
509 label_related_issues: Zugehörige Tickets
527 label_query_plural: Benutzerdefinierte Berichte
510 label_applied_status: Zugewiesener Status
528 label_query_new: Neuer Bericht
511 label_loading: Lade...
529 label_filter_add: Filter hinzufügen
512 label_relation_new: Neue Beziehung
530 label_filter_plural: Filter
513 label_relation_delete: Beziehung löschen
531 label_equals: ist
514 label_relates_to: Beziehung mit
532 label_not_equals: ist nicht
515 label_duplicates: Duplikat von
533 label_in_less_than: in weniger als
516 label_duplicated_by: Dupliziert durch
534 label_in_more_than: in mehr als
517 label_blocks: Blockiert
535 label_in: an
518 label_blocked_by: Blockiert durch
536 label_today: heute
519 label_precedes: Vorgänger von
537 label_all_time: gesamter Zeitraum
520 label_follows: folgt
538 label_yesterday: gestern
521 label_end_to_start: Ende - Anfang
539 label_this_week: aktuelle Woche
522 label_end_to_end: Ende - Ende
540 label_last_week: vorige Woche
523 label_start_to_start: Anfang - Anfang
541 label_last_n_days: "die letzten {{count}} Tage"
524 label_start_to_end: Anfang - Ende
542 label_this_month: aktueller Monat
525 label_stay_logged_in: Angemeldet bleiben
543 label_last_month: voriger Monat
526 label_disabled: gesperrt
544 label_this_year: aktuelles Jahr
527 label_show_completed_versions: Abgeschlossene Versionen anzeigen
545 label_date_range: Zeitraum
528 label_me: ich
546 label_less_than_ago: vor weniger als
529 label_board: Forum
547 label_more_than_ago: vor mehr als
530 label_board_new: Neues Forum
548 label_ago: vor
531 label_board_plural: Foren
549 label_contains: enthält
532 label_topic_plural: Themen
550 label_not_contains: enthält nicht
533 label_message_plural: Forenbeiträge
551 label_day_plural: Tage
534 label_message_last: Letzter Forenbeitrag
552 label_repository: Projektarchiv
535 label_message_new: Neues Thema
553 label_repository_plural: Projektarchive
536 label_message_posted: Forenbeitrag hinzugefügt
554 label_browse: Codebrowser
537 label_reply_plural: Antworten
555 label_modification: "{{count}} Änderung"
538 label_send_information: Sende Kontoinformationen zum Benutzer
556 label_modification_plural: "{{count}} Änderungen"
539 label_year: Jahr
557 label_revision: Revision
540 label_month: Monat
558 label_revision_plural: Revisionen
541 label_week: Woche
559 label_associated_revisions: Zugehörige Revisionen
542 label_date_from: Von
560 label_added: hinzugefügt
543 label_date_to: Bis
561 label_modified: geändert
544 label_language_based: Sprachabhängig
562 label_copied: kopiert
545 label_sort_by: Sortiert nach %s
563 label_renamed: umbenannt
546 label_send_test_email: Test-E-Mail senden
564 label_deleted: gelöscht
547 label_feeds_access_key_created_on: Atom-Zugriffsschlüssel vor %s erstellt
565 label_latest_revision: Aktuellste Revision
548 label_module_plural: Module
566 label_latest_revision_plural: Aktuellste Revisionen
549 label_added_time_by: Von %s vor %s hinzugefügt
567 label_view_revisions: Revisionen anzeigen
550 label_updated_time_by: Von %s vor %s aktualisiert
568 label_max_size: Maximale Größe
551 label_updated_time: Vor %s aktualisiert
569 label_sort_highest: An den Anfang
552 label_jump_to_a_project: Zu einem Projekt springen...
570 label_sort_higher: Eins höher
553 label_file_plural: Dateien
571 label_sort_lower: Eins tiefer
554 label_changeset_plural: Changesets
572 label_sort_lowest: Ans Ende
555 label_default_columns: Default-Spalten
573 label_roadmap: Roadmap
556 label_no_change_option: (Keine Änderung)
574 label_roadmap_due_in: "Fällig in {{value}}"
557 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
575 label_roadmap_overdue: "{{value}} verspätet"
558 label_theme: Stil
576 label_roadmap_no_issues: Keine Tickets für diese Version
559 label_default: Default
577 label_search: Suche
560 label_search_titles_only: Nur Titel durchsuchen
578 label_result_plural: Resultate
561 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
579 label_all_words: Alle Wörter
562 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
580 label_wiki: Wiki
563 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
581 label_wiki_edit: Wiki-Bearbeitung
564 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
582 label_wiki_edit_plural: Wiki-Bearbeitungen
565 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
583 label_wiki_page: Wiki-Seite
566 label_registration_manual_activation: Manuelle Kontoaktivierung
584 label_wiki_page_plural: Wiki-Seiten
567 label_registration_automatic_activation: Automatische Kontoaktivierung
585 label_index_by_title: Seiten nach Titel sortiert
568 label_display_per_page: 'Pro Seite: %s'
586 label_index_by_date: Seiten nach Datum sortiert
569 label_age: Geändert vor
587 label_current_version: Gegenwärtige Version
570 label_change_properties: Eigenschaften ändern
588 label_preview: Vorschau
571 label_general: Allgemein
589 label_feed_plural: Feeds
572 label_more: Mehr
590 label_changes_details: Details aller Änderungen
573 label_scm: Versionskontrollsystem
591 label_issue_tracking: Tickets
574 label_plugins: Plugins
592 label_spent_time: Aufgewendete Zeit
575 label_ldap_authentication: LDAP-Authentifizierung
593 label_f_hour: "{{value}} Stunde"
576 label_downloads_abbr: D/L
594 label_f_hour_plural: "{{value}} Stunden"
577 label_optional_description: Beschreibung (optional)
595 label_time_tracking: Zeiterfassung
578 label_add_another_file: Eine weitere Datei hinzufügen
596 label_change_plural: Änderungen
579 label_preferences: Präferenzen
597 label_statistics: Statistiken
580 label_chronological_order: in zeitlicher Reihenfolge
598 label_commits_per_month: Übertragungen pro Monat
581 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
599 label_commits_per_author: Übertragungen pro Autor
582 label_planning: Terminplanung
600 label_view_diff: Unterschiede anzeigen
583 label_incoming_emails: Eingehende E-Mails
601 label_diff_inline: inline
584 label_generate_key: Generieren
602 label_diff_side_by_side: nebeneinander
585 label_issue_watchers: Beobachter
603 label_options: Optionen
586 label_example: Beispiel
604 label_copy_workflow_from: Workflow kopieren von
587
605 label_permissions_report: Berechtigungsübersicht
588 button_login: Anmelden
606 label_watched_issues: Beobachtete Tickets
589 button_submit: OK
607 label_related_issues: Zugehörige Tickets
590 button_save: Speichern
608 label_applied_status: Zugewiesener Status
591 button_check_all: Alles auswählen
609 label_loading: Lade...
592 button_uncheck_all: Alles abwählen
610 label_relation_new: Neue Beziehung
593 button_delete: Löschen
611 label_relation_delete: Beziehung löschen
594 button_create: Anlegen
612 label_relates_to: Beziehung mit
595 button_test: Testen
613 label_duplicates: Duplikat von
596 button_edit: Bearbeiten
614 label_duplicated_by: Dupliziert durch
597 button_add: Hinzufügen
615 label_blocks: Blockiert
598 button_change: Wechseln
616 label_blocked_by: Blockiert durch
599 button_apply: Anwenden
617 label_precedes: Vorgänger von
600 button_clear: Zurücksetzen
618 label_follows: folgt
601 button_lock: Sperren
619 label_end_to_start: Ende - Anfang
602 button_unlock: Entsperren
620 label_end_to_end: Ende - Ende
603 button_download: Download
621 label_start_to_start: Anfang - Anfang
604 button_list: Liste
622 label_start_to_end: Anfang - Ende
605 button_view: Anzeigen
623 label_stay_logged_in: Angemeldet bleiben
606 button_move: Verschieben
624 label_disabled: gesperrt
607 button_back: Zurück
625 label_show_completed_versions: Abgeschlossene Versionen anzeigen
608 button_cancel: Abbrechen
626 label_me: ich
609 button_activate: Aktivieren
627 label_board: Forum
610 button_sort: Sortieren
628 label_board_new: Neues Forum
611 button_log_time: Aufwand buchen
629 label_board_plural: Foren
612 button_rollback: Auf diese Version zurücksetzen
630 label_topic_plural: Themen
613 button_watch: Beobachten
631 label_message_plural: Forenbeiträge
614 button_unwatch: Nicht beobachten
632 label_message_last: Letzter Forenbeitrag
615 button_reply: Antworten
633 label_message_new: Neues Thema
616 button_archive: Archivieren
634 label_message_posted: Forenbeitrag hinzugefügt
617 button_unarchive: Entarchivieren
635 label_reply_plural: Antworten
618 button_reset: Zurücksetzen
636 label_send_information: Sende Kontoinformationen zum Benutzer
619 button_rename: Umbenennen
637 label_year: Jahr
620 button_change_password: Kennwort ändern
638 label_month: Monat
621 button_copy: Kopieren
639 label_week: Woche
622 button_annotate: Annotieren
640 label_date_from: Von
623 button_update: Aktualisieren
641 label_date_to: Bis
624 button_configure: Konfigurieren
642 label_language_based: Sprachabhängig
625 button_quote: Zitieren
643 label_sort_by: "Sortiert nach {{value}}"
626
644 label_send_test_email: Test-E-Mail senden
627 status_active: aktiv
645 label_feeds_access_key_created_on: "Atom-Zugriffsschlüssel vor {{value}} erstellt"
628 status_registered: angemeldet
646 label_module_plural: Module
629 status_locked: gesperrt
647 label_added_time_by: "Von {{author}} vor {{age}} hinzugefügt"
630
648 label_updated_time_by: "Von {{author}} vor {{age}} aktualisiert"
631 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
649 label_updated_time: "Vor {{value}} aktualisiert"
632 text_regexp_info: z. B. ^[A-Z0-9]+$
650 label_jump_to_a_project: Zu einem Projekt springen...
633 text_min_max_length_info: 0 heißt keine Beschränkung
651 label_file_plural: Dateien
634 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
652 label_changeset_plural: Changesets
635 text_subprojects_destroy_warning: 'Dessen Unterprojekte (%s) werden ebenfalls gelöscht.'
653 label_default_columns: Default-Spalten
636 text_workflow_edit: Workflow zum Bearbeiten auswählen
654 label_no_change_option: (Keine Änderung)
637 text_are_you_sure: Sind Sie sicher?
655 label_bulk_edit_selected_issues: Alle ausgewählten Tickets bearbeiten
638 text_journal_changed: geändert von %s zu %s
656 label_theme: Stil
639 text_journal_set_to: gestellt zu %s
657 label_default: Default
640 text_journal_deleted: gelöscht
658 label_search_titles_only: Nur Titel durchsuchen
641 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
659 label_user_mail_option_all: "Für alle Ereignisse in all meinen Projekten"
642 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
660 label_user_mail_option_selected: "Für alle Ereignisse in den ausgewählten Projekten..."
643 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
661 label_user_mail_option_none: "Nur für Dinge, die ich beobachte oder an denen ich beteiligt bin"
644 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
662 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachrichtigt werden, die ich selbst durchführe."
645 text_caracters_maximum: Max. %d Zeichen.
663 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
646 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
664 label_registration_manual_activation: Manuelle Kontoaktivierung
647 text_length_between: Länge zwischen %d und %d Zeichen.
665 label_registration_automatic_activation: Automatische Kontoaktivierung
648 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
666 label_display_per_page: "Pro Seite: {{value}}'"
649 text_unallowed_characters: Nicht erlaubte Zeichen
667 label_age: Geändert vor
650 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
668 label_change_properties: Eigenschaften ändern
651 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
669 label_general: Allgemein
652 text_issue_added: Ticket %s wurde erstellt by %s.
670 label_more: Mehr
653 text_issue_updated: Ticket %s wurde aktualisiert by %s.
671 label_scm: Versionskontrollsystem
654 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
672 label_plugins: Plugins
655 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
673 label_ldap_authentication: LDAP-Authentifizierung
656 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
674 label_downloads_abbr: D/L
657 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
675 label_optional_description: Beschreibung (optional)
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)."
676 label_add_another_file: Eine weitere Datei hinzufügen
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."
677 label_preferences: Präferenzen
660 text_load_default_configuration: Standard-Konfiguration laden
678 label_chronological_order: in zeitlicher Reihenfolge
661 text_status_changed_by_changeset: Status geändert durch Changeset %s.
679 label_reverse_chronological_order: in umgekehrter zeitlicher Reihenfolge
662 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
680 label_planning: Terminplanung
663 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
681 label_incoming_emails: Eingehende E-Mails
664 text_default_administrator_account_changed: Administrator-Kennwort geändert
682 label_generate_key: Generieren
665 text_file_repository_writable: Verzeichnis für Dateien beschreibbar
683 label_issue_watchers: Beobachter
666 text_plugin_assets_writable: Verzeichnis für Plugin-Assets beschreibbar
684 label_example: Beispiel
667 text_rmagick_available: RMagick verfügbar (optional)
685
668 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses Ticket gebucht. Was soll mit den Aufwänden geschehen?
686 button_login: Anmelden
669 text_destroy_time_entries: Gebuchte Aufwände löschen
687 button_submit: OK
670 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
688 button_save: Speichern
671 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
689 button_check_all: Alles auswählen
672 text_user_wrote: '%s schrieb:'
690 button_uncheck_all: Alles abwählen
673 text_enumeration_destroy_question: '%d Objekte sind diesem Wert zugeordnet.'
691 button_delete: Löschen
674 text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:'
692 button_create: Anlegen
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."
693 button_test: Testen
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."
694 button_edit: Bearbeiten
677 text_diff_truncated: '... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.'
695 button_add: Hinzufügen
678
696 button_change: Wechseln
679 default_role_manager: Manager
697 button_apply: Anwenden
680 default_role_developper: Entwickler
698 button_clear: Zurücksetzen
681 default_role_reporter: Reporter
699 button_lock: Sperren
682 default_tracker_bug: Fehler
700 button_unlock: Entsperren
683 default_tracker_feature: Feature
701 button_download: Download
684 default_tracker_support: Unterstützung
702 button_list: Liste
685 default_issue_status_new: Neu
703 button_view: Anzeigen
686 default_issue_status_assigned: Zugewiesen
704 button_move: Verschieben
687 default_issue_status_resolved: Gelöst
705 button_back: Zurück
688 default_issue_status_feedback: Feedback
706 button_cancel: Abbrechen
689 default_issue_status_closed: Erledigt
707 button_activate: Aktivieren
690 default_issue_status_rejected: Abgewiesen
708 button_sort: Sortieren
691 default_doc_category_user: Benutzerdokumentation
709 button_log_time: Aufwand buchen
692 default_doc_category_tech: Technische Dokumentation
710 button_rollback: Auf diese Version zurücksetzen
693 default_priority_low: Niedrig
711 button_watch: Beobachten
694 default_priority_normal: Normal
712 button_unwatch: Nicht beobachten
695 default_priority_high: Hoch
713 button_reply: Antworten
696 default_priority_urgent: Dringend
714 button_archive: Archivieren
697 default_priority_immediate: Sofort
715 button_unarchive: Entarchivieren
698 default_activity_design: Design
716 button_reset: Zurücksetzen
699 default_activity_development: Entwicklung
717 button_rename: Umbenennen
700
718 button_change_password: Kennwort ändern
701 enumeration_issue_priorities: Ticket-Prioritäten
719 button_copy: Kopieren
702 enumeration_doc_categories: Dokumentenkategorien
720 button_annotate: Annotieren
703 enumeration_activities: Aktivitäten (Zeiterfassung)
721 button_update: Aktualisieren
704 field_editable: Editable
722 button_configure: Konfigurieren
705 label_display: Display
723 button_quote: Zitieren
706 button_create_and_continue: Create and continue
724
707 text_custom_field_possible_values_info: 'One line for each value'
725 status_active: aktiv
708 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
726 status_registered: angemeldet
709 field_identity_url: OpenID URL
727 status_locked: gesperrt
710 setting_openid: Allow OpenID login and registration
728
711 label_login_with_open_id_option: or login with OpenID
729 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die eine Mailbenachrichtigung gesendet werden soll
712 field_watcher: Watcher
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:
20 time:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
21 formats:
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
22 default: "%a, %d %b %Y %H:%M:%S %z"
6 actionview_datehelper_select_month_prefix:
23 short: "%d %b %H:%M"
7 actionview_datehelper_select_year_prefix:
24 long: "%B %d, %Y %H:%M"
8 actionview_datehelper_time_in_words_day: 1 day
25 am: "am"
9 actionview_datehelper_time_in_words_day_plural: %d days
26 pm: "pm"
10 actionview_datehelper_time_in_words_hour_about: about an hour
27
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
28 datetime:
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
29 distance_in_words:
13 actionview_datehelper_time_in_words_minute: 1 minute
30 half_a_minute: "half a minute"
14 actionview_datehelper_time_in_words_minute_half: half a minute
31 less_than_x_seconds:
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
32 one: "less than 1 second"
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
33 other: "less than {{count}} seconds"
17 actionview_datehelper_time_in_words_minute_single: 1 minute
34 x_seconds:
18 actionview_datehelper_time_in_words_second_less_than: less than a second
35 one: "1 second"
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
36 other: "{{count}} seconds"
20 actionview_instancetag_blank_option: Please select
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
95 actionview_instancetag_blank_option: Please select
23 activerecord_error_exclusion: is reserved
96
24 activerecord_error_invalid: is invalid
97 general_text_No: 'No'
25 activerecord_error_confirmation: doesn't match confirmation
98 general_text_Yes: 'Yes'
26 activerecord_error_accepted: must be accepted
99 general_text_no: 'no'
27 activerecord_error_empty: can't be empty
100 general_text_yes: 'yes'
28 activerecord_error_blank: can't be blank
101 general_lang_name: 'English'
29 activerecord_error_too_long: is too long
102 general_csv_separator: ','
30 activerecord_error_too_short: is too short
103 general_csv_decimal_separator: '.'
31 activerecord_error_wrong_length: is the wrong length
104 general_csv_encoding: ISO-8859-1
32 activerecord_error_taken: has already been taken
105 general_pdf_encoding: ISO-8859-1
33 activerecord_error_not_a_number: is not a number
106 general_first_day_of_week: '7'
34 activerecord_error_not_a_date: is not a valid date
107
35 activerecord_error_greater_than_start_date: must be greater than start date
108 notice_account_updated: Account was successfully updated.
36 activerecord_error_not_same_project: doesn't belong to the same project
109 notice_account_invalid_creditentials: Invalid user or password
37 activerecord_error_circular_dependency: This relation would create a circular dependency
110 notice_account_password_updated: Password was successfully updated.
38
111 notice_account_wrong_password: Wrong password
39 general_fmt_age: %d yr
112 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
40 general_fmt_age_plural: %d yrs
113 notice_account_unknown_email: Unknown user.
41 general_fmt_date: %%m/%%d/%%Y
114 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
115 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
116 notice_account_activated: Your account has been activated. You can now log in.
44 general_fmt_time: %%I:%%M %%p
117 notice_successful_create: Successful creation.
45 general_text_No: 'No'
118 notice_successful_update: Successful update.
46 general_text_Yes: 'Yes'
119 notice_successful_delete: Successful deletion.
47 general_text_no: 'no'
120 notice_successful_connection: Successful connection.
48 general_text_yes: 'yes'
121 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
49 general_lang_name: 'English'
122 notice_locking_conflict: Data has been updated by another user.
50 general_csv_separator: ','
123 notice_not_authorized: You are not authorized to access this page.
51 general_csv_decimal_separator: '.'
124 notice_email_sent: "An email was sent to {{value}}"
52 general_csv_encoding: ISO-8859-1
125 notice_email_error: "An error occurred while sending mail ({{value}})"
53 general_pdf_encoding: ISO-8859-1
126 notice_feeds_access_key_reseted: Your RSS access key was reset.
54 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
127 notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}."
55 general_first_day_of_week: '7'
128 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
56
129 notice_account_pending: "Your account was created and is now pending administrator approval."
57 notice_account_updated: Account was successfully updated.
130 notice_default_data_loaded: Default configuration successfully loaded.
58 notice_account_invalid_creditentials: Invalid user or password
131 notice_unable_delete_version: Unable to delete version.
59 notice_account_password_updated: Password was successfully updated.
132
60 notice_account_wrong_password: Wrong password
133 error_can_t_load_default_data: "Default configuration could not be loaded: {{value}}"
61 notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
134 error_scm_not_found: "The entry or revision was not found in the repository."
62 notice_account_unknown_email: Unknown user.
135 error_scm_command_failed: "An error occurred when trying to access the repository: {{value}}"
63 notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
136 error_scm_annotate: "The entry does not exist or can not be annotated."
64 notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
137 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
65 notice_account_activated: Your account has been activated. You can now log in.
138
66 notice_successful_create: Successful creation.
139 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
67 notice_successful_update: Successful update.
140
68 notice_successful_delete: Successful deletion.
141 mail_subject_lost_password: "Your {{value}} password"
69 notice_successful_connection: Successful connection.
142 mail_body_lost_password: 'To change your password, click on the following link:'
70 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
143 mail_subject_register: "Your {{value}} account activation"
71 notice_locking_conflict: Data has been updated by another user.
144 mail_body_register: 'To activate your account, click on the following link:'
72 notice_not_authorized: You are not authorized to access this page.
145 mail_body_account_information_external: "You can use your {{value}} account to log in."
73 notice_email_sent: An email was sent to %s
146 mail_body_account_information: Your account information
74 notice_email_error: An error occurred while sending mail (%s)
147 mail_subject_account_activation_request: "{{value}} account activation request"
75 notice_feeds_access_key_reseted: Your RSS access key was reset.
148 mail_body_account_activation_request: "A new user ({{value}}) has registered. The account is pending your approval:'"
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
149 mail_subject_reminder: "{{count}} issue(s) due in the next days"
77 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
150 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
78 notice_account_pending: "Your account was created and is now pending administrator approval."
151
79 notice_default_data_loaded: Default configuration successfully loaded.
152 gui_validation_error: 1 error
80 notice_unable_delete_version: Unable to delete version.
153 gui_validation_error_plural: "{{count}} errors"
81
154
82 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
155 field_name: Name
83 error_scm_not_found: "The entry or revision was not found in the repository."
156 field_description: Description
84 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
157 field_summary: Summary
85 error_scm_annotate: "The entry does not exist or can not be annotated."
158 field_is_required: Required
86 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
159 field_firstname: Firstname
87
160 field_lastname: Lastname
88 warning_attachments_not_saved: "%d file(s) could not be saved."
161 field_mail: Email
89
162 field_filename: File
90 mail_subject_lost_password: Your %s password
163 field_filesize: Size
91 mail_body_lost_password: 'To change your password, click on the following link:'
164 field_downloads: Downloads
92 mail_subject_register: Your %s account activation
165 field_author: Author
93 mail_body_register: 'To activate your account, click on the following link:'
166 field_created_on: Created
94 mail_body_account_information_external: You can use your "%s" account to log in.
167 field_updated_on: Updated
95 mail_body_account_information: Your account information
168 field_field_format: Format
96 mail_subject_account_activation_request: %s account activation request
169 field_is_for_all: For all projects
97 mail_body_account_activation_request: 'A new user (%s) has registered. The account is pending your approval:'
170 field_possible_values: Possible values
98 mail_subject_reminder: "%d issue(s) due in the next days"
171 field_regexp: Regular expression
99 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
172 field_min_length: Minimum length
100
173 field_max_length: Maximum length
101 gui_validation_error: 1 error
174 field_value: Value
102 gui_validation_error_plural: %d errors
175 field_category: Category
103
176 field_title: Title
104 field_name: Name
177 field_project: Project
105 field_description: Description
178 field_issue: Issue
106 field_summary: Summary
179 field_status: Status
107 field_is_required: Required
180 field_notes: Notes
108 field_firstname: Firstname
181 field_is_closed: Issue closed
109 field_lastname: Lastname
182 field_is_default: Default value
110 field_mail: Email
183 field_tracker: Tracker
111 field_filename: File
184 field_subject: Subject
112 field_filesize: Size
185 field_due_date: Due date
113 field_downloads: Downloads
186 field_assigned_to: Assigned to
114 field_author: Author
187 field_priority: Priority
115 field_created_on: Created
188 field_fixed_version: Target version
116 field_updated_on: Updated
189 field_user: User
117 field_field_format: Format
190 field_role: Role
118 field_is_for_all: For all projects
191 field_homepage: Homepage
119 field_possible_values: Possible values
192 field_is_public: Public
120 field_regexp: Regular expression
193 field_parent: Subproject of
121 field_min_length: Minimum length
194 field_is_in_chlog: Issues displayed in changelog
122 field_max_length: Maximum length
195 field_is_in_roadmap: Issues displayed in roadmap
123 field_value: Value
196 field_login: Login
124 field_category: Category
197 field_mail_notification: Email notifications
125 field_title: Title
198 field_admin: Administrator
126 field_project: Project
199 field_last_login_on: Last connection
127 field_issue: Issue
200 field_language: Language
128 field_status: Status
201 field_effective_date: Date
129 field_notes: Notes
202 field_password: Password
130 field_is_closed: Issue closed
203 field_new_password: New password
131 field_is_default: Default value
204 field_password_confirmation: Confirmation
132 field_tracker: Tracker
205 field_version: Version
133 field_subject: Subject
206 field_type: Type
134 field_due_date: Due date
207 field_host: Host
135 field_assigned_to: Assigned to
208 field_port: Port
136 field_priority: Priority
209 field_account: Account
137 field_fixed_version: Target version
210 field_base_dn: Base DN
138 field_user: User
211 field_attr_login: Login attribute
139 field_role: Role
212 field_attr_firstname: Firstname attribute
140 field_homepage: Homepage
213 field_attr_lastname: Lastname attribute
141 field_is_public: Public
214 field_attr_mail: Email attribute
142 field_parent: Subproject of
215 field_onthefly: On-the-fly user creation
143 field_is_in_chlog: Issues displayed in changelog
216 field_start_date: Start
144 field_is_in_roadmap: Issues displayed in roadmap
217 field_done_ratio: %% Done
145 field_login: Login
218 field_auth_source: Authentication mode
146 field_mail_notification: Email notifications
219 field_hide_mail: Hide my email address
147 field_admin: Administrator
220 field_comments: Comment
148 field_last_login_on: Last connection
221 field_url: URL
149 field_language: Language
222 field_start_page: Start page
150 field_identity_url: OpenID URL
223 field_subproject: Subproject
151 field_effective_date: Date
224 field_hours: Hours
152 field_password: Password
225 field_activity: Activity
153 field_new_password: New password
226 field_spent_on: Date
154 field_password_confirmation: Confirmation
227 field_identifier: Identifier
155 field_version: Version
228 field_is_filter: Used as a filter
156 field_type: Type
229 field_issue_to_id: Related issue
157 field_host: Host
230 field_delay: Delay
158 field_port: Port
231 field_assignable: Issues can be assigned to this role
159 field_account: Account
232 field_redirect_existing_links: Redirect existing links
160 field_base_dn: Base DN
233 field_estimated_hours: Estimated time
161 field_attr_login: Login attribute
234 field_column_names: Columns
162 field_attr_firstname: Firstname attribute
235 field_time_zone: Time zone
163 field_attr_lastname: Lastname attribute
236 field_searchable: Searchable
164 field_attr_mail: Email attribute
237 field_default_value: Default value
165 field_onthefly: On-the-fly user creation
238 field_comments_sorting: Display comments
166 field_start_date: Start
239 field_parent_title: Parent page
167 field_done_ratio: %% Done
240 field_editable: Editable
168 field_auth_source: Authentication mode
241
169 field_hide_mail: Hide my email address
242 setting_app_title: Application title
170 field_comments: Comment
243 setting_app_subtitle: Application subtitle
171 field_url: URL
244 setting_welcome_text: Welcome text
172 field_start_page: Start page
245 setting_default_language: Default language
173 field_subproject: Subproject
246 setting_login_required: Authentication required
174 field_hours: Hours
247 setting_self_registration: Self-registration
175 field_activity: Activity
248 setting_attachment_max_size: Attachment max. size
176 field_spent_on: Date
249 setting_issues_export_limit: Issues export limit
177 field_identifier: Identifier
250 setting_mail_from: Emission email address
178 field_is_filter: Used as a filter
251 setting_bcc_recipients: Blind carbon copy recipients (bcc)
179 field_issue_to_id: Related issue
252 setting_plain_text_mail: Plain text mail (no HTML)
180 field_delay: Delay
253 setting_host_name: Host name and path
181 field_assignable: Issues can be assigned to this role
254 setting_text_formatting: Text formatting
182 field_redirect_existing_links: Redirect existing links
255 setting_wiki_compression: Wiki history compression
183 field_estimated_hours: Estimated time
256 setting_feeds_limit: Feed content limit
184 field_column_names: Columns
257 setting_default_projects_public: New projects are public by default
185 field_time_zone: Time zone
258 setting_autofetch_changesets: Autofetch commits
186 field_searchable: Searchable
259 setting_sys_api_enabled: Enable WS for repository management
187 field_default_value: Default value
260 setting_commit_ref_keywords: Referencing keywords
188 field_comments_sorting: Display comments
261 setting_commit_fix_keywords: Fixing keywords
189 field_parent_title: Parent page
262 setting_autologin: Autologin
190 field_editable: Editable
263 setting_date_format: Date format
191 field_watcher: Watcher
264 setting_time_format: Time format
192
265 setting_cross_project_issue_relations: Allow cross-project issue relations
193 setting_app_title: Application title
266 setting_issue_list_default_columns: Default columns displayed on the issue list
194 setting_app_subtitle: Application subtitle
267 setting_repositories_encodings: Repositories encodings
195 setting_welcome_text: Welcome text
268 setting_commit_logs_encoding: Commit messages encoding
196 setting_default_language: Default language
269 setting_emails_footer: Emails footer
197 setting_login_required: Authentication required
270 setting_protocol: Protocol
198 setting_self_registration: Self-registration
271 setting_per_page_options: Objects per page options
199 setting_attachment_max_size: Attachment max. size
272 setting_user_format: Users display format
200 setting_issues_export_limit: Issues export limit
273 setting_activity_days_default: Days displayed on project activity
201 setting_mail_from: Emission email address
274 setting_display_subprojects_issues: Display subprojects issues on main projects by default
202 setting_bcc_recipients: Blind carbon copy recipients (bcc)
275 setting_enabled_scm: Enabled SCM
203 setting_plain_text_mail: Plain text mail (no HTML)
276 setting_mail_handler_api_enabled: Enable WS for incoming emails
204 setting_host_name: Host name and path
277 setting_mail_handler_api_key: API key
205 setting_text_formatting: Text formatting
278 setting_sequential_project_identifiers: Generate sequential project identifiers
206 setting_wiki_compression: Wiki history compression
279 setting_gravatar_enabled: Use Gravatar user icons
207 setting_feeds_limit: Feed content limit
280 setting_diff_max_lines_displayed: Max number of diff lines displayed
208 setting_default_projects_public: New projects are public by default
281 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
209 setting_autofetch_changesets: Autofetch commits
282
210 setting_sys_api_enabled: Enable WS for repository management
283 permission_edit_project: Edit project
211 setting_commit_ref_keywords: Referencing keywords
284 permission_select_project_modules: Select project modules
212 setting_commit_fix_keywords: Fixing keywords
285 permission_manage_members: Manage members
213 setting_autologin: Autologin
286 permission_manage_versions: Manage versions
214 setting_date_format: Date format
287 permission_manage_categories: Manage issue categories
215 setting_time_format: Time format
288 permission_add_issues: Add issues
216 setting_cross_project_issue_relations: Allow cross-project issue relations
289 permission_edit_issues: Edit issues
217 setting_issue_list_default_columns: Default columns displayed on the issue list
290 permission_manage_issue_relations: Manage issue relations
218 setting_repositories_encodings: Repositories encodings
291 permission_add_issue_notes: Add notes
219 setting_commit_logs_encoding: Commit messages encoding
292 permission_edit_issue_notes: Edit notes
220 setting_emails_footer: Emails footer
293 permission_edit_own_issue_notes: Edit own notes
221 setting_protocol: Protocol
294 permission_move_issues: Move issues
222 setting_per_page_options: Objects per page options
295 permission_delete_issues: Delete issues
223 setting_user_format: Users display format
296 permission_manage_public_queries: Manage public queries
224 setting_activity_days_default: Days displayed on project activity
297 permission_save_queries: Save queries
225 setting_display_subprojects_issues: Display subprojects issues on main projects by default
298 permission_view_gantt: View gantt chart
226 setting_enabled_scm: Enabled SCM
299 permission_view_calendar: View calender
227 setting_mail_handler_api_enabled: Enable WS for incoming emails
300 permission_view_issue_watchers: View watchers list
228 setting_mail_handler_api_key: API key
301 permission_add_issue_watchers: Add watchers
229 setting_sequential_project_identifiers: Generate sequential project identifiers
302 permission_log_time: Log spent time
230 setting_gravatar_enabled: Use Gravatar user icons
303 permission_view_time_entries: View spent time
231 setting_diff_max_lines_displayed: Max number of diff lines displayed
304 permission_edit_time_entries: Edit time logs
232 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
305 permission_edit_own_time_entries: Edit own time logs
233 setting_openid: Allow OpenID login and registration
306 permission_manage_news: Manage news
234
307 permission_comment_news: Comment news
235 permission_edit_project: Edit project
308 permission_manage_documents: Manage documents
236 permission_select_project_modules: Select project modules
309 permission_view_documents: View documents
237 permission_manage_members: Manage members
310 permission_manage_files: Manage files
238 permission_manage_versions: Manage versions
311 permission_view_files: View files
239 permission_manage_categories: Manage issue categories
312 permission_manage_wiki: Manage wiki
240 permission_add_issues: Add issues
313 permission_rename_wiki_pages: Rename wiki pages
241 permission_edit_issues: Edit issues
314 permission_delete_wiki_pages: Delete wiki pages
242 permission_manage_issue_relations: Manage issue relations
315 permission_view_wiki_pages: View wiki
243 permission_add_issue_notes: Add notes
316 permission_view_wiki_edits: View wiki history
244 permission_edit_issue_notes: Edit notes
317 permission_edit_wiki_pages: Edit wiki pages
245 permission_edit_own_issue_notes: Edit own notes
318 permission_delete_wiki_pages_attachments: Delete attachments
246 permission_move_issues: Move issues
319 permission_protect_wiki_pages: Protect wiki pages
247 permission_delete_issues: Delete issues
320 permission_manage_repository: Manage repository
248 permission_manage_public_queries: Manage public queries
321 permission_browse_repository: Browse repository
249 permission_save_queries: Save queries
322 permission_view_changesets: View changesets
250 permission_view_gantt: View gantt chart
323 permission_commit_access: Commit access
251 permission_view_calendar: View calender
324 permission_manage_boards: Manage boards
252 permission_view_issue_watchers: View watchers list
325 permission_view_messages: View messages
253 permission_add_issue_watchers: Add watchers
326 permission_add_messages: Post messages
254 permission_log_time: Log spent time
327 permission_edit_messages: Edit messages
255 permission_view_time_entries: View spent time
328 permission_edit_own_messages: Edit own messages
256 permission_edit_time_entries: Edit time logs
329 permission_delete_messages: Delete messages
257 permission_edit_own_time_entries: Edit own time logs
330 permission_delete_own_messages: Delete own messages
258 permission_manage_news: Manage news
331
259 permission_comment_news: Comment news
332 project_module_issue_tracking: Issue tracking
260 permission_manage_documents: Manage documents
333 project_module_time_tracking: Time tracking
261 permission_view_documents: View documents
334 project_module_news: News
262 permission_manage_files: Manage files
335 project_module_documents: Documents
263 permission_view_files: View files
336 project_module_files: Files
264 permission_manage_wiki: Manage wiki
337 project_module_wiki: Wiki
265 permission_rename_wiki_pages: Rename wiki pages
338 project_module_repository: Repository
266 permission_delete_wiki_pages: Delete wiki pages
339 project_module_boards: Boards
267 permission_view_wiki_pages: View wiki
340
268 permission_view_wiki_edits: View wiki history
341 label_user: User
269 permission_edit_wiki_pages: Edit wiki pages
342 label_user_plural: Users
270 permission_delete_wiki_pages_attachments: Delete attachments
343 label_user_new: New user
271 permission_protect_wiki_pages: Protect wiki pages
344 label_project: Project
272 permission_manage_repository: Manage repository
345 label_project_new: New project
273 permission_browse_repository: Browse repository
346 label_project_plural: Projects
274 permission_view_changesets: View changesets
347 label_x_projects:
275 permission_commit_access: Commit access
348 zero: no projects
276 permission_manage_boards: Manage boards
349 one: 1 project
277 permission_view_messages: View messages
350 other: "{{count}} projects"
278 permission_add_messages: Post messages
351 label_project_all: All Projects
279 permission_edit_messages: Edit messages
352 label_project_latest: Latest projects
280 permission_edit_own_messages: Edit own messages
353 label_issue: Issue
281 permission_delete_messages: Delete messages
354 label_issue_new: New issue
282 permission_delete_own_messages: Delete own messages
355 label_issue_plural: Issues
283
356 label_issue_view_all: View all issues
284 project_module_issue_tracking: Issue tracking
357 label_issues_by: "Issues by {{value}}"
285 project_module_time_tracking: Time tracking
358 label_issue_added: Issue added
286 project_module_news: News
359 label_issue_updated: Issue updated
287 project_module_documents: Documents
360 label_document: Document
288 project_module_files: Files
361 label_document_new: New document
289 project_module_wiki: Wiki
362 label_document_plural: Documents
290 project_module_repository: Repository
363 label_document_added: Document added
291 project_module_boards: Boards
364 label_role: Role
292
365 label_role_plural: Roles
293 label_user: User
366 label_role_new: New role
294 label_user_plural: Users
367 label_role_and_permissions: Roles and permissions
295 label_user_new: New user
368 label_member: Member
296 label_project: Project
369 label_member_new: New member
297 label_project_new: New project
370 label_member_plural: Members
298 label_project_plural: Projects
371 label_tracker: Tracker
299 label_project_all: All Projects
372 label_tracker_plural: Trackers
300 label_project_latest: Latest projects
373 label_tracker_new: New tracker
301 label_issue: Issue
374 label_workflow: Workflow
302 label_issue_new: New issue
375 label_issue_status: Issue status
303 label_issue_plural: Issues
376 label_issue_status_plural: Issue statuses
304 label_issue_view_all: View all issues
377 label_issue_status_new: New status
305 label_issues_by: Issues by %s
378 label_issue_category: Issue category
306 label_issue_added: Issue added
379 label_issue_category_plural: Issue categories
307 label_issue_updated: Issue updated
380 label_issue_category_new: New category
308 label_document: Document
381 label_custom_field: Custom field
309 label_document_new: New document
382 label_custom_field_plural: Custom fields
310 label_document_plural: Documents
383 label_custom_field_new: New custom field
311 label_document_added: Document added
384 label_enumerations: Enumerations
312 label_role: Role
385 label_enumeration_new: New value
313 label_role_plural: Roles
386 label_information: Information
314 label_role_new: New role
387 label_information_plural: Information
315 label_role_and_permissions: Roles and permissions
388 label_please_login: Please log in
316 label_member: Member
389 label_register: Register
317 label_member_new: New member
390 label_password_lost: Lost password
318 label_member_plural: Members
391 label_home: Home
319 label_tracker: Tracker
392 label_my_page: My page
320 label_tracker_plural: Trackers
393 label_my_account: My account
321 label_tracker_new: New tracker
394 label_my_projects: My projects
322 label_workflow: Workflow
395 label_administration: Administration
323 label_issue_status: Issue status
396 label_login: Sign in
324 label_issue_status_plural: Issue statuses
397 label_logout: Sign out
325 label_issue_status_new: New status
398 label_help: Help
326 label_issue_category: Issue category
399 label_reported_issues: Reported issues
327 label_issue_category_plural: Issue categories
400 label_assigned_to_me_issues: Issues assigned to me
328 label_issue_category_new: New category
401 label_last_login: Last connection
329 label_custom_field: Custom field
402 label_registered_on: Registered on
330 label_custom_field_plural: Custom fields
403 label_activity: Activity
331 label_custom_field_new: New custom field
404 label_overall_activity: Overall activity
332 label_enumerations: Enumerations
405 label_user_activity: "{{value}}'s activity"
333 label_enumeration_new: New value
406 label_new: New
334 label_information: Information
407 label_logged_as: Logged in as
335 label_information_plural: Information
408 label_environment: Environment
336 label_please_login: Please log in
409 label_authentication: Authentication
337 label_register: Register
410 label_auth_source: Authentication mode
338 label_login_with_open_id_option: or login with OpenID
411 label_auth_source_new: New authentication mode
339 label_password_lost: Lost password
412 label_auth_source_plural: Authentication modes
340 label_home: Home
413 label_subproject_plural: Subprojects
341 label_my_page: My page
414 label_and_its_subprojects: "{{value}} and its subprojects"
342 label_my_account: My account
415 label_min_max_length: Min - Max length
343 label_my_projects: My projects
416 label_list: List
344 label_administration: Administration
417 label_date: Date
345 label_login: Sign in
418 label_integer: Integer
346 label_logout: Sign out
419 label_float: Float
347 label_help: Help
420 label_boolean: Boolean
348 label_reported_issues: Reported issues
421 label_string: Text
349 label_assigned_to_me_issues: Issues assigned to me
422 label_text: Long text
350 label_last_login: Last connection
423 label_attribute: Attribute
351 label_last_updates: Last updated
424 label_attribute_plural: Attributes
352 label_last_updates_plural: %d last updated
425 label_download: "{{count}} Download"
353 label_registered_on: Registered on
426 label_download_plural: "{{count}} Downloads"
354 label_activity: Activity
427 label_no_data: No data to display
355 label_overall_activity: Overall activity
428 label_change_status: Change status
356 label_user_activity: "%s's activity"
429 label_history: History
357 label_new: New
430 label_attachment: File
358 label_logged_as: Logged in as
431 label_attachment_new: New file
359 label_environment: Environment
432 label_attachment_delete: Delete file
360 label_authentication: Authentication
433 label_attachment_plural: Files
361 label_auth_source: Authentication mode
434 label_file_added: File added
362 label_auth_source_new: New authentication mode
435 label_report: Report
363 label_auth_source_plural: Authentication modes
436 label_report_plural: Reports
364 label_subproject_plural: Subprojects
437 label_news: News
365 label_and_its_subprojects: %s and its subprojects
438 label_news_new: Add news
366 label_min_max_length: Min - Max length
439 label_news_plural: News
367 label_list: List
440 label_news_latest: Latest news
368 label_date: Date
441 label_news_view_all: View all news
369 label_integer: Integer
442 label_news_added: News added
370 label_float: Float
443 label_change_log: Change log
371 label_boolean: Boolean
444 label_settings: Settings
372 label_string: Text
445 label_overview: Overview
373 label_text: Long text
446 label_version: Version
374 label_attribute: Attribute
447 label_version_new: New version
375 label_attribute_plural: Attributes
448 label_version_plural: Versions
376 label_download: %d Download
449 label_confirmation: Confirmation
377 label_download_plural: %d Downloads
450 label_export_to: 'Also available in:'
378 label_no_data: No data to display
451 label_read: Read...
379 label_change_status: Change status
452 label_public_projects: Public projects
380 label_history: History
453 label_open_issues: open
381 label_attachment: File
454 label_open_issues_plural: open
382 label_attachment_new: New file
455 label_closed_issues: closed
383 label_attachment_delete: Delete file
456 label_closed_issues_plural: closed
384 label_attachment_plural: Files
457 label_x_open_issues_abbr_on_total:
385 label_file_added: File added
458 zero: 0 open / {{total}}
386 label_report: Report
459 one: 1 open / {{total}}
387 label_report_plural: Reports
460 other: "{{count}} open / {{total}}"
388 label_news: News
461 label_x_open_issues_abbr:
389 label_news_new: Add news
462 zero: 0 open
390 label_news_plural: News
463 one: 1 open
391 label_news_latest: Latest news
464 other: "{{count}} open"
392 label_news_view_all: View all news
465 label_x_closed_issues_abbr:
393 label_news_added: News added
466 zero: 0 closed
394 label_change_log: Change log
467 one: 1 closed
395 label_settings: Settings
468 other: "{{count}} closed"
396 label_overview: Overview
469 label_total: Total
397 label_version: Version
470 label_permissions: Permissions
398 label_version_new: New version
471 label_current_status: Current status
399 label_version_plural: Versions
472 label_new_statuses_allowed: New statuses allowed
400 label_confirmation: Confirmation
473 label_all: all
401 label_export_to: 'Also available in:'
474 label_none: none
402 label_read: Read...
475 label_nobody: nobody
403 label_public_projects: Public projects
476 label_next: Next
404 label_open_issues: open
477 label_previous: Previous
405 label_open_issues_plural: open
478 label_used_by: Used by
406 label_closed_issues: closed
479 label_details: Details
407 label_closed_issues_plural: closed
480 label_add_note: Add a note
408 label_total: Total
481 label_per_page: Per page
409 label_permissions: Permissions
482 label_calendar: Calendar
410 label_current_status: Current status
483 label_months_from: months from
411 label_new_statuses_allowed: New statuses allowed
484 label_gantt: Gantt
412 label_all: all
485 label_internal: Internal
413 label_none: none
486 label_last_changes: "last {{count}} changes"
414 label_nobody: nobody
487 label_change_view_all: View all changes
415 label_next: Next
488 label_personalize_page: Personalize this page
416 label_previous: Previous
489 label_comment: Comment
417 label_used_by: Used by
490 label_comment_plural: Comments
418 label_details: Details
491 label_x_comments:
419 label_add_note: Add a note
492 zero: no comments
420 label_per_page: Per page
493 one: 1 comment
421 label_calendar: Calendar
494 other: "{{count}} comments"
422 label_months_from: months from
495 label_comment_add: Add a comment
423 label_gantt: Gantt
496 label_comment_added: Comment added
424 label_internal: Internal
497 label_comment_delete: Delete comments
425 label_last_changes: last %d changes
498 label_query: Custom query
426 label_change_view_all: View all changes
499 label_query_plural: Custom queries
427 label_personalize_page: Personalize this page
500 label_query_new: New query
428 label_comment: Comment
501 label_filter_add: Add filter
429 label_comment_plural: Comments
502 label_filter_plural: Filters
430 label_comment_add: Add a comment
503 label_equals: is
431 label_comment_added: Comment added
504 label_not_equals: is not
432 label_comment_delete: Delete comments
505 label_in_less_than: in less than
433 label_query: Custom query
506 label_in_more_than: in more than
434 label_query_plural: Custom queries
507 label_in: in
435 label_query_new: New query
508 label_today: today
436 label_filter_add: Add filter
509 label_all_time: all time
437 label_filter_plural: Filters
510 label_yesterday: yesterday
438 label_equals: is
511 label_this_week: this week
439 label_not_equals: is not
512 label_last_week: last week
440 label_in_less_than: in less than
513 label_last_n_days: "last {{count}} days"
441 label_in_more_than: in more than
514 label_this_month: this month
442 label_in: in
515 label_last_month: last month
443 label_today: today
516 label_this_year: this year
444 label_all_time: all time
517 label_date_range: Date range
445 label_yesterday: yesterday
518 label_less_than_ago: less than days ago
446 label_this_week: this week
519 label_more_than_ago: more than days ago
447 label_last_week: last week
520 label_ago: days ago
448 label_last_n_days: last %d days
521 label_contains: contains
449 label_this_month: this month
522 label_not_contains: doesn't contain
450 label_last_month: last month
523 label_day_plural: days
451 label_this_year: this year
524 label_repository: Repository
452 label_date_range: Date range
525 label_repository_plural: Repositories
453 label_less_than_ago: less than days ago
526 label_browse: Browse
454 label_more_than_ago: more than days ago
527 label_modification: "{{count}} change"
455 label_ago: days ago
528 label_modification_plural: "{{count}} changes"
456 label_contains: contains
529 label_revision: Revision
457 label_not_contains: doesn't contain
530 label_revision_plural: Revisions
458 label_day_plural: days
531 label_associated_revisions: Associated revisions
459 label_repository: Repository
532 label_added: added
460 label_repository_plural: Repositories
533 label_modified: modified
461 label_browse: Browse
534 label_copied: copied
462 label_modification: %d change
535 label_renamed: renamed
463 label_modification_plural: %d changes
536 label_deleted: deleted
464 label_revision: Revision
537 label_latest_revision: Latest revision
465 label_revision_plural: Revisions
538 label_latest_revision_plural: Latest revisions
466 label_associated_revisions: Associated revisions
539 label_view_revisions: View revisions
467 label_added: added
540 label_max_size: Maximum size
468 label_modified: modified
541 label_sort_highest: Move to top
469 label_copied: copied
542 label_sort_higher: Move up
470 label_renamed: renamed
543 label_sort_lower: Move down
471 label_deleted: deleted
544 label_sort_lowest: Move to bottom
472 label_latest_revision: Latest revision
545 label_roadmap: Roadmap
473 label_latest_revision_plural: Latest revisions
546 label_roadmap_due_in: "Due in {{value}}"
474 label_view_revisions: View revisions
547 label_roadmap_overdue: "{{value}} late"
475 label_max_size: Maximum size
548 label_roadmap_no_issues: No issues for this version
476 label_on: 'on'
549 label_search: Search
477 label_sort_highest: Move to top
550 label_result_plural: Results
478 label_sort_higher: Move up
551 label_all_words: All words
479 label_sort_lower: Move down
552 label_wiki: Wiki
480 label_sort_lowest: Move to bottom
553 label_wiki_edit: Wiki edit
481 label_roadmap: Roadmap
554 label_wiki_edit_plural: Wiki edits
482 label_roadmap_due_in: Due in %s
555 label_wiki_page: Wiki page
483 label_roadmap_overdue: %s late
556 label_wiki_page_plural: Wiki pages
484 label_roadmap_no_issues: No issues for this version
557 label_index_by_title: Index by title
485 label_search: Search
558 label_index_by_date: Index by date
486 label_result_plural: Results
559 label_current_version: Current version
487 label_all_words: All words
560 label_preview: Preview
488 label_wiki: Wiki
561 label_feed_plural: Feeds
489 label_wiki_edit: Wiki edit
562 label_changes_details: Details of all changes
490 label_wiki_edit_plural: Wiki edits
563 label_issue_tracking: Issue tracking
491 label_wiki_page: Wiki page
564 label_spent_time: Spent time
492 label_wiki_page_plural: Wiki pages
565 label_f_hour: "{{value}} hour"
493 label_index_by_title: Index by title
566 label_f_hour_plural: "{{value}} hours"
494 label_index_by_date: Index by date
567 label_time_tracking: Time tracking
495 label_current_version: Current version
568 label_change_plural: Changes
496 label_preview: Preview
569 label_statistics: Statistics
497 label_feed_plural: Feeds
570 label_commits_per_month: Commits per month
498 label_changes_details: Details of all changes
571 label_commits_per_author: Commits per author
499 label_issue_tracking: Issue tracking
572 label_view_diff: View differences
500 label_spent_time: Spent time
573 label_diff_inline: inline
501 label_f_hour: %.2f hour
574 label_diff_side_by_side: side by side
502 label_f_hour_plural: %.2f hours
575 label_options: Options
503 label_time_tracking: Time tracking
576 label_copy_workflow_from: Copy workflow from
504 label_change_plural: Changes
577 label_permissions_report: Permissions report
505 label_statistics: Statistics
578 label_watched_issues: Watched issues
506 label_commits_per_month: Commits per month
579 label_related_issues: Related issues
507 label_commits_per_author: Commits per author
580 label_applied_status: Applied status
508 label_view_diff: View differences
581 label_loading: Loading...
509 label_diff_inline: inline
582 label_relation_new: New relation
510 label_diff_side_by_side: side by side
583 label_relation_delete: Delete relation
511 label_options: Options
584 label_relates_to: related to
512 label_copy_workflow_from: Copy workflow from
585 label_duplicates: duplicates
513 label_permissions_report: Permissions report
586 label_duplicated_by: duplicated by
514 label_watched_issues: Watched issues
587 label_blocks: blocks
515 label_related_issues: Related issues
588 label_blocked_by: blocked by
516 label_applied_status: Applied status
589 label_precedes: precedes
517 label_loading: Loading...
590 label_follows: follows
518 label_relation_new: New relation
591 label_end_to_start: end to start
519 label_relation_delete: Delete relation
592 label_end_to_end: end to end
520 label_relates_to: related to
593 label_start_to_start: start to start
521 label_duplicates: duplicates
594 label_start_to_end: start to end
522 label_duplicated_by: duplicated by
595 label_stay_logged_in: Stay logged in
523 label_blocks: blocks
596 label_disabled: disabled
524 label_blocked_by: blocked by
597 label_show_completed_versions: Show completed versions
525 label_precedes: precedes
598 label_me: me
526 label_follows: follows
599 label_board: Forum
527 label_end_to_start: end to start
600 label_board_new: New forum
528 label_end_to_end: end to end
601 label_board_plural: Forums
529 label_start_to_start: start to start
602 label_topic_plural: Topics
530 label_start_to_end: start to end
603 label_message_plural: Messages
531 label_stay_logged_in: Stay logged in
604 label_message_last: Last message
532 label_disabled: disabled
605 label_message_new: New message
533 label_show_completed_versions: Show completed versions
606 label_message_posted: Message added
534 label_me: me
607 label_reply_plural: Replies
535 label_board: Forum
608 label_send_information: Send account information to the user
536 label_board_new: New forum
609 label_year: Year
537 label_board_plural: Forums
610 label_month: Month
538 label_topic_plural: Topics
611 label_week: Week
539 label_message_plural: Messages
612 label_date_from: From
540 label_message_last: Last message
613 label_date_to: To
541 label_message_new: New message
614 label_language_based: Based on user's language
542 label_message_posted: Message added
615 label_sort_by: "Sort by {{value}}"
543 label_reply_plural: Replies
616 label_send_test_email: Send a test email
544 label_send_information: Send account information to the user
617 label_feeds_access_key_created_on: "RSS access key created {{value}} ago"
545 label_year: Year
618 label_module_plural: Modules
546 label_month: Month
619 label_added_time_by: "Added by {{author}} {{age}} ago"
547 label_week: Week
620 label_updated_time_by: "Updated by {{author}} {{age}} ago"
548 label_date_from: From
621 label_updated_time: "Updated {{value}} ago"
549 label_date_to: To
622 label_jump_to_a_project: Jump to a project...
550 label_language_based: Based on user's language
623 label_file_plural: Files
551 label_sort_by: Sort by %s
624 label_changeset_plural: Changesets
552 label_send_test_email: Send a test email
625 label_default_columns: Default columns
553 label_feeds_access_key_created_on: RSS access key created %s ago
626 label_no_change_option: (No change)
554 label_module_plural: Modules
627 label_bulk_edit_selected_issues: Bulk edit selected issues
555 label_added_time_by: Added by %s %s ago
628 label_theme: Theme
556 label_updated_time_by: Updated by %s %s ago
629 label_default: Default
557 label_updated_time: Updated %s ago
630 label_search_titles_only: Search titles only
558 label_jump_to_a_project: Jump to a project...
631 label_user_mail_option_all: "For any event on all my projects"
559 label_file_plural: Files
632 label_user_mail_option_selected: "For any event on the selected projects only..."
560 label_changeset_plural: Changesets
633 label_user_mail_option_none: "Only for things I watch or I'm involved in"
561 label_default_columns: Default columns
634 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
562 label_no_change_option: (No change)
635 label_registration_activation_by_email: account activation by email
563 label_bulk_edit_selected_issues: Bulk edit selected issues
636 label_registration_manual_activation: manual account activation
564 label_theme: Theme
637 label_registration_automatic_activation: automatic account activation
565 label_default: Default
638 label_display_per_page: "Per page: {{value}}'"
566 label_search_titles_only: Search titles only
639 label_age: Age
567 label_user_mail_option_all: "For any event on all my projects"
640 label_change_properties: Change properties
568 label_user_mail_option_selected: "For any event on the selected projects only..."
641 label_general: General
569 label_user_mail_option_none: "Only for things I watch or I'm involved in"
642 label_more: More
570 label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
643 label_scm: SCM
571 label_registration_activation_by_email: account activation by email
644 label_plugins: Plugins
572 label_registration_manual_activation: manual account activation
645 label_ldap_authentication: LDAP authentication
573 label_registration_automatic_activation: automatic account activation
646 label_downloads_abbr: D/L
574 label_display_per_page: 'Per page: %s'
647 label_optional_description: Optional description
575 label_age: Age
648 label_add_another_file: Add another file
576 label_change_properties: Change properties
649 label_preferences: Preferences
577 label_general: General
650 label_chronological_order: In chronological order
578 label_more: More
651 label_reverse_chronological_order: In reverse chronological order
579 label_scm: SCM
652 label_planning: Planning
580 label_plugins: Plugins
653 label_incoming_emails: Incoming emails
581 label_ldap_authentication: LDAP authentication
654 label_generate_key: Generate a key
582 label_downloads_abbr: D/L
655 label_issue_watchers: Watchers
583 label_optional_description: Optional description
656 label_example: Example
584 label_add_another_file: Add another file
657 label_display: Display
585 label_preferences: Preferences
658
586 label_chronological_order: In chronological order
659 button_login: Login
587 label_reverse_chronological_order: In reverse chronological order
660 button_submit: Submit
588 label_planning: Planning
661 button_save: Save
589 label_incoming_emails: Incoming emails
662 button_check_all: Check all
590 label_generate_key: Generate a key
663 button_uncheck_all: Uncheck all
591 label_issue_watchers: Watchers
664 button_delete: Delete
592 label_example: Example
665 button_create: Create
593 label_display: Display
666 button_create_and_continue: Create and continue
594
667 button_test: Test
595 button_login: Login
668 button_edit: Edit
596 button_submit: Submit
669 button_add: Add
597 button_save: Save
670 button_change: Change
598 button_check_all: Check all
671 button_apply: Apply
599 button_uncheck_all: Uncheck all
672 button_clear: Clear
600 button_delete: Delete
673 button_lock: Lock
601 button_create: Create
674 button_unlock: Unlock
602 button_create_and_continue: Create and continue
675 button_download: Download
603 button_test: Test
676 button_list: List
604 button_edit: Edit
677 button_view: View
605 button_add: Add
678 button_move: Move
606 button_change: Change
679 button_back: Back
607 button_apply: Apply
680 button_cancel: Cancel
608 button_clear: Clear
681 button_activate: Activate
609 button_lock: Lock
682 button_sort: Sort
610 button_unlock: Unlock
683 button_log_time: Log time
611 button_download: Download
684 button_rollback: Rollback to this version
612 button_list: List
685 button_watch: Watch
613 button_view: View
686 button_unwatch: Unwatch
614 button_move: Move
687 button_reply: Reply
615 button_back: Back
688 button_archive: Archive
616 button_cancel: Cancel
689 button_unarchive: Unarchive
617 button_activate: Activate
690 button_reset: Reset
618 button_sort: Sort
691 button_rename: Rename
619 button_log_time: Log time
692 button_change_password: Change password
620 button_rollback: Rollback to this version
693 button_copy: Copy
621 button_watch: Watch
694 button_annotate: Annotate
622 button_unwatch: Unwatch
695 button_update: Update
623 button_reply: Reply
696 button_configure: Configure
624 button_archive: Archive
697 button_quote: Quote
625 button_unarchive: Unarchive
698
626 button_reset: Reset
699 status_active: active
627 button_rename: Rename
700 status_registered: registered
628 button_change_password: Change password
701 status_locked: locked
629 button_copy: Copy
702
630 button_annotate: Annotate
703 text_select_mail_notifications: Select actions for which email notifications should be sent.
631 button_update: Update
704 text_regexp_info: eg. ^[A-Z0-9]+$
632 button_configure: Configure
705 text_min_max_length_info: 0 means no restriction
633 button_quote: Quote
706 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
634
707 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
635 status_active: active
708 text_workflow_edit: Select a role and a tracker to edit the workflow
636 status_registered: registered
709 text_are_you_sure: Are you sure ?
637 status_locked: locked
710 text_journal_changed: "changed from {{old}} to {{new}}"
638
711 text_journal_set_to: "set to {{value}}"
639 text_select_mail_notifications: Select actions for which email notifications should be sent.
712 text_journal_deleted: deleted
640 text_regexp_info: eg. ^[A-Z0-9]+$
713 text_tip_task_begin_day: task beginning this day
641 text_min_max_length_info: 0 means no restriction
714 text_tip_task_end_day: task ending this day
642 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
715 text_tip_task_begin_end_day: task beginning and ending this day
643 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
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.'
644 text_workflow_edit: Select a role and a tracker to edit the workflow
717 text_caracters_maximum: "{{count}} characters maximum."
645 text_are_you_sure: Are you sure ?
718 text_caracters_minimum: "Must be at least {{count}} characters long."
646 text_journal_changed: changed from %s to %s
719 text_length_between: "Length between {{min}} and {{max}} characters."
647 text_journal_set_to: set to %s
720 text_tracker_no_workflow: No workflow defined for this tracker
648 text_journal_deleted: deleted
721 text_unallowed_characters: Unallowed characters
649 text_tip_task_begin_day: task beginning this day
722 text_comma_separated: Multiple values allowed (comma separated).
650 text_tip_task_end_day: task ending this day
723 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
651 text_tip_task_begin_end_day: task beginning and ending this day
724 text_issue_added: "Issue {{id}} has been reported by {{author}}."
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.'
725 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
653 text_caracters_maximum: %d characters maximum.
726 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
654 text_caracters_minimum: Must be at least %d characters long.
727 text_issue_category_destroy_question: "Some issues ({{count}}) are assigned to this category. What do you want to do ?"
655 text_length_between: Length between %d and %d characters.
728 text_issue_category_destroy_assignments: Remove category assignments
656 text_tracker_no_workflow: No workflow defined for this tracker
729 text_issue_category_reassign_to: Reassign issues to this category
657 text_unallowed_characters: Unallowed characters
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)."
658 text_comma_separated: Multiple values allowed (comma separated).
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."
659 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
732 text_load_default_configuration: Load the default configuration
660 text_issue_added: Issue %s has been reported by %s.
733 text_status_changed_by_changeset: "Applied in changeset {{value}}."
661 text_issue_updated: Issue %s has been updated by %s.
734 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
662 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
735 text_select_project_modules: 'Select modules to enable for this project:'
663 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
736 text_default_administrator_account_changed: Default administrator account changed
664 text_issue_category_destroy_assignments: Remove category assignments
737 text_file_repository_writable: Attachments directory writable
665 text_issue_category_reassign_to: Reassign issues to this category
738 text_plugin_assets_writable: Plugin assets directory writable
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)."
739 text_rmagick_available: RMagick available (optional)
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."
740 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
668 text_load_default_configuration: Load the default configuration
741 text_destroy_time_entries: Delete reported hours
669 text_status_changed_by_changeset: Applied in changeset %s.
742 text_assign_time_entries_to_project: Assign reported hours to the project
670 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
743 text_reassign_time_entries: 'Reassign reported hours to this issue:'
671 text_select_project_modules: 'Select modules to enable for this project:'
744 text_user_wrote: "{{value}} wrote:'"
672 text_default_administrator_account_changed: Default administrator account changed
745 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
673 text_file_repository_writable: Attachments directory writable
746 text_enumeration_category_reassign_to: 'Reassign them to this value:'
674 text_plugin_assets_writable: Plugin assets directory writable
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."
675 text_rmagick_available: RMagick available (optional)
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."
676 text_destroy_time_entries_question: %.02f hours were reported on the issues you are about to delete. What do you want to do ?
749 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
677 text_destroy_time_entries: Delete reported hours
750 text_custom_field_possible_values_info: 'One line for each value'
678 text_assign_time_entries_to_project: Assign reported hours to the project
751
679 text_reassign_time_entries: 'Reassign reported hours to this issue:'
752 default_role_manager: Manager
680 text_user_wrote: '%s wrote:'
753 default_role_developper: Developer
681 text_enumeration_destroy_question: '%d objects are assigned to this value.'
754 default_role_reporter: Reporter
682 text_enumeration_category_reassign_to: 'Reassign them to this value:'
755 default_tracker_bug: Bug
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."
756 default_tracker_feature: Feature
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."
757 default_tracker_support: Support
685 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
758 default_issue_status_new: New
686 text_custom_field_possible_values_info: 'One line for each value'
759 default_issue_status_assigned: Assigned
687
760 default_issue_status_resolved: Resolved
688 default_role_manager: Manager
761 default_issue_status_feedback: Feedback
689 default_role_developper: Developer
762 default_issue_status_closed: Closed
690 default_role_reporter: Reporter
763 default_issue_status_rejected: Rejected
691 default_tracker_bug: Bug
764 default_doc_category_user: User documentation
692 default_tracker_feature: Feature
765 default_doc_category_tech: Technical documentation
693 default_tracker_support: Support
766 default_priority_low: Low
694 default_issue_status_new: New
767 default_priority_normal: Normal
695 default_issue_status_assigned: Assigned
768 default_priority_high: High
696 default_issue_status_resolved: Resolved
769 default_priority_urgent: Urgent
697 default_issue_status_feedback: Feedback
770 default_priority_immediate: Immediate
698 default_issue_status_closed: Closed
771 default_activity_design: Design
699 default_issue_status_rejected: Rejected
772 default_activity_development: Development
700 default_doc_category_user: User documentation
773
701 default_doc_category_tech: Technical documentation
774 enumeration_issue_priorities: Issue priorities
702 default_priority_low: Low
775 enumeration_doc_categories: Document categories
703 default_priority_normal: Normal
776 enumeration_activities: Activities (time tracking)
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)
1 NO CONTENT: file renamed from lang/fi.yml to config/locales/fi.yml
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
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
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
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
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
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
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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