##// 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
This diff has been collapsed as it changes many lines, (806 lines changed) Show them Hide them
@@ -0,0 +1,806
1 # Galician (Spain) for Ruby on Rails
2 # by Marcos Arias Pena (markus@agil-e.com)
3
4 gl:
5 number:
6 format:
7 separator: ","
8 delimiter: "."
9 precision: 3
10
11 currency:
12 format:
13 format: "%n %u"
14 unit: "€"
15 separator: ","
16 delimiter: "."
17 precision: 2
18
19 percentage:
20 format:
21 # separator:
22 delimiter: ""
23 # precision:
24
25 precision:
26 format:
27 # separator:
28 delimiter: ""
29 # precision:
30
31 human:
32 format:
33 # separator:
34 delimiter: ""
35 precision: 1
36
37
38 date:
39 formats:
40 default: "%e/%m/%Y"
41 short: "%e %b"
42 long: "%A %e de %B de %Y"
43 day_names: [Domingo, Luns, Martes, Mércores, Xoves, Venres, Sábado]
44 abbr_day_names: [Dom, Lun, Mar, Mer, Xov, Ven, Sab]
45 month_names: [~, Xaneiro, Febreiro, Marzo, Abril, Maio, Xunio, Xullo, Agosto, Setembro, Outubro, Novembro, Decembro]
46 abbr_month_names: [~, Xan, Feb, Maz, Abr, Mai, Xun, Xul, Ago, Set, Out, Nov, Dec]
47 order: [:day, :month, :year]
48
49 time:
50 formats:
51 default: "%A, %e de %B de %Y, %H:%M hs"
52 time: "%H:%M hs"
53 short: "%e/%m, %H:%M hs"
54 long: "%A %e de %B de %Y ás %H:%M horas"
55
56 am: ''
57 pm: ''
58
59 datetime:
60 distance_in_words:
61 half_a_minute: 'medio minuto'
62 less_than_x_seconds:
63 zero: 'menos dun segundo'
64 one: '1 segundo'
65 few: 'poucos segundos'
66 other: '{{count}} segundos'
67 x_seconds:
68 one: '1 segundo'
69 other: '{{count}} segundos'
70 less_than_x_minutes:
71 zero: 'menos dun minuto'
72 one: '1 minuto'
73 other: '{{count}} minutos'
74 x_minutes:
75 one: '1 minuto'
76 other: '{{count}} minuto'
77 about_x_hours:
78 one: 'aproximadamente unha hora'
79 other: '{{count}} horas'
80 x_days:
81 one: '1 día'
82 other: '{{count}} días'
83 x_weeks:
84 one: '1 semana'
85 other: '{{count}} semanas'
86 about_x_months:
87 one: 'aproximadamente 1 mes'
88 other: '{{count}} meses'
89 x_months:
90 one: '1 mes'
91 other: '{{count}} meses'
92 about_x_years:
93 one: 'aproximadamente 1 ano'
94 other: '{{count}} anos'
95 over_x_years:
96 one: 'máis dun ano'
97 other: '{{count}} anos'
98 now: 'agora'
99 today: 'hoxe'
100 tomorrow: 'mañá'
101 in: 'dentro de'
102
103 support:
104 array:
105 sentence_connector: e
106
107 activerecord:
108 models:
109 attributes:
110 errors:
111 template:
112 header:
113 one: "1 erro evitou que se poidese gardar o {{model}}"
114 other: "{{count}} erros evitaron que se poidese gardar o {{model}}"
115 body: "Atopáronse os seguintes problemas:"
116 messages:
117 inclusion: "non está incluido na lista"
118 exclusion: "xa existe"
119 invalid: "non é válido"
120 confirmation: "non coincide coa confirmación"
121 accepted: "debe ser aceptado"
122 empty: "non pode estar valeiro"
123 blank: "non pode estar en blanco"
124 too_long: demasiado longo (non máis de {{count}} carácteres)"
125 too_short: demasiado curto (non menos de {{count}} carácteres)"
126 wrong_length: "non ten a lonxitude correcta (debe ser de {{count}} carácteres)"
127 taken: "non está dispoñible"
128 not_a_number: "non é un número"
129 greater_than: "debe ser maior que {{count}}"
130 greater_than_or_equal_to: "debe ser maior ou igual que {{count}}"
131 equal_to: "debe ser igual a {{count}}"
132 less_than: "debe ser menor que {{count}}"
133 less_than_or_equal_to: "debe ser menor ou igual que {{count}}"
134 odd: "debe ser par"
135 even: "debe ser impar"
136 greater_than_start_date: "debe ser posterior á data de comezo"
137 not_same_project: "non pertence ao mesmo proxecto"
138 circular_dependency: "Esta relación podería crear unha dependencia circular"
139
140 actionview_instancetag_blank_option: Por favor seleccione
141
142 button_activate: Activar
143 button_add: Engadir
144 button_annotate: Anotar
145 button_apply: Aceptar
146 button_archive: Arquivar
147 button_back: Atrás
148 button_cancel: Cancelar
149 button_change: Cambiar
150 button_change_password: Cambiar contrasinal
151 button_check_all: Seleccionar todo
152 button_clear: Anular
153 button_configure: Configurar
154 button_copy: Copiar
155 button_create: Crear
156 button_delete: Borrar
157 button_download: Descargar
158 button_edit: Modificar
159 button_list: Listar
160 button_lock: Bloquear
161 button_log_time: Tempo dedicado
162 button_login: Conexión
163 button_move: Mover
164 button_quote: Citar
165 button_rename: Renomear
166 button_reply: Respostar
167 button_reset: Restablecer
168 button_rollback: Volver a esta versión
169 button_save: Gardar
170 button_sort: Ordenar
171 button_submit: Aceptar
172 button_test: Probar
173 button_unarchive: Desarquivar
174 button_uncheck_all: Non seleccionar nada
175 button_unlock: Desbloquear
176 button_unwatch: Non monitorizar
177 button_update: Actualizar
178 button_view: Ver
179 button_watch: Monitorizar
180 default_activity_design: Deseño
181 default_activity_development: Desenvolvemento
182 default_doc_category_tech: Documentación técnica
183 default_doc_category_user: Documentación de usuario
184 default_issue_status_assigned: Asignada
185 default_issue_status_closed: Pechada
186 default_issue_status_feedback: Comentarios
187 default_issue_status_new: Nova
188 default_issue_status_rejected: Rexeitada
189 default_issue_status_resolved: Resolta
190 default_priority_high: Alta
191 default_priority_immediate: Inmediata
192 default_priority_low: Baixa
193 default_priority_normal: Normal
194 default_priority_urgent: Urxente
195 default_role_developper: Desenvolvedor
196 default_role_manager: Xefe de proxecto
197 default_role_reporter: Informador
198 default_tracker_bug: Erros
199 default_tracker_feature: Tarefas
200 default_tracker_support: Soporte
201 enumeration_activities: Actividades (tempo dedicado)
202 enumeration_doc_categories: Categorías do documento
203 enumeration_issue_priorities: Prioridade das peticións
204 error_can_t_load_default_data: "Non se puido cargar a configuración por defecto: {{value}}"
205 error_issue_not_found_in_project: 'A petición non se atopa ou non está asociada a este proxecto'
206 error_scm_annotate: "Non existe a entrada ou non se puido anotar"
207 error_scm_command_failed: "Aconteceu un erro ao acceder ó repositorio: {{value}}"
208 error_scm_not_found: "A entrada e/ou revisión non existe no repositorio."
209 field_account: Conta
210 field_activity: Actividade
211 field_admin: Administrador
212 field_assignable: Pódense asignar peticións a este perfil
213 field_assigned_to: Asignado a
214 field_attr_firstname: Atributo do nome
215 field_attr_lastname: Atributo do apelido
216 field_attr_login: Atributo do identificador
217 field_attr_mail: Atributo do Email
218 field_auth_source: Modo de identificación
219 field_author: Autor
220 field_base_dn: DN base
221 field_category: Categoría
222 field_column_names: Columnas
223 field_comments: Comentario
224 field_comments_sorting: Mostrar comentarios
225 field_created_on: Creado
226 field_default_value: Estado por defecto
227 field_delay: Retraso
228 field_description: Descrición
229 field_done_ratio: %% Realizado
230 field_downloads: Descargas
231 field_due_date: Data fin
232 field_effective_date: Data
233 field_estimated_hours: Tempo estimado
234 field_field_format: Formato
235 field_filename: Arquivo
236 field_filesize: Tamaño
237 field_firstname: Nome
238 field_fixed_version: Versión prevista
239 field_hide_mail: Ocultar a miña dirección de correo
240 field_homepage: Sitio web
241 field_host: Anfitrión
242 field_hours: Horas
243 field_identifier: Identificador
244 field_is_closed: Petición resolta
245 field_is_default: Estado por defecto
246 field_is_filter: Usado como filtro
247 field_is_for_all: Para todos os proxectos
248 field_is_in_chlog: Consultar as peticións no histórico
249 field_is_in_roadmap: Consultar as peticións na planificación
250 field_is_public: Público
251 field_is_required: Obrigatorio
252 field_issue: Petición
253 field_issue_to_id: Petición relacionada
254 field_language: Idioma
255 field_last_login_on: Última conexión
256 field_lastname: Apelido
257 field_login: Identificador
258 field_mail: Correo electrónico
259 field_mail_notification: Notificacións por correo
260 field_max_length: Lonxitude máxima
261 field_min_length: Lonxitude mínima
262 field_name: Nome
263 field_new_password: Novo contrasinal
264 field_notes: Notas
265 field_onthefly: Creación do usuario "ao voo"
266 field_parent: Proxecto pai
267 field_parent_title: Páxina pai
268 field_password: Contrasinal
269 field_password_confirmation: Confirmación
270 field_port: Porto
271 field_possible_values: Valores posibles
272 field_priority: Prioridade
273 field_project: Proxecto
274 field_redirect_existing_links: Redireccionar enlaces existentes
275 field_regexp: Expresión regular
276 field_role: Perfil
277 field_searchable: Incluír nas búsquedas
278 field_spent_on: Data
279 field_start_date: Data de inicio
280 field_start_page: Páxina principal
281 field_status: Estado
282 field_subject: Tema
283 field_subproject: Proxecto secundario
284 field_summary: Resumo
285 field_time_zone: Zona horaria
286 field_title: Título
287 field_tracker: Tipo
288 field_type: Tipo
289 field_updated_on: Actualizado
290 field_url: URL
291 field_user: Usuario
292 field_value: Valor
293 field_version: Versión
294 general_csv_decimal_separator: ','
295 general_csv_encoding: ISO-8859-15
296 general_csv_separator: ';'
297 general_first_day_of_week: '1'
298 general_lang_name: 'Galego'
299 general_pdf_encoding: ISO-8859-15
300 general_text_No: 'Non'
301 general_text_Yes: 'Si'
302 general_text_no: 'non'
303 general_text_yes: 'si'
304 gui_validation_error: 1 erro
305 gui_validation_error_plural: "{{count}} erros"
306 label_activity: Actividade
307 label_add_another_file: Engadir outro arquivo
308 label_add_note: Engadir unha nota
309 label_added: engadido
310 label_added_time_by: "Engadido por {{author}} fai {{age}}"
311 label_administration: Administración
312 label_age: Idade
313 label_ago: fai
314 label_all: todos
315 label_all_time: todo o tempo
316 label_all_words: Tódalas palabras
317 label_and_its_subprojects: "{{value}} e proxectos secundarios"
318 label_applied_status: Aplicar estado
319 label_assigned_to_me_issues: Peticións asignadas a min
320 label_associated_revisions: Revisións asociadas
321 label_attachment: Arquivo
322 label_attachment_delete: Borrar o arquivo
323 label_attachment_new: Novo arquivo
324 label_attachment_plural: Arquivos
325 label_attribute: Atributo
326 label_attribute_plural: Atributos
327 label_auth_source: Modo de autenticación
328 label_auth_source_new: Novo modo de autenticación
329 label_auth_source_plural: Modos de autenticación
330 label_authentication: Autenticación
331 label_blocked_by: bloqueado por
332 label_blocks: bloquea a
333 label_board: Foro
334 label_board_new: Novo foro
335 label_board_plural: Foros
336 label_boolean: Booleano
337 label_browse: Ollar
338 label_bulk_edit_selected_issues: Editar as peticións seleccionadas
339 label_calendar: Calendario
340 label_change_log: Cambios
341 label_change_plural: Cambios
342 label_change_properties: Cambiar propiedades
343 label_change_status: Cambiar o estado
344 label_change_view_all: Ver tódolos cambios
345 label_changes_details: Detalles de tódolos cambios
346 label_changeset_plural: Cambios
347 label_chronological_order: En orde cronolóxica
348 label_closed_issues: pechada
349 label_closed_issues_plural: pechadas
350 label_x_open_issues_abbr_on_total:
351 zero: 0 open / {{total}}
352 one: 1 open / {{total}}
353 other: "{{count}} open / {{total}}"
354 label_x_open_issues_abbr:
355 zero: 0 open
356 one: 1 open
357 other: "{{count}} open"
358 label_x_closed_issues_abbr:
359 zero: 0 closed
360 one: 1 closed
361 other: "{{count}} closed"
362 label_comment: Comentario
363 label_comment_add: Engadir un comentario
364 label_comment_added: Comentario engadido
365 label_comment_delete: Borrar comentarios
366 label_comment_plural: Comentarios
367 label_x_comments:
368 zero: no comments
369 one: 1 comment
370 other: "{{count}} comments"
371 label_commits_per_author: Commits por autor
372 label_commits_per_month: Commits por mes
373 label_confirmation: Confirmación
374 label_contains: conten
375 label_copied: copiado
376 label_copy_workflow_from: Copiar fluxo de traballo dende
377 label_current_status: Estado actual
378 label_current_version: Versión actual
379 label_custom_field: Campo personalizado
380 label_custom_field_new: Novo campo personalizado
381 label_custom_field_plural: Campos personalizados
382 label_date: Data
383 label_date_from: Dende
384 label_date_range: Rango de datas
385 label_date_to: Ata
386 label_day_plural: días
387 label_default: Por defecto
388 label_default_columns: Columnas por defecto
389 label_deleted: suprimido
390 label_details: Detalles
391 label_diff_inline: en liña
392 label_diff_side_by_side: cara a cara
393 label_disabled: deshabilitado
394 label_display_per_page: "Por páxina: {{value}}'"
395 label_document: Documento
396 label_document_added: Documento engadido
397 label_document_new: Novo documento
398 label_document_plural: Documentos
399 label_download: "{{count}} Descarga"
400 label_download_plural: "{{count}} Descargas"
401 label_downloads_abbr: D/L
402 label_duplicated_by: duplicada por
403 label_duplicates: duplicada de
404 label_end_to_end: fin a fin
405 label_end_to_start: fin a principio
406 label_enumeration_new: Novo valor
407 label_enumerations: Listas de valores
408 label_environment: Entorno
409 label_equals: igual
410 label_example: Exemplo
411 label_export_to: 'Exportar a:'
412 label_f_hour: "{{value}} hora"
413 label_f_hour_plural: "{{value}} horas"
414 label_feed_plural: Feeds
415 label_feeds_access_key_created_on: "Clave de acceso por RSS creada fai {{value}}"
416 label_file_added: Arquivo engadido
417 label_file_plural: Arquivos
418 label_filter_add: Engadir o filtro
419 label_filter_plural: Filtros
420 label_float: Flotante
421 label_follows: posterior a
422 label_gantt: Gantt
423 label_general: Xeral
424 label_generate_key: Xerar clave
425 label_help: Axuda
426 label_history: Histórico
427 label_home: Inicio
428 label_in: en
429 label_in_less_than: en menos que
430 label_in_more_than: en mais que
431 label_incoming_emails: Correos entrantes
432 label_index_by_date: Índice por data
433 label_index_by_title: Índice por título
434 label_information: Información
435 label_information_plural: Información
436 label_integer: Número
437 label_internal: Interno
438 label_issue: Petición
439 label_issue_added: Petición engadida
440 label_issue_category: Categoría das peticións
441 label_issue_category_new: Nova categoría
442 label_issue_category_plural: Categorías das peticións
443 label_issue_new: Nova petición
444 label_issue_plural: Peticións
445 label_issue_status: Estado da petición
446 label_issue_status_new: Novo estado
447 label_issue_status_plural: Estados das peticións
448 label_issue_tracking: Peticións
449 label_issue_updated: Petición actualizada
450 label_issue_view_all: Ver tódalas peticións
451 label_issue_watchers: Seguidores
452 label_issues_by: "Peticións por {{value}}"
453 label_jump_to_a_project: Ir ao proxecto...
454 label_language_based: Baseado no idioma
455 label_last_changes: "últimos {{count}} cambios"
456 label_last_login: Última conexión
457 label_last_month: último mes
458 label_last_n_days: "últimos {{count}} días"
459 label_last_week: última semana
460 label_latest_revision: Última revisión
461 label_latest_revision_plural: Últimas revisións
462 label_ldap_authentication: Autenticación LDAP
463 label_less_than_ago: fai menos de
464 label_list: Lista
465 label_loading: Cargando...
466 label_logged_as: Conectado como
467 label_login: Conexión
468 label_logout: Desconexión
469 label_max_size: Tamaño máximo
470 label_me: eu mesmo
471 label_member: Membro
472 label_member_new: Novo membro
473 label_member_plural: Membros
474 label_message_last: Última mensaxe
475 label_message_new: Nova mensaxe
476 label_message_plural: Mensaxes
477 label_message_posted: Mensaxe engadida
478 label_min_max_length: Lonxitude mín - máx
479 label_modification: "{{count}} modificación"
480 label_modification_plural: "{{count}} modificacións"
481 label_modified: modificado
482 label_module_plural: Módulos
483 label_month: Mes
484 label_months_from: meses de
485 label_more: Mais
486 label_more_than_ago: fai mais de
487 label_my_account: A miña conta
488 label_my_page: A miña páxina
489 label_my_projects: Os meus proxectos
490 label_new: Novo
491 label_new_statuses_allowed: Novos estados autorizados
492 label_news: Noticia
493 label_news_added: Noticia engadida
494 label_news_latest: Últimas noticias
495 label_news_new: Nova noticia
496 label_news_plural: Noticias
497 label_news_view_all: Ver tódalas noticias
498 label_next: Seguinte
499 label_no_change_option: (Sen cambios)
500 label_no_data: Ningún dato a mostrar
501 label_nobody: ninguén
502 label_none: ningún
503 label_not_contains: non conten
504 label_not_equals: non igual
505 label_open_issues: aberta
506 label_open_issues_plural: abertas
507 label_optional_description: Descrición opcional
508 label_options: Opcións
509 label_overall_activity: Actividade global
510 label_overview: Vistazo
511 label_password_lost: ¿Esqueciches o contrasinal?
512 label_per_page: Por páxina
513 label_permissions: Permisos
514 label_permissions_report: Informe de permisos
515 label_personalize_page: Personalizar esta páxina
516 label_planning: Planificación
517 label_please_login: Conexión
518 label_plugins: Extensións
519 label_precedes: anterior a
520 label_preferences: Preferencias
521 label_preview: Previsualizar
522 label_previous: Anterior
523 label_project: Proxecto
524 label_project_all: Tódolos proxectos
525 label_project_latest: Últimos proxectos
526 label_project_new: Novo proxecto
527 label_project_plural: Proxectos
528 label_x_projects:
529 zero: no projects
530 one: 1 project
531 other: "{{count}} projects"
532 label_public_projects: Proxectos públicos
533 label_query: Consulta personalizada
534 label_query_new: Nova consulta
535 label_query_plural: Consultas personalizadas
536 label_read: Ler...
537 label_register: Rexistrar
538 label_registered_on: Inscrito o
539 label_registration_activation_by_email: activación de conta por correo
540 label_registration_automatic_activation: activación automática de conta
541 label_registration_manual_activation: activación manual de conta
542 label_related_issues: Peticións relacionadas
543 label_relates_to: relacionada con
544 label_relation_delete: Eliminar relación
545 label_relation_new: Nova relación
546 label_renamed: renomeado
547 label_reply_plural: Respostas
548 label_report: Informe
549 label_report_plural: Informes
550 label_reported_issues: Peticións rexistradas por min
551 label_repository: Repositorio
552 label_repository_plural: Repositorios
553 label_result_plural: Resultados
554 label_reverse_chronological_order: En orde cronolóxica inversa
555 label_revision: Revisión
556 label_revision_plural: Revisións
557 label_roadmap: Planificación
558 label_roadmap_due_in: "Remata en {{value}}"
559 label_roadmap_no_issues: Non hai peticións para esta versión
560 label_roadmap_overdue: "{{value}} tarde"
561 label_role: Perfil
562 label_role_and_permissions: Perfiles e permisos
563 label_role_new: Novo perfil
564 label_role_plural: Perfiles
565 label_scm: SCM
566 label_search: Búsqueda
567 label_search_titles_only: Buscar só en títulos
568 label_send_information: Enviar información da conta ó usuario
569 label_send_test_email: Enviar un correo de proba
570 label_settings: Configuración
571 label_show_completed_versions: Mostra as versións rematadas
572 label_sort_by: "Ordenar por {{value}}"
573 label_sort_higher: Subir
574 label_sort_highest: Primeiro
575 label_sort_lower: Baixar
576 label_sort_lowest: Último
577 label_spent_time: Tempo dedicado
578 label_start_to_end: comezo a fin
579 label_start_to_start: comezo a comezo
580 label_statistics: Estatísticas
581 label_stay_logged_in: Lembrar contrasinal
582 label_string: Texto
583 label_subproject_plural: Proxectos secundarios
584 label_text: Texto largo
585 label_theme: Tema
586 label_this_month: este mes
587 label_this_week: esta semana
588 label_this_year: este ano
589 label_time_tracking: Control de tempo
590 label_today: hoxe
591 label_topic_plural: Temas
592 label_total: Total
593 label_tracker: Tipo
594 label_tracker_new: Novo tipo
595 label_tracker_plural: Tipos de peticións
596 label_updated_time: "Actualizado fai {{value}}"
597 label_updated_time_by: "Actualizado por {{author}} fai {{age}}"
598 label_used_by: Utilizado por
599 label_user: Usuario
600 label_user_activity: "Actividade de {{value}}"
601 label_user_mail_no_self_notified: "Non quero ser avisado de cambios feitos por min"
602 label_user_mail_option_all: "Para calquera evento en tódolos proxectos"
603 label_user_mail_option_none: "Só para elementos monitorizados ou relacionados comigo"
604 label_user_mail_option_selected: "Para calquera evento dos proxectos seleccionados..."
605 label_user_new: Novo usuario
606 label_user_plural: Usuarios
607 label_version: Versión
608 label_version_new: Nova versión
609 label_version_plural: Versións
610 label_view_diff: Ver diferencias
611 label_view_revisions: Ver as revisións
612 label_watched_issues: Peticións monitorizadas
613 label_week: Semana
614 label_wiki: Wiki
615 label_wiki_edit: Wiki edición
616 label_wiki_edit_plural: Wiki edicións
617 label_wiki_page: Wiki páxina
618 label_wiki_page_plural: Wiki páxinas
619 label_workflow: Fluxo de traballo
620 label_year: Ano
621 label_yesterday: onte
622 mail_body_account_activation_request: "Inscribiuse un novo usuario ({{value}}). A conta está pendente de aprobación:'"
623 mail_body_account_information: Información sobre a súa conta
624 mail_body_account_information_external: "Pode usar a súa conta {{value}} para conectarse."
625 mail_body_lost_password: 'Para cambiar o seu contrasinal, faga clic no seguinte enlace:'
626 mail_body_register: 'Para activar a súa conta, faga clic no seguinte enlace:'
627 mail_body_reminder: "{{count}} petición(s) asignadas a ti rematan nos próximos {{days}} días:"
628 mail_subject_account_activation_request: "Petición de activación de conta {{value}}"
629 mail_subject_lost_password: "O teu contrasinal de {{value}}"
630 mail_subject_register: "Activación da conta de {{value}}"
631 mail_subject_reminder: "{{count}} petición(s) rematarán nos próximos días"
632 notice_account_activated: A súa conta foi activada. Xa pode conectarse.
633 notice_account_invalid_creditentials: Usuario ou contrasinal inválido.
634 notice_account_lost_email_sent: Enviouse un correo con instrucións para elixir un novo contrasinal.
635 notice_account_password_updated: Contrasinal modificado correctamente.
636 notice_account_pending: "A súa conta creouse e está pendente da aprobación por parte do administrador."
637 notice_account_register_done: Conta creada correctamente. Para activala, faga clic sobre o enlace que se lle enviou por correo.
638 notice_account_unknown_email: Usuario descoñecido.
639 notice_account_updated: Conta actualizada correctamente.
640 notice_account_wrong_password: Contrasinal incorrecto.
641 notice_can_t_change_password: Esta conta utiliza unha fonte de autenticación externa. Non é posible cambiar o contrasinal.
642 notice_default_data_loaded: Configuración por defecto cargada correctamente.
643 notice_email_error: "Ocorreu un error enviando o correo ({{value}})"
644 notice_email_sent: "Enviouse un correo a {{value}}"
645 notice_failed_to_save_issues: "Imposible gravar %s petición(s) en {{count}} seleccionado: {{value}}."
646 notice_feeds_access_key_reseted: A súa clave de acceso para RSS reiniciouse.
647 notice_file_not_found: A páxina á que tenta acceder non existe.
648 notice_locking_conflict: Os datos modificáronse por outro usuario.
649 notice_no_issue_selected: "Ningunha petición seleccionada. Por favor, comprobe a petición que quere modificar"
650 notice_not_authorized: Non ten autorización para acceder a esta páxina.
651 notice_successful_connection: Conexión correcta.
652 notice_successful_create: Creación correcta.
653 notice_successful_delete: Borrado correcto.
654 notice_successful_update: Modificación correcta.
655 notice_unable_delete_version: Non se pode borrar a versión
656 permission_add_issue_notes: Engadir notas
657 permission_add_issue_watchers: Engadir seguidores
658 permission_add_issues: Engadir peticións
659 permission_add_messages: Enviar mensaxes
660 permission_browse_repository: Ollar repositorio
661 permission_comment_news: Comentar noticias
662 permission_commit_access: Acceso de escritura
663 permission_delete_issues: Borrar peticións
664 permission_delete_messages: Borrar mensaxes
665 permission_delete_own_messages: Borrar mensaxes propios
666 permission_delete_wiki_pages: Borrar páxinas wiki
667 permission_delete_wiki_pages_attachments: Borrar arquivos
668 permission_edit_issue_notes: Modificar notas
669 permission_edit_issues: Modificar peticións
670 permission_edit_messages: Modificar mensaxes
671 permission_edit_own_issue_notes: Modificar notas propias
672 permission_edit_own_messages: Editar mensaxes propios
673 permission_edit_own_time_entries: Modificar tempos dedicados propios
674 permission_edit_project: Modificar proxecto
675 permission_edit_time_entries: Modificar tempos dedicados
676 permission_edit_wiki_pages: Modificar páxinas wiki
677 permission_log_time: Anotar tempo dedicado
678 permission_manage_boards: Administrar foros
679 permission_manage_categories: Administrar categorías de peticións
680 permission_manage_documents: Administrar documentos
681 permission_manage_files: Administrar arquivos
682 permission_manage_issue_relations: Administrar relación con outras peticións
683 permission_manage_members: Administrar membros
684 permission_manage_news: Administrar noticias
685 permission_manage_public_queries: Administrar consultas públicas
686 permission_manage_repository: Administrar repositorio
687 permission_manage_versions: Administrar versións
688 permission_manage_wiki: Administrar wiki
689 permission_move_issues: Mover peticións
690 permission_protect_wiki_pages: Protexer páxinas wiki
691 permission_rename_wiki_pages: Renomear páxinas wiki
692 permission_save_queries: Gravar consultas
693 permission_select_project_modules: Seleccionar módulos do proxecto
694 permission_view_calendar: Ver calendario
695 permission_view_changesets: Ver cambios
696 permission_view_documents: Ver documentos
697 permission_view_files: Ver arquivos
698 permission_view_gantt: Ver diagrama de Gantt
699 permission_view_issue_watchers: Ver lista de seguidores
700 permission_view_messages: Ver mensaxes
701 permission_view_time_entries: Ver tempo dedicado
702 permission_view_wiki_edits: Ver histórico do wiki
703 permission_view_wiki_pages: Ver wiki
704 project_module_boards: Foros
705 project_module_documents: Documentos
706 project_module_files: Arquivos
707 project_module_issue_tracking: Peticións
708 project_module_news: Noticias
709 project_module_repository: Repositorio
710 project_module_time_tracking: Control de tempo
711 project_module_wiki: Wiki
712 setting_activity_days_default: Días a mostrar na actividade do proxecto
713 setting_app_subtitle: Subtítulo da aplicación
714 setting_app_title: Título da aplicación
715 setting_attachment_max_size: Tamaño máximo do arquivo
716 setting_autofetch_changesets: Autorechear os commits do repositorio
717 setting_autologin: Conexión automática
718 setting_bcc_recipients: Ocultar as copias de carbón (bcc)
719 setting_commit_fix_keywords: Palabras clave para a corrección
720 setting_commit_logs_encoding: Codificación das mensaxes de commit
721 setting_commit_ref_keywords: Palabras clave para a referencia
722 setting_cross_project_issue_relations: Permitir relacionar peticións de distintos proxectos
723 setting_date_format: Formato da data
724 setting_default_language: Idioma por defecto
725 setting_default_projects_public: Os proxectos novos son públicos por defecto
726 setting_diff_max_lines_displayed: Número máximo de diferencias mostradas
727 setting_display_subprojects_issues: Mostrar por defecto peticións de prox. secundarios no principal
728 setting_emails_footer: Pe de mensaxes
729 setting_enabled_scm: Activar SCM
730 setting_feeds_limit: Límite de contido para sindicación
731 setting_gravatar_enabled: Usar iconas de usuario (Gravatar)
732 setting_host_name: Nome e ruta do servidor
733 setting_issue_list_default_columns: Columnas por defecto para a lista de peticións
734 setting_issues_export_limit: Límite de exportación de peticións
735 setting_login_required: Requírese identificación
736 setting_mail_from: Correo dende o que enviar mensaxes
737 setting_mail_handler_api_enabled: Activar SW para mensaxes entrantes
738 setting_mail_handler_api_key: Clave da API
739 setting_per_page_options: Obxectos por páxina
740 setting_plain_text_mail: só texto plano (non HTML)
741 setting_protocol: Protocolo
742 setting_repositories_encodings: Codificacións do repositorio
743 setting_self_registration: Rexistro permitido
744 setting_sequential_project_identifiers: Xerar identificadores de proxecto
745 setting_sys_api_enabled: Habilitar SW para a xestión do repositorio
746 setting_text_formatting: Formato de texto
747 setting_time_format: Formato de hora
748 setting_user_format: Formato de nome de usuario
749 setting_welcome_text: Texto de benvida
750 setting_wiki_compression: Compresión do historial do Wiki
751 status_active: activo
752 status_locked: bloqueado
753 status_registered: rexistrado
754 text_are_you_sure: ¿Está seguro?
755 text_assign_time_entries_to_project: Asignar as horas ó proxecto
756 text_caracters_maximum: "{{count}} caracteres como máximo."
757 text_caracters_minimum: "{{count}} caracteres como mínimo"
758 text_comma_separated: Múltiples valores permitidos (separados por coma).
759 text_default_administrator_account_changed: Conta de administrador por defecto modificada
760 text_destroy_time_entries: Borrar as horas
761 text_destroy_time_entries_question: Existen %.02f horas asignadas á petición que quere borrar. ¿Que quere facer ?
762 text_diff_truncated: '... Diferencia truncada por exceder o máximo tamaño visualizable.'
763 text_email_delivery_not_configured: "O envío de correos non está configurado, e as notificacións desactiváronse. \n Configure o servidor de SMTP en config/email.yml e reinicie a aplicación para activar os cambios."
764 text_enumeration_category_reassign_to: 'Reasignar ó seguinte valor:'
765 text_enumeration_destroy_question: "{{count}} obxectos con este valor asignado.'"
766 text_file_repository_writable: Pódese escribir no repositorio
767 text_issue_added: "Petición {{id}} engadida por {{author}}."
768 text_issue_category_destroy_assignments: Deixar as peticións sen categoría
769 text_issue_category_destroy_question: "Algunhas peticións ({{count}}) están asignadas a esta categoría. ¿Que desexa facer?"
770 text_issue_category_reassign_to: Reasignar as peticións á categoría
771 text_issue_updated: "A petición {{id}} actualizouse por {{author}}."
772 text_issues_destroy_confirmation: '¿Seguro que quere borrar as peticións seleccionadas?'
773 text_issues_ref_in_commit_messages: Referencia e petición de corrección nas mensaxes
774 text_journal_changed: "cambiado de {{old}} a {{new}}"
775 text_journal_deleted: suprimido
776 text_journal_set_to: "fixado a {{value}}"
777 text_length_between: "Lonxitude entre {{min}} e {{max}} caracteres."
778 text_load_default_configuration: Cargar a configuración por defecto
779 text_min_max_length_info: 0 para ningunha restrición
780 text_no_configuration_data: "Inda non se configuraron perfiles, nin tipos, estados e fluxo de traballo asociado a peticións. Recoméndase encarecidamente cargar a configuración por defecto. Unha vez cargada, poderá modificala."
781 text_project_destroy_confirmation: ¿Estás seguro de querer eliminar o proxecto?
782 text_project_identifier_info: 'Letras minúsculas (a-z), números e signos de puntuación permitidos.<br />Unha vez gardado, o identificador non pode modificarse.'
783 text_reassign_time_entries: 'Reasignar as horas a esta petición:'
784 text_regexp_info: ex. ^[A-Z0-9]+$
785 text_repository_usernames_mapping: "Estableza a correspondencia entre os usuarios de Redmine e os presentes no log do repositorio.\nOs usuarios co mesmo nome ou correo en Redmine e no repositorio serán asociados automaticamente."
786 text_rmagick_available: RMagick dispoñible (opcional)
787 text_select_mail_notifications: Seleccionar os eventos a notificar
788 text_select_project_modules: 'Seleccione os módulos a activar para este proxecto:'
789 text_status_changed_by_changeset: "Aplicado nos cambios {{value}}"
790 text_subprojects_destroy_warning: "Os proxectos secundarios: {{value}} tamén se eliminarán'"
791 text_tip_task_begin_day: tarefa que comeza este día
792 text_tip_task_begin_end_day: tarefa que comeza e remata este día
793 text_tip_task_end_day: tarefa que remata este día
794 text_tracker_no_workflow: Non hai ningún fluxo de traballo definido para este tipo de petición
795 text_unallowed_characters: Caracteres non permitidos
796 text_user_mail_option: "Dos proxectos non seleccionados, recibirá notificacións sobre elementos monitorizados ou elementos nos que estea involucrado (por exemplo, peticións das que vostede sexa autor ou asignadas a vostede)."
797 text_user_wrote: "{{value}} escribiu:'"
798 text_wiki_destroy_confirmation: ¿Seguro que quere borrar o wiki e todo o seu contido?
799 text_workflow_edit: Seleccionar un fluxo de traballo para actualizar
800 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
801 field_editable: Editable
802 text_plugin_assets_writable: Plugin assets directory writable
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, (835 lines changed) Show them Hide them
@@ -0,0 +1,835
1 # Korean (한글) translations for Ruby on Rails
2 # by John Hwang (jhwang@tavon.org)
3 # http://github.com/tavon
4
5 ko:
6 date:
7 formats:
8 default: "%Y/%m/%d"
9 short: "%m/%d"
10 long: "%Y년 %m월 %d일 (%a)"
11
12 day_names: [일요일, 월요일, 화요일, 수요일, 목요일, 금요일, 토요일]
13 abbr_day_names: [, , , , , , ]
14
15 month_names: [~, 1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월]
16 abbr_month_names: [~, 1월, 2월, 3월, 4월, 5월, 6월, 7월, 8월, 9월, 10월, 11월, 12월]
17
18 order: [ :year, :month, :day ]
19
20 time:
21 formats:
22 default: "%Y/%m/%d %H:%M:%S"
23 short: "%y/%m/%d %H:%M"
24 long: "%Y년 %B월 %d일, %H시 %M분 %S초 %Z"
25 am: "오전"
26 pm: "오후"
27
28 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
29 datetime:
30 distance_in_words:
31 half_a_minute: "30초"
32 less_than_x_seconds:
33 one: "일초 이하"
34 other: "{{count}}초 이하"
35 x_seconds:
36 one: "일초"
37 other: "{{count}}초"
38 less_than_x_minutes:
39 one: "일분 이하"
40 other: "{{count}}분 이하"
41 x_minutes:
42 one: "일분"
43 other: "{{count}}분"
44 about_x_hours:
45 one: "약 한시간"
46 other: "약 {{count}}시간"
47 x_days:
48 one: "하루"
49 other: "{{count}}일"
50 about_x_months:
51 one: "약 한달"
52 other: "약 {{count}}달"
53 x_months:
54 one: "한달"
55 other: "{{count}}달"
56 about_x_years:
57 one: "약 일년"
58 other: "약 {{count}}년"
59 over_x_years:
60 one: "일년 이상"
61 other: "{{count}}년 이상"
62 prompts:
63 year: "년"
64 month: "월"
65 day: "일"
66 hour: "시"
67 minute: "분"
68 second: "초"
69
70 number:
71 # Used in number_with_delimiter()
72 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
73 format:
74 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
75 separator: "."
76 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
77 delimiter: ","
78 # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
79 precision: 3
80
81 # Used in number_to_currency()
82 currency:
83 format:
84 # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
85 format: "%u%n"
86 unit: "₩"
87 # These three are to override number.format and are optional
88 separator: "."
89 delimiter: ","
90 precision: 0
91
92 # Used in number_to_percentage()
93 percentage:
94 format:
95 # These three are to override number.format and are optional
96 # separator:
97 delimiter: ""
98 # precision:
99
100 # Used in number_to_precision()
101 precision:
102 format:
103 # These three are to override number.format and are optional
104 # separator:
105 delimiter: ""
106 # precision:
107
108 # Used in number_to_human_size()
109 human:
110 format:
111 # These three are to override number.format and are optional
112 # separator:
113 delimiter: ""
114 precision: 1
115 storage_units: [Bytes, KB, MB, GB, TB]
116
117 # Used in array.to_sentence.
118 support:
119 array:
120 words_connector: ", "
121 two_words_connector: "과 "
122 last_word_connector: ", "
123
124 activerecord:
125 errors:
126 template:
127 header:
128 one: "한개의 오류가 발생해 {{model}}를 저장 안았했습니다"
129 other: "{{count}}개의 오류가 발생해 {{model}}를 저장 안았했습니다"
130 # The variable :count is also available
131 body: "다음 항목에 문제가 발견했습니다:"
132
133 messages:
134 inclusion: "은 목록에 포함되어 있지 않습니다"
135 exclusion: "은 예약되어 있습니다"
136 invalid: "은 무효입니다"
137 confirmation: "은 확인이 되지 않았습니다"
138 accepted: "은 인정되어야 합니다"
139 empty: "은 비어두면 됩니다"
140 blank: "은 비어두면 됩니다"
141 too_long: "은 너무 깁니다 (최대 {{count}}자 까지)"
142 too_short: "은 너무 짧습니다 (최소 {{count}}자 까지)"
143 wrong_length: "은 길이가 틀렸습니다 ({{count}}자를 필요합니다)"
144 taken: "은 이미 선택된 겁니다"
145 not_a_number: "은 숫자가 아닙니다"
146 greater_than: "은 {{count}}이상을 요구합니다"
147 greater_than_or_equal_to: "은 {{count}}과 같거나 이상을 요구합니다"
148 equal_to: "은 {{count}}과 같아야 합니다"
149 less_than: "은 {{count}}과 같아야 합니다"
150 less_than_or_equal_to: "은 {{count}}과 같거나 이하을 요구합니다"
151 odd: "은 홀수을 요구합니다"
152 even: "은 짝수을 요구합니다"
153 greater_than_start_date: "는 시작날짜보다 커야 합니다."
154 not_same_project: "는 같은 프로젝트에 속해 있지 않습니다."
155 circular_dependency: "이 관계는 순환 의존관계를 만들 수있습니다."
156
157 actionview_instancetag_blank_option: 선택하세요
158
159 general_text_No: '아니오'
160 general_text_Yes: '예'
161 general_text_no: '아니오'
162 general_text_yes: '예'
163 general_lang_name: 'Korean (한국어)'
164 general_csv_separator: ','
165 general_csv_decimal_separator: '.'
166 general_csv_encoding: CP949
167 general_pdf_encoding: CP949
168 general_first_day_of_week: '7'
169
170 notice_account_updated: 계정이 성공적으로 변경 되었습니다.
171 notice_account_invalid_creditentials: 잘못된 계정 또는 비밀번호
172 notice_account_password_updated: 비밀번호가 잘 변경되었습니다.
173 notice_account_wrong_password: 잘못된 비밀번호
174 notice_account_register_done: 계정이 잘 만들어졌습니다. 계정을 활성화하시려면 받은 메일의 링크를 클릭해주세요.
175 notice_account_unknown_email: 알려지지 않은 사용자.
176 notice_can_t_change_password: 이 계정은 외부 인증을 이용합니다. 비밀번호를 변경할 수 없습니다.
177 notice_account_lost_email_sent: 새로운 비밀번호를 위한 메일이 발송되었습니다.
178 notice_account_activated: 계정이 활성화 되었습니다. 이제 로그인 하실수 있습니다.
179 notice_successful_create: 생성 성공.
180 notice_successful_update: 변경 성공.
181 notice_successful_delete: 삭제 성공.
182 notice_successful_connection: 연결 성공.
183 notice_file_not_found: 요청하신 페이지는 삭제되었거나 옮겨졌습니다.
184 notice_locking_conflict: 다른 사용자에 의해서 데이터가 변경되었습니다.
185 notice_not_authorized: 이 페이지에 접근할 권한이 없습니다.
186 notice_email_sent: "{{value}}님에게 메일이 발송되었습니다."
187 notice_email_error: "메일을 전송하는 과정에 오류가 발생했습니다. ({{value}})"
188 notice_feeds_access_key_reseted: RSS에 접근가능한 열쇠(key)가 생성되었습니다.
189 notice_failed_to_save_issues: "저장에 실패하였습니다: 실패 {{count}}(선택 {{total}}): {{ids}}."
190 notice_no_issue_selected: "일감이 선택되지 않았습니다. 수정하기 원하는 일감을 선택하세요"
191
192 error_scm_not_found: 소스 저장소에 해당 내용이 존재하지 않습니다.
193 error_scm_command_failed: "저장소에 접근하는 도중에 오류가 발생하였습니다.: {{value}}"
194
195 mail_subject_lost_password: "당신의 비밀번호 ({{value}})"
196 mail_body_lost_password: '비밀번호를 변경하기 위해서 링크를 이용하세요'
197 mail_subject_register: "당신의 계정 활성화 ({{value}})"
198 mail_body_register: '계정을 활성화 하기 위해서 링크를 이용하세요 :'
199
200 gui_validation_error: 1 에러
201 gui_validation_error_plural: "{{count}} 에러"
202
203 field_name: 이름
204 field_description: 설명
205 field_summary: 요약
206 field_is_required: 필수
207 field_firstname: 이름
208 field_lastname:
209 field_mail: 메일
210 field_filename: 파일
211 field_filesize: 크기
212 field_downloads: 다운로드
213 field_author: 저자
214 field_created_on: 보고시간
215 field_updated_on: 변경시간
216 field_field_format: 포맷
217 field_is_for_all: 모든 프로젝트
218 field_possible_values: 가능한 값들
219 field_regexp: 정규식
220 field_min_length: 최소 길이
221 field_max_length: 최대 길이
222 field_value:
223 field_category: 카테고리
224 field_title: 제목
225 field_project: 프로젝트
226 field_issue: 일감
227 field_status: 상태
228 field_notes: 덧글
229 field_is_closed: 완료된 일감
230 field_is_default: 기본값
231 field_tracker: 구분
232 field_subject: 제목
233 field_due_date: 완료 기한
234 field_assigned_to: 담당자
235 field_priority: 우선순위
236 field_fixed_version: 목표버전
237 field_user: 사용자
238 field_role: 역할
239 field_homepage: 홈페이지
240 field_is_public: 공개
241 field_parent: 상위 프로젝트
242 field_is_in_chlog: 변경이력(changelog)에서 표시할 일감들
243 field_is_in_roadmap: 로드맵에서표시할 일감들
244 field_login: 로그인
245 field_mail_notification: 메일 알림
246 field_admin: 관리자
247 field_last_login_on: 마지막 로그인
248 field_language: 언어
249 field_effective_date: 일자
250 field_password: 비밀번호
251 field_new_password: 새 비밀번호
252 field_password_confirmation: 비밀번호 확인
253 field_version: 버전
254 field_type: 타입
255 field_host: 호스트
256 field_port: 포트
257 field_account: 계정
258 field_base_dn: 기본 DN
259 field_attr_login: 로그인 속성
260 field_attr_firstname: 이름 속성
261 field_attr_lastname: 성 속성
262 field_attr_mail: 메일 속성
263 field_onthefly: 빠른 사용자 생성
264 field_start_date: 시작시간
265 field_done_ratio: 완료 %%
266 field_auth_source: 인증 방법
267 field_hide_mail: 내 메일 주소 숨기기
268 field_comments: 코멘트
269 field_url: URL
270 field_start_page: 시작 페이지
271 field_subproject: 서브 프로젝트
272 field_hours: 시간
273 field_activity: 작업종류
274 field_spent_on: 작업시간
275 field_identifier: 식별자
276 field_is_filter: 필터로 사용됨
277 field_issue_to_id: 연관된 일감
278 field_delay: 지연
279 field_assignable: 이 역할에 할당될수 있는 일감
280 field_redirect_existing_links: 기존의 링크로 돌려보냄(redirect)
281 field_estimated_hours: 추정시간
282 field_column_names: 컬럼
283 field_default_value: 기본값
284
285 setting_app_title: 레드마인 제목
286 setting_app_subtitle: 레드마인 부제목
287 setting_welcome_text: 환영 메시지
288 setting_default_language: 기본 언어
289 setting_login_required: 인증이 필요함.
290 setting_self_registration: 사용자 직접등록
291 setting_attachment_max_size: 최대 첨부파일 크기
292 setting_issues_export_limit: 일감 내보내기 제한 개수
293 setting_mail_from: 발신 메일 주소
294 setting_host_name: 호스트 이름
295 setting_text_formatting: 본문 형식
296 setting_wiki_compression: 위키 이력 압축
297 setting_feeds_limit: 내용 피드(RSS Feed) 제한 개수
298 setting_autofetch_changesets: 커밋된 변경묶음을 자동으로 가져오기
299 setting_sys_api_enabled: 저장소 관리자에 WS 를 허용
300 setting_commit_ref_keywords: 일감 참조에 사용할 키워드들
301 setting_commit_fix_keywords: 일감 해결에 사용할 키워드들
302 setting_autologin: 자동 로그인
303 setting_date_format: 날짜 형식
304 setting_cross_project_issue_relations: 프로젝트간 일감에 관계을 맺는 것을 허용
305 setting_issue_list_default_columns: 일감 목록에 보여줄 기본 컬럼들
306 setting_repositories_encodings: 저장소 인코딩
307 setting_emails_footer: 메일 꼬리
308
309 label_user: 사용자
310 label_user_plural: 사용자관리
311 label_user_new: 새 사용자
312 label_project: 프로젝트
313 label_project_new: 새 프로젝트
314 label_project_plural: 프로젝트
315 label_x_projects:
316 zero: no projects
317 one: 1 project
318 other: "{{count}} projects"
319 label_project_all: 모든 프로젝트
320 label_project_latest: 최근 프로젝트
321 label_issue: 일감
322 label_issue_new: 새 일감만들기
323 label_issue_plural: 일감
324 label_issue_view_all: 모든 일감 보기
325 label_document: 문서
326 label_document_new: 새 문서
327 label_document_plural: 문서
328 label_role: 역할
329 label_role_plural: 역할
330 label_role_new: 새 역할
331 label_role_and_permissions: 권한관리
332 label_member: 담당자
333 label_member_new: 새 담당자
334 label_member_plural: 담당자
335 label_tracker: 일감 유형
336 label_tracker_plural: 일감 유형
337 label_tracker_new: 새 일감 유형
338 label_workflow: 워크플로
339 label_issue_status: 일감 상태
340 label_issue_status_plural: 일감 상태
341 label_issue_status_new: 새 일감 상태
342 label_issue_category: 카테고리
343 label_issue_category_plural: 카테고리
344 label_issue_category_new: 새 카테고리
345 label_custom_field: 사용자 정의 항목
346 label_custom_field_plural: 사용자 정의 항목
347 label_custom_field_new: 새 사용자 정의 항목
348 label_enumerations: 코드값 설정
349 label_enumeration_new: 새 코드값
350 label_information: 정보
351 label_information_plural: 정보
352 label_please_login: 로그인하세요.
353 label_register: 등록
354 label_password_lost: 비밀번호 찾기
355 label_home: 초기화면
356 label_my_page: 내페이지
357 label_my_account: 내계정
358 label_my_projects: 나의 프로젝트
359 label_administration: 관리자
360 label_login: 로그인
361 label_logout: 로그아웃
362 label_help: 도움말
363 label_reported_issues: 보고한 일감
364 label_assigned_to_me_issues: 나에게 할당된 일감
365 label_last_login: 최종 접속
366 label_registered_on: 등록시각
367 label_activity: 작업내역
368 label_new: 새로 만들기
369 label_logged_as: '로그인계정:'
370 label_environment: 환경
371 label_authentication: 인증설정
372 label_auth_source: 인증 모드
373 label_auth_source_new: 신규 인증 모드
374 label_auth_source_plural: 인증 모드
375 label_subproject_plural: 서브 프로젝트
376 label_min_max_length: 최소 - 최대 길이
377 label_list: 리스트
378 label_date: 날짜
379 label_integer: 정수
380 label_float: 부동상수
381 label_boolean: 부울린
382 label_string: 문자열
383 label_text: 텍스트
384 label_attribute: 속성
385 label_attribute_plural: 속성
386 label_download: "{{count}} 다운로드"
387 label_download_plural: "{{count}} 다운로드"
388 label_no_data: 데이터가 없습니다.
389 label_change_status: 상태 변경
390 label_history: 이력
391 label_attachment: 파일
392 label_attachment_new: 파일추가
393 label_attachment_delete: 파일삭제
394 label_attachment_plural: 관련파일
395 label_report: 보고서
396 label_report_plural: 보고서
397 label_news: 뉴스
398 label_news_new: 새 뉴스
399 label_news_plural: 뉴스
400 label_news_latest: 최근 뉴스
401 label_news_view_all: 모든 뉴스
402 label_change_log: 변경 로그
403 label_settings: 설정
404 label_overview: 개요
405 label_version: 버전
406 label_version_new: 새 버전
407 label_version_plural: 버전
408 label_confirmation: 확인
409 label_export_to: 내보내기
410 label_read: 읽기...
411 label_public_projects: 공개된 프로젝트
412 label_open_issues: 진행중
413 label_open_issues_plural: 진행중
414 label_closed_issues: 완료됨
415 label_closed_issues_plural: 완료됨
416 label_x_open_issues_abbr_on_total:
417 zero: 0 open / {{total}}
418 one: 1 open / {{total}}
419 other: "{{count}} open / {{total}}"
420 label_x_open_issues_abbr:
421 zero: 0 open
422 one: 1 open
423 other: "{{count}} open"
424 label_x_closed_issues_abbr:
425 zero: 0 closed
426 one: 1 closed
427 other: "{{count}} closed"
428 label_total: 합계
429 label_permissions: 허가권한
430 label_current_status: 일감 상태
431 label_new_statuses_allowed: 허용되는 일감 상태
432 label_all: 모두
433 label_none: 없음
434 label_next: 다음
435 label_previous: 이전
436 label_used_by: 사용됨
437 label_details: 자세히
438 label_add_note: 일감덧글 추가
439 label_per_page: 페이지별
440 label_calendar: 달력
441 label_months_from: 개월 동안 | 다음부터
442 label_gantt: Gantt 챠트
443 label_internal: 내부
444 label_last_changes: "지난 변경사항 {{count}} 건"
445 label_change_view_all: 모든 변경 내역 보기
446 label_personalize_page: 입맛대로 구성하기
447 label_comment: 댓글
448 label_comment_plural: 댓글
449 label_x_comments:
450 zero: no comments
451 one: 1 comment
452 other: "{{count}} comments"
453 label_comment_add: 댓글 추가
454 label_comment_added: 댓글이 추가되었습니다.
455 label_comment_delete: 댓글 삭제
456 label_query: 사용자 검색조건
457 label_query_plural: 사용자 검색조건
458 label_query_new: 새 사용자 검색조건
459 label_filter_add: 필터 추가
460 label_filter_plural: 필터
461 label_equals: 이다
462 label_not_equals: 아니다
463 label_in_less_than: 이내
464 label_in_more_than: 이후
465 label_in: 이내
466 label_today: 오늘
467 label_this_week: 이번주
468 label_less_than_ago: 이전
469 label_more_than_ago: 이후
470 label_ago: 일 전
471 label_contains: 포함되는 키워드
472 label_not_contains: 포함하지 않는 키워드
473 label_day_plural:
474 label_repository: 저장소
475 label_browse: 저장소 살피기
476 label_modification: "{{count}} 변경"
477 label_modification_plural: "{{count}} 변경"
478 label_revision: 개정판
479 label_revision_plural: 개정판
480 label_added: 추가됨
481 label_modified: 변경됨
482 label_deleted: 삭제됨
483 label_latest_revision: 최근 개정판
484 label_latest_revision_plural: 최근 개정판
485 label_view_revisions: 개정판 보기
486 label_max_size: 최대 크기
487 label_sort_highest: 최상단으로
488 label_sort_higher: 위로
489 label_sort_lower: 아래로
490 label_sort_lowest: 최하단으로
491 label_roadmap: 로드맵
492 label_roadmap_due_in: "기한 {{value}}"
493 label_roadmap_overdue: "{{value}} 지연"
494 label_roadmap_no_issues: 이 버전에 해당하는 일감 없음
495 label_search: 검색
496 label_result_plural: 결과
497 label_all_words: 모든 단어
498 label_wiki: 위키
499 label_wiki_edit: 위키 편집
500 label_wiki_edit_plural: 위키 편집
501 label_wiki_page: 위키
502 label_wiki_page_plural: 위키
503 label_index_by_title: 제목별 색인
504 label_index_by_date: 날짜별 색인
505 label_current_version: 현재 버전
506 label_preview: 미리보기
507 label_feed_plural: 피드(Feeds)
508 label_changes_details: 모든 상세 변경 내역
509 label_issue_tracking: 일감 추적
510 label_spent_time: 작업 시간
511 label_f_hour: "{{value}} 시간"
512 label_f_hour_plural: "{{value}} 시간"
513 label_time_tracking: 시간추적
514 label_change_plural: 변경사항들
515 label_statistics: 통계
516 label_commits_per_month: 월별 커밋 내역
517 label_commits_per_author: 아이디별 커밋 내역
518 label_view_diff: 차이점 보기
519 label_diff_inline: 한줄로
520 label_diff_side_by_side: 두줄로
521 label_options: 옵션
522 label_copy_workflow_from: 워크플로우를 복사해올 일감유형
523 label_permissions_report: 권한 보고서
524 label_watched_issues: 지켜보고 있는 일감
525 label_related_issues: 연결된 일감
526 label_applied_status: 적용된 상태
527 label_loading: 읽는 중...
528 label_relation_new: 새 관계
529 label_relation_delete: 관계 지우기
530 label_relates_to: 다음 일감과 관련되어 있음
531 label_duplicates: 다음 일감과 중복됨.
532 label_blocks: 다음 일감이 해결을 막고 있음.
533 label_blocked_by: 막고 있는 일감
534 label_precedes: 다음 일감보다 앞서서 처리해야 함.
535 label_follows: 먼저 처리해야할 일감
536 label_end_to_start: end to start
537 label_end_to_end: end to end
538 label_start_to_start: start to start
539 label_start_to_end: start to end
540 label_stay_logged_in: 로그인 유지
541 label_disabled: 비활성화
542 label_show_completed_versions: 완료된 버전 보기
543 label_me:
544 label_board: 게시판
545 label_board_new: 새 게시판
546 label_board_plural: 게시판
547 label_topic_plural: 주제
548 label_message_plural: 관련글
549 label_message_last: 마지막 글
550 label_message_new: 새글쓰기
551 label_reply_plural: 답글
552 label_send_information: 사용자에게 계정정보를 보냄
553 label_year:
554 label_month:
555 label_week:
556 label_date_from: '기간:'
557 label_date_to: ' ~ '
558 label_language_based: 언어설정에 따름
559 label_sort_by: "정렬방법({{value}})"
560 label_send_test_email: 테스트 메일 보내기
561 label_feeds_access_key_created_on: "RSS에 접근가능한 열쇠(key)가 {{value}} 이전에 생성 "
562 label_module_plural: 모듈
563 label_added_time_by: "{{author}}이(가) {{age}} 전에 추가함"
564 label_updated_time: "{{value}} 전에 수정됨"
565 label_jump_to_a_project: 다른 프로젝트로 이동하기
566 label_file_plural: 파일
567 label_changeset_plural: 변경묶음
568 label_default_columns: 기본 컬럼
569 label_no_change_option: (수정 안함)
570 label_bulk_edit_selected_issues: 선택된 일감들을 한꺼번에 수정하기
571 label_theme: 테마
572 label_default: 기본
573 label_search_titles_only: 제목에서만 찾기
574 label_user_mail_option_all: "내가 속한 프로젝트로들부터 모든 메일 받기"
575 label_user_mail_option_selected: "선택한 프로젝트들로부터 모든 메일 받기.."
576 label_user_mail_option_none: "내가 속하거나 감시 중인 사항에 대해서만"
577
578 button_login: 로그인
579 button_submit: 확인
580 button_save: 저장
581 button_check_all: 모두선택
582 button_uncheck_all: 선택해제
583 button_delete: 삭제
584 button_create: 완료
585 button_test: 테스트
586 button_edit: 편집
587 button_add: 추가
588 button_change: 변경
589 button_apply: 적용
590 button_clear: 초기화
591 button_lock: 잠금
592 button_unlock: 잠금해제
593 button_download: 다운로드
594 button_list: 목록
595 button_view: 보기
596 button_move: 이동
597 button_back: 뒤로
598 button_cancel: 취소
599 button_activate: 활성화
600 button_sort: 정렬
601 button_log_time: 작업시간 기록
602 button_rollback: 이 버전으로 롤백
603 button_watch: 지켜보기
604 button_unwatch: 관심끄기
605 button_reply: 답글
606 button_archive: 잠금보관
607 button_unarchive: 잠금보관해제
608 button_reset: 리셋
609 button_rename: 이름변경
610
611 status_active: 사용중
612 status_registered: 등록대기
613 status_locked: 잠김
614
615 text_select_mail_notifications: 알림메일이 필요한 작업을 선택하세요.
616 text_regexp_info: 예) ^[A-Z0-9]+$
617 text_min_max_length_info: 0 는 제한이 없음을 의미함
618 text_project_destroy_confirmation: 이 프로젝트를 삭제하고 모든 데이터를 지우시겠습니까?
619 text_workflow_edit: 워크플로를 수정하기 위해서 역할과 일감유형을 선택하세요.
620 text_are_you_sure: 계속 진행 하시겠습니까?
621 text_journal_changed: "{{old}}에서 {{new}}(으)로 변경"
622 text_journal_set_to: " {{value}}로 설정"
623 text_journal_deleted: 삭제됨
624 text_tip_task_begin_day: 오늘 시작하는 업무(task)
625 text_tip_task_end_day: 오늘 종료하는 업무(task)
626 text_tip_task_begin_end_day: 오늘 시작하고 종료하는 업무(task)
627 text_project_identifier_info: '영문 소문자 (a-z), 숫자 대쉬(-) 가능.<br />저장된후에는 식별자 변경 불가능.'
628 text_caracters_maximum: "최대 {{count}} 글자 가능."
629 text_length_between: "{{min}} 에서 {{max}} 글자"
630 text_tracker_no_workflow: 이 추적타입(tracker)에 워크플로우가 정의되지 않았습니다.
631 text_unallowed_characters: 허용되지 않는 문자열
632 text_comma_separated: 복수의 값들이 허용됩니다.(구분자 ,)
633 text_issues_ref_in_commit_messages: 커밋메시지에서 일감을 참조하거나 해결하기
634 text_issue_added: "Issue {{id}} has been reported by {{author}}."
635 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
636 text_wiki_destroy_confirmation: 이 위키와 모든 내용을 지우시겠습니까?
637 text_issue_category_destroy_question: "일부 일감들({{count}}개)이 카테고리에 할당되어 있습니다. 어떻게 하시겠습니까?"
638 text_issue_category_destroy_assignments: 카테고리 할당 지우기
639 text_issue_category_reassign_to: 일감을 이 카테고리에 다시 할당하기
640 text_user_mail_option: "선택하지 않은 프로젝트에서도, 모니터링 중이거나 속해있는 사항(일감을 발행했거나 할당된 경우)이 있으면 알림메일을 받게 됩니다."
641
642 default_role_manager: 관리자
643 default_role_developper: 개발자
644 default_role_reporter: 보고자
645 default_tracker_bug: 버그
646 default_tracker_feature: 새기능
647 default_tracker_support: 지원
648 default_issue_status_new: 새로 만들기
649 default_issue_status_assigned: 확인
650 default_issue_status_resolved: 해결
651 default_issue_status_feedback: 피드백
652 default_issue_status_closed: 완료
653 default_issue_status_rejected: 재처리
654 default_doc_category_user: 사용자 문서
655 default_doc_category_tech: 기술 문서
656 default_priority_low: 낮음
657 default_priority_normal: 보통
658 default_priority_high: 높음
659 default_priority_urgent: 긴급
660 default_priority_immediate: 즉시
661 default_activity_design: 설계
662 default_activity_development: 개발
663
664 enumeration_issue_priorities: 일감 우선순위
665 enumeration_doc_categories: 문서 카테고리
666 enumeration_activities: 작업분류(시간추적)
667 button_copy: 복사
668 mail_body_account_information_external: "레드마인에 로그인할 {{value}} 계정을 사용하실 있습니다."
669 button_change_password: 비밀번호 변경
670 label_nobody: nobody
671 setting_protocol: 프로토콜
672 mail_body_account_information: 계정 정보
673 label_user_mail_no_self_notified: "내가 만든 변경사항들에 대해서는 알림메일을 받지 않습니다."
674 setting_time_format: 시간 형식
675 label_registration_activation_by_email: 메일로 계정을 활성화하기
676 mail_subject_account_activation_request: "레드마인 계정 활성화 요청 ({{value}})"
677 mail_body_account_activation_request: "새 계정({{value}})이 등록되었습니다. 관리자님의 승인을 기다리고 있습니다.:'"
678 label_registration_automatic_activation: 자동 계정 활성화
679 label_registration_manual_activation: 수동 계정 활성화
680 notice_account_pending: "계정이 만들어 졌습니다. 관리자의 승인이 있을 때까지 기다려야 합니다."
681 field_time_zone: 타임존
682 text_caracters_minimum: "최소한 {{count}} 글자 이상이어야 합니다."
683 setting_bcc_recipients: 참조자들을 bcc로 숨기기
684 button_annotate: 주석달기(annotate)
685 label_issues_by: "일감분류 방식 {{value}}"
686 field_searchable: 검색가능
687 label_display_per_page: "페이지당: {{value}}'"
688 setting_per_page_options: 페이지당 표시할 객체 수
689 label_age: 마지막 수정일
690 notice_default_data_loaded: 기본 설정을 성공적으로 로드하였습니다.
691 text_load_default_configuration: 기본 설정을 로딩하기
692 text_no_configuration_data: "역할, 일감 타입, 일감 상태들과 워크플로가 아직 설정되지 않았습니다.\n기본 설정을 로딩하는 것을 권장합니다. 로드된 후에 수정할 있습니다."
693 error_can_t_load_default_data: "기본 설정을 로드할 없습니다.: {{value}}"
694 button_update: 수정
695 label_change_properties: 속성 변경
696 label_general: 일반
697 label_repository_plural: 저장소들
698 label_associated_revisions: 관련된 개정판들
699 setting_user_format: 사용자 표시 형식
700 text_status_changed_by_changeset: "변경묶음 {{value}}에서 적용됨."
701 label_more: 자세히
702 text_issues_destroy_confirmation: '선택한 일감을 정말로 삭제하시겠습니까?'
703 label_scm: 형상관리시스템(SCM)
704 text_select_project_modules: '이 프로젝트에서 활성화시킬 모듈을 선택하세요:'
705 label_issue_added: 일감이 추가됨
706 label_issue_updated: 일감이 고쳐짐
707 label_document_added: 문서가 추가됨
708 label_message_posted: 메시지가 추가됨
709 label_file_added: 파일이 추가됨
710 label_news_added: 뉴스가 추가됨
711 project_module_boards: 게시판
712 project_module_issue_tracking: 일감관리
713 project_module_wiki: 위키
714 project_module_files: 관련파일
715 project_module_documents: 문서
716 project_module_repository: 저장소
717 project_module_news: 뉴스
718 project_module_time_tracking: 시간추적
719 text_file_repository_writable: 파일 저장소 쓰기 가능
720 text_default_administrator_account_changed: 기본 관리자 계정이 변경되었습니다.
721 text_rmagick_available: RMagick 사용가능(옵션)
722 button_configure: 설정
723 label_plugins: 플러그인
724 label_ldap_authentication: LDAP 인증
725 label_downloads_abbr: D/L
726 label_add_another_file: 다른 파일 추가
727 label_this_month: 이번 달
728 text_destroy_time_entries_question: 삭제하려는 일감에 %.02f 시간이 보고되어 있습니다. 어떻게 하시겠습니까?
729 label_last_n_days: "지난 {{count}} 일"
730 label_all_time: 모든 시간
731 error_issue_not_found_in_project: '일감이 없거나 프로젝트의 것이 아닙니다.'
732 label_this_year: 올해
733 text_assign_time_entries_to_project: 보고된 시간을 프로젝트에 할당하기
734 label_date_range: 날짜 범위
735 label_last_week: 지난 주
736 label_yesterday: 어제
737 label_optional_description: 부가적인 설명
738 label_last_month: 지난 달
739 text_destroy_time_entries: 보고된 시간을 삭제하기
740 text_reassign_time_entries: '이 알림에 보고된 시간을 재할당하기:'
741 setting_activity_days_default: 프로젝트 작업내역에 보여줄 날수
742 label_chronological_order: 시간 순으로 정렬
743 field_comments_sorting: 히스토리 정렬 설정
744 label_reverse_chronological_order: 시간 역순으로 정렬
745 label_preferences: 설정
746 setting_display_subprojects_issues: 하위 프로젝트의 일감을 최상위 프로젝트에서 표시
747 label_overall_activity: 전체 작업내역
748 setting_default_projects_public: 새 프로젝트를 공개로 설정
749 error_scm_annotate: "항목이 없거나 주석을 없습니다."
750 label_planning: 프로젝트계획(Planning)
751 text_subprojects_destroy_warning: "서브프로젝트({{value}})가 자동으로 지워질 것입니다.'"
752 label_and_its_subprojects: "{{value}}와 서브프로젝트들"
753 mail_body_reminder: "님에게 할당된 {{count}}개의 일감들을 다음 {{days}}일 안으로 마쳐야 합니다.:"
754 mail_subject_reminder: "내일까지 마쳐야할 일감 {{count}}개"
755 text_user_wrote: "{{value}}의 덧글:'"
756 label_duplicated_by: 중복된 일감
757 setting_enabled_scm: 허용할 SCM
758 text_enumeration_category_reassign_to: '새로운 값을 설정:'
759 text_enumeration_destroy_question: "{{count}} 개의 일감이 값을 사용하고 있습니다.'"
760 label_incoming_emails: 수신 메일 설정
761 label_generate_key: 키 생성
762 setting_mail_handler_api_enabled: 수신 메일에 WS 를 허용
763 setting_mail_handler_api_key: API 키
764 text_email_delivery_not_configured: "이메일 전달이 설정되지 않았습니다. 그래서 알림이 비활성화되었습니다.\n SMTP서버를 config/email.yml에서 설정하고 어플리케이션을 다시 시작하십시오. 그러면 동작합니다."
765 field_parent_title: 상위 제목
766 label_issue_watchers: 일감지킴이 설정
767 setting_commit_logs_encoding: 저장소 커밋 메시지 인코딩
768 button_quote: 댓글달기
769 setting_sequential_project_identifiers: 프로젝트 식별자를 순차적으로 생성
770 notice_unable_delete_version: 삭제 할 수 없는 버전 입니다.
771 label_renamed: 이름바뀜
772 label_copied: 복사됨
773 setting_plain_text_mail: 테스트만(HTML없음)
774 permission_view_files: 파일보기
775 permission_edit_issues: 일감 편집
776 permission_edit_own_time_entries: 내 시간로그 편집
777 permission_manage_public_queries: 공용 질의 관리
778 permission_add_issues: 일감 추가
779 permission_log_time: 소요시간 기록
780 permission_view_changesets: 변경묶음보기
781 permission_view_time_entries: 소요시간 보기
782 permission_manage_versions: 버전 관리
783 permission_manage_wiki: 위키 관리
784 permission_manage_categories: 일감 카테고리 관리
785 permission_protect_wiki_pages: 프로젝트 위키 페이지
786 permission_comment_news: 뉴스에 코멘트달기
787 permission_delete_messages: 메시지 삭제
788 permission_select_project_modules: 프로젝트 모듈 선택
789 permission_manage_documents: 문서 관리
790 permission_edit_wiki_pages: 위키 페이지 편집
791 permission_add_issue_watchers: 일감지킴이 추가
792 permission_view_gantt: Gantt차트 보기
793 permission_move_issues: 일감 이동
794 permission_manage_issue_relations: 일감 관계 관리
795 permission_delete_wiki_pages: 위치 페이지 삭제
796 permission_manage_boards: 게시판 관리
797 permission_delete_wiki_pages_attachments: 첨부파일 삭제
798 permission_view_wiki_edits: 위키 기록 보기
799 permission_add_messages: 메시지 추가
800 permission_view_messages: 메시지 보기
801 permission_manage_files: 파일관리
802 permission_edit_issue_notes: 덧글 편집
803 permission_manage_news: 뉴스 관리
804 permission_view_calendar: 달력 보기
805 permission_manage_members: 멤버 관리
806 permission_edit_messages: 메시지 편집
807 permission_delete_issues: 일감 삭제
808 permission_view_issue_watchers: 일감지킴이 보기
809 permission_manage_repository: 저장소 관리
810 permission_commit_access: 변경로그 보기
811 permission_browse_repository: 저장소 둘러보기
812 permission_view_documents: 문서 보기
813 permission_edit_project: 프로젝트 편집
814 permission_add_issue_notes: 덧글 추가
815 permission_save_queries: 쿼리 저장
816 permission_view_wiki_pages: 위키 보기
817 permission_rename_wiki_pages: 위키 페이지 이름변경
818 permission_edit_time_entries: 시간기록 편집
819 permission_edit_own_issue_notes: 내 덧글 편집
820 setting_gravatar_enabled: 그라바타 사용자 아이콘 쓰기
821 label_example:
822 text_repository_usernames_mapping: "저장소 로그에서 발견된 사용자에 레드마인 사용자를 업데이트할때 선택합니다.\n레드마인과 저장소의 이름이나 이메일이 같은 사용자가 자동으로 연결됩니다."
823 permission_edit_own_messages: 자기 메시지 편집
824 permission_delete_own_messages: 자기 메시지 삭제
825 label_user_activity: "{{value}}의 작업내역"
826 label_updated_time_by: "{{author}}가 {{age}} 전에 변경"
827 text_diff_truncated: '... 차이점은 표시할 있는 최대 줄수를 초과해서 차이점은 잘렸습니다.'
828 setting_diff_max_lines_displayed: 차이점보기에 표시할 최대 줄수
829 text_plugin_assets_writable: Plugin assets directory writable
830 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
831 button_create_and_continue: Create and continue
832 text_custom_field_possible_values_info: 'One line for each value'
833 label_display: Display
834 field_editable: Editable
835 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
@@ -19,6 +19,13 require 'uri'
19 19 require 'cgi'
20 20
21 21 class ApplicationController < ActionController::Base
22 include Redmine::I18n
23
24 # In case the cookie store secret changes
25 rescue_from CGI::Session::CookieStore::TamperedWithCookie do |exception|
26 render :text => 'Your session was invalid and has been reset. Please, reload this page.', :status => 500
27 end
28
22 29 layout 'base'
23 30
24 31 before_filter :user_setup, :check_if_login_required, :set_localization
@@ -64,19 +71,17 class ApplicationController < ActionController::Base
64 71 end
65 72
66 73 def set_localization
67 User.current.language = nil unless User.current.logged?
68 lang = begin
69 if !User.current.language.blank? && GLoc.valid_language?(User.current.language)
70 User.current.language
71 elsif request.env['HTTP_ACCEPT_LANGUAGE']
74 lang = nil
75 if User.current.logged?
76 lang = find_language(User.current.language)
77 end
78 if lang.nil? && request.env['HTTP_ACCEPT_LANGUAGE']
72 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))
74 User.current.language = accept_lang
80 if !accept_lang.blank?
81 lang = find_language(accept_lang) || find_language(accept_lang.split('-').first)
75 82 end
76 83 end
77 rescue
78 nil
79 end || Setting.default_language
84 lang ||= Setting.default_language
80 85 set_language_if_valid(lang)
81 86 end
82 87
@@ -152,7 +157,7 class ApplicationController < ActionController::Base
152 157
153 158 def render_error(msg)
154 159 flash.now[:error] = msg
155 render :nothing => true, :layout => !request.xhr?, :status => 500
160 render :text => '', :layout => !request.xhr?, :status => 500
156 161 end
157 162
158 163 def render_feed(items, options={})
@@ -225,6 +230,8 class ApplicationController < ActionController::Base
225 230 tmp.collect!{|val, q| val}
226 231 end
227 232 return tmp
233 rescue
234 nil
228 235 end
229 236
230 237 # Returns a string that can be used as filename value in Content-Disposition header
@@ -258,7 +258,9 class IssuesController < ApplicationController
258 258 if unsaved_issue_ids.empty?
259 259 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
260 260 else
261 flash[:error] = l(:notice_failed_to_save_issues, unsaved_issue_ids.size, @issues.size, '#' + unsaved_issue_ids.join(', #'))
261 flash[:error] = l(:notice_failed_to_save_issues, :count => unsaved_issue_ids.size,
262 :total => @issues.size,
263 :ids => '#' + unsaved_issue_ids.join(', #'))
262 264 end
263 265 redirect_to(params[:back_to] || {:controller => 'issues', :action => 'index', :project_id => @project})
264 266 return
@@ -291,7 +293,9 class IssuesController < ApplicationController
291 293 if unsaved_issue_ids.empty?
292 294 flash[:notice] = l(:notice_successful_update) unless @issues.empty?
293 295 else
294 flash[:error] = l(:notice_failed_to_save_issues, unsaved_issue_ids.size, @issues.size, '#' + unsaved_issue_ids.join(', #'))
296 flash[:error] = l(:notice_failed_to_save_issues, :count => unsaved_issue_ids.size,
297 :total => @issues.size,
298 :ids => '#' + unsaved_issue_ids.join(', #'))
295 299 end
296 300 redirect_to :controller => 'issues', :action => 'index', :project_id => @project
297 301 return
@@ -238,8 +238,7 private
238 238 changes_by_day.each {|c| changes_by_month[c.first.to_date.months_ago] += c.last }
239 239
240 240 fields = []
241 month_names = l(:actionview_datehelper_select_month_names_abbr).split(',')
242 12.times {|m| fields << month_names[((Date.today.month - 1 - m) % 12)]}
241 12.times {|m| fields << month_name(((Date.today.month - 1 - m) % 12) + 1)}
243 242
244 243 graph = SVG::Graph::Bar.new(
245 244 :height => 300,
@@ -22,6 +22,7 require 'cgi'
22 22
23 23 module ApplicationHelper
24 24 include Redmine::WikiFormatting::Macros::Definitions
25 include Redmine::I18n
25 26 include GravatarHelper::PublicMethods
26 27
27 28 extend Forwardable
@@ -90,25 +91,8 module ApplicationHelper
90 91 link_to name, {}, html_options
91 92 end
92 93
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
110 94 def format_activity_title(text)
111 h(truncate_single_line(text, 100))
95 h(truncate_single_line(text, :length => 100))
112 96 end
113 97
114 98 def format_activity_day(date)
@@ -116,14 +100,7 module ApplicationHelper
116 100 end
117 101
118 102 def format_activity_description(text)
119 h(truncate(text.to_s, 120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...')).gsub(/[\r\n]+/, "<br />")
120 end
121
122 def distance_of_date_in_words(from_date, to_date = 0)
123 from_date = from_date.to_date if from_date.respond_to?(:to_date)
124 to_date = to_date.to_date if to_date.respond_to?(:to_date)
125 distance_in_days = (to_date - from_date).abs
126 lwr(:actionview_datehelper_time_in_words_day, distance_in_days)
103 h(truncate(text.to_s, :length => 120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...')).gsub(/[\r\n]+/, "<br />")
127 104 end
128 105
129 106 def due_date_distance_in_words(date)
@@ -235,20 +212,7 module ApplicationHelper
235 212 {:controller => 'projects', :action => 'activity', :id => @project, :from => created.to_date},
236 213 :title => format_time(created))
237 214 author_tag = (author.is_a?(User) && !author.anonymous?) ? link_to(h(author), :controller => 'account', :action => 'show', :id => author) : h(author || 'Anonymous')
238 l(options[:label] || :label_added_time_by, author_tag, time_tag)
239 end
240
241 def l_or_humanize(s, options={})
242 k = "#{options[:prefix]}#{s}".to_sym
243 l_has_string?(k) ? l(k) : s.to_s.humanize
244 end
245
246 def day_name(day)
247 l(:general_day_names).split(',')[day-1]
248 end
249
250 def month_name(month)
251 l(:actionview_datehelper_select_month_names).split(',')[month-1]
215 l(options[:label] || :label_added_time_by, :author => author_tag, :age => time_tag)
252 216 end
253 217
254 218 def syntax_highlight(name, content)
@@ -308,9 +272,9 module ApplicationHelper
308 272 end
309 273
310 274 def other_formats_links(&block)
311 concat('<p class="other-formats">' + l(:label_export_to), block.binding)
275 concat('<p class="other-formats">' + l(:label_export_to))
312 276 yield Redmine::Views::OtherFormatsBuilder.new(self)
313 concat('</p>', block.binding)
277 concat('</p>')
314 278 end
315 279
316 280 def page_header_title
@@ -479,7 +443,7 module ApplicationHelper
479 443 if project && (changeset = project.changesets.find_by_revision(oid))
480 444 link = link_to("r#{oid}", {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => oid},
481 445 :class => 'changeset',
482 :title => truncate_single_line(changeset.comments, 100))
446 :title => truncate_single_line(changeset.comments, :length => 100))
483 447 end
484 448 elsif sep == '#'
485 449 oid = oid.to_i
@@ -488,7 +452,7 module ApplicationHelper
488 452 if issue = Issue.find_by_id(oid, :include => [:project, :status], :conditions => Project.visible_by(User.current))
489 453 link = link_to("##{oid}", {:only_path => only_path, :controller => 'issues', :action => 'show', :id => oid},
490 454 :class => (issue.closed? ? 'issue closed' : 'issue'),
491 :title => "#{truncate(issue.subject, 100)} (#{issue.status.name})")
455 :title => "#{truncate(issue.subject, :length => 100)} (#{issue.status.name})")
492 456 link = content_tag('del', link) if issue.closed?
493 457 end
494 458 when 'document'
@@ -503,7 +467,7 module ApplicationHelper
503 467 end
504 468 when 'message'
505 469 if message = Message.find_by_id(oid, :include => [:parent, {:board => :project}], :conditions => Project.visible_by(User.current))
506 link = link_to h(truncate(message.subject, 60)), {:only_path => only_path,
470 link = link_to h(truncate(message.subject, :length => 60)), {:only_path => only_path,
507 471 :controller => 'messages',
508 472 :action => 'show',
509 473 :board_id => message.board,
@@ -530,7 +494,7 module ApplicationHelper
530 494 if project && (changeset = project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
531 495 link = link_to h("#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => changeset.revision},
532 496 :class => 'changeset',
533 :title => truncate_single_line(changeset.comments, 100)
497 :title => truncate_single_line(changeset.comments, :length => 100)
534 498 end
535 499 when 'source', 'export'
536 500 if project && project.repository
@@ -565,46 +529,9 module ApplicationHelper
565 529 gsub(/([^\n]\n)(?=[^\n])/, '\1<br />') # 1 newline -> br
566 530 end
567 531
568 def error_messages_for(object_name, options = {})
569 options = options.symbolize_keys
570 object = instance_variable_get("@#{object_name}")
571 if object && !object.errors.empty?
572 # build full_messages here with controller current language
573 full_messages = []
574 object.errors.each do |attr, msg|
575 next if msg.nil?
576 msg = [msg] unless msg.is_a?(Array)
577 if attr == "base"
578 full_messages << l(*msg)
579 else
580 full_messages << "&#171; " + (l_has_string?("field_" + attr) ? l("field_" + attr) : object.class.human_attribute_name(attr)) + " &#187; " + l(*msg) unless attr == "custom_values"
581 end
582 end
583 # retrieve custom values error messages
584 if object.errors[:custom_values]
585 object.custom_values.each do |v|
586 v.errors.each do |attr, msg|
587 next if msg.nil?
588 msg = [msg] unless msg.is_a?(Array)
589 full_messages << "&#171; " + v.custom_field.name + " &#187; " + l(*msg)
590 end
591 end
592 end
593 content_tag("div",
594 content_tag(
595 options[:header_tag] || "span", lwr(:gui_validation_error, full_messages.length) + ":"
596 ) +
597 content_tag("ul", full_messages.collect { |msg| content_tag("li", msg) }),
598 "id" => options[:id] || "errorExplanation", "class" => options[:class] || "errorExplanation"
599 )
600 else
601 ""
602 end
603 end
604
605 532 def lang_options_for_select(blank=true)
606 533 (blank ? [["(auto)", ""]] : []) +
607 GLoc.valid_languages.collect{|lang| [ ll(lang.to_s, :general_lang_name), lang.to_s]}.sort{|x,y| x.last <=> y.last }
534 valid_languages.collect{|lang| [ ll(lang.to_s, :general_lang_name), lang.to_s]}.sort{|x,y| x.last <=> y.last }
608 535 end
609 536
610 537 def label_tag_for(name, option_tags = nil, options = {})
@@ -119,7 +119,7 module IssuesHelper
119 119 case detail.property
120 120 when 'attr', 'cf'
121 121 if !detail.old_value.blank?
122 label + " " + l(:text_journal_changed, old_value, value)
122 label + " " + l(:text_journal_changed, :old => old_value, :new => value)
123 123 else
124 124 label + " " + l(:text_journal_set_to, value)
125 125 end
@@ -19,7 +19,7 module MessagesHelper
19 19
20 20 def link_to_message(message)
21 21 return '' unless message
22 link_to h(truncate(message.subject, 60)), :controller => 'messages',
22 link_to h(truncate(message.subject, :length => 60)), :controller => 'messages',
23 23 :action => 'show',
24 24 :board_id => message.board_id,
25 25 :id => message.root,
@@ -22,8 +22,8 module SettingsHelper
22 22 {:name => 'authentication', :partial => 'settings/authentication', :label => :label_authentication},
23 23 {:name => 'projects', :partial => 'settings/projects', :label => :label_project_plural},
24 24 {:name => 'issues', :partial => 'settings/issues', :label => :label_issue_tracking},
25 {:name => 'notifications', :partial => 'settings/notifications', :label => l(:field_mail_notification)},
26 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => l(:label_incoming_emails)},
25 {:name => 'notifications', :partial => 'settings/notifications', :label => :field_mail_notification},
26 {:name => 'mail_handler', :partial => 'settings/mail_handler', :label => :label_incoming_emails},
27 27 {:name => 'repositories', :partial => 'settings/repositories', :label => :label_repository_plural}
28 28 ]
29 29 end
@@ -109,7 +109,7 class Changeset < ActiveRecord::Base
109 109 if self.scmid && (! (csettext =~ /^r[0-9]+$/))
110 110 csettext = "commit:\"#{self.scmid}\""
111 111 end
112 journal = issue.init_journal(user || User.anonymous, l(:text_status_changed_by_changeset, csettext))
112 journal = issue.init_journal(user || User.anonymous, ll(Setting.default_language, :text_status_changed_by_changeset, csettext))
113 113 issue.status = fix_status
114 114 issue.done_ratio = done_ratio if done_ratio
115 115 issue.save
@@ -48,14 +48,14 class CustomField < ActiveRecord::Base
48 48
49 49 def validate
50 50 if self.field_format == "list"
51 errors.add(:possible_values, :activerecord_error_blank) if self.possible_values.nil? || self.possible_values.empty?
52 errors.add(:possible_values, :activerecord_error_invalid) unless self.possible_values.is_a? Array
51 errors.add(:possible_values, :blank) if self.possible_values.nil? || self.possible_values.empty?
52 errors.add(:possible_values, :invalid) unless self.possible_values.is_a? Array
53 53 end
54 54
55 55 # validate default value
56 56 v = CustomValue.new(:custom_field => self.clone, :value => default_value, :customized => nil)
57 57 v.custom_field.is_required = false
58 errors.add(:default_value, :activerecord_error_invalid) unless v.valid?
58 errors.add(:default_value, :invalid) unless v.valid?
59 59 end
60 60
61 61 # Makes possible_values accept a multiline string
@@ -45,22 +45,22 class CustomValue < ActiveRecord::Base
45 45 protected
46 46 def validate
47 47 if value.blank?
48 errors.add(:value, :activerecord_error_blank) if custom_field.is_required? and value.blank?
48 errors.add(:value, :blank) if custom_field.is_required? and value.blank?
49 49 else
50 errors.add(:value, :activerecord_error_invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
51 errors.add(:value, :activerecord_error_too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length
52 errors.add(:value, :activerecord_error_too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
50 errors.add(:value, :invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
51 errors.add(:value, :too_short) if custom_field.min_length > 0 and value.length < custom_field.min_length
52 errors.add(:value, :too_long) if custom_field.max_length > 0 and value.length > custom_field.max_length
53 53
54 54 # Format specific validations
55 55 case custom_field.field_format
56 56 when 'int'
57 errors.add(:value, :activerecord_error_not_a_number) unless value =~ /^[+-]?\d+$/
57 errors.add(:value, :not_a_number) unless value =~ /^[+-]?\d+$/
58 58 when 'float'
59 begin; Kernel.Float(value); rescue; errors.add(:value, :activerecord_error_invalid) end
59 begin; Kernel.Float(value); rescue; errors.add(:value, :invalid) end
60 60 when 'date'
61 errors.add(:value, :activerecord_error_not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/
61 errors.add(:value, :not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/
62 62 when 'list'
63 errors.add(:value, :activerecord_error_inclusion) unless custom_field.possible_values.include?(value)
63 errors.add(:value, :inclusion) unless custom_field.possible_values.include?(value)
64 64 end
65 65 end
66 66 end
@@ -129,20 +129,20 class Issue < ActiveRecord::Base
129 129
130 130 def validate
131 131 if self.due_date.nil? && @attributes['due_date'] && !@attributes['due_date'].empty?
132 errors.add :due_date, :activerecord_error_not_a_date
132 errors.add :due_date, :not_a_date
133 133 end
134 134
135 135 if self.due_date and self.start_date and self.due_date < self.start_date
136 errors.add :due_date, :activerecord_error_greater_than_start_date
136 errors.add :due_date, :greater_than_start_date
137 137 end
138 138
139 139 if start_date && soonest_start && start_date < soonest_start
140 errors.add :start_date, :activerecord_error_invalid
140 errors.add :start_date, :invalid
141 141 end
142 142 end
143 143
144 144 def validate_on_create
145 errors.add :tracker_id, :activerecord_error_invalid unless project.trackers.include?(tracker)
145 errors.add :tracker_id, :invalid unless project.trackers.include?(tracker)
146 146 end
147 147
148 148 def before_create
@@ -39,9 +39,9 class IssueRelation < ActiveRecord::Base
39 39
40 40 def validate
41 41 if issue_from && issue_to
42 errors.add :issue_to_id, :activerecord_error_invalid if issue_from_id == issue_to_id
43 errors.add :issue_to_id, :activerecord_error_not_same_project unless issue_from.project_id == issue_to.project_id || Setting.cross_project_issue_relations?
44 errors.add_to_base :activerecord_error_circular_dependency if issue_to.all_dependent_issues.include? issue_from
42 errors.add :issue_to_id, :invalid if issue_from_id == issue_to_id
43 errors.add :issue_to_id, :not_same_project unless issue_from.project_id == issue_to.project_id || Setting.cross_project_issue_relations?
44 errors.add_to_base :circular_dependency if issue_to.all_dependent_issues.include? issue_from
45 45 end
46 46 end
47 47
@@ -236,4 +236,9 class MailHandler < ActionMailer::Base
236 236 end
237 237 @plain_text_body.strip!
238 238 end
239
240
241 def self.full_sanitizer
242 @full_sanitizer ||= HTML::FullSanitizer.new
243 end
239 244 end
@@ -21,6 +21,7 class Mailer < ActionMailer::Base
21 21 helper :custom_fields
22 22
23 23 include ActionController::UrlWriter
24 include Redmine::I18n
24 25
25 26 def issue_add(issue)
26 27 redmine_headers 'Project' => issue.project.identifier,
@@ -24,7 +24,7 class Member < ActiveRecord::Base
24 24 validates_uniqueness_of :user_id, :scope => :project_id
25 25
26 26 def validate
27 errors.add :role_id, :activerecord_error_invalid if role && !role.member?
27 errors.add :role_id, :invalid if role && !role.member?
28 28 end
29 29
30 30 def name
@@ -306,7 +306,7 class Project < ActiveRecord::Base
306 306
307 307 protected
308 308 def validate
309 errors.add(:identifier, :activerecord_error_invalid) if !identifier.blank? && identifier.match(/^\d*$/)
309 errors.add(:identifier, :invalid) if !identifier.blank? && identifier.match(/^\d*$/)
310 310 end
311 311
312 312 private
@@ -17,7 +17,7
17 17
18 18 class QueryColumn
19 19 attr_accessor :name, :sortable, :default_order
20 include GLoc
20 include Redmine::I18n
21 21
22 22 def initialize(name, options={})
23 23 self.name = name
@@ -26,7 +26,6 class QueryColumn
26 26 end
27 27
28 28 def caption
29 set_language_if_valid(User.current.language)
30 29 l("field_#{name}")
31 30 end
32 31 end
@@ -113,7 +112,6 class Query < ActiveRecord::Base
113 112 def initialize(attributes = nil)
114 113 super attributes
115 114 self.filters ||= { 'status_id' => {:operator => "o", :values => [""]} }
116 set_language_if_valid(User.current.language)
117 115 end
118 116
119 117 def after_initialize
@@ -123,7 +121,7 class Query < ActiveRecord::Base
123 121
124 122 def validate
125 123 filters.each_key do |field|
126 errors.add label_for(field), :activerecord_error_blank unless
124 errors.add label_for(field), :blank unless
127 125 # filter requires one or more values
128 126 (values_for(field) and !values_for(field).first.blank?) or
129 127 # filter doesn't require any value
@@ -25,7 +25,7 class Repository < ActiveRecord::Base
25 25 before_destroy :clear_changesets
26 26
27 27 # Checks if the SCM is enabled when creating a repository
28 validate_on_create { |r| r.errors.add(:type, :activerecord_error_invalid) unless Setting.enabled_scm.include?(r.class.name.demodulize) }
28 validate_on_create { |r| r.errors.add(:type, :invalid) unless Setting.enabled_scm.include?(r.class.name.demodulize) }
29 29
30 30 # Removes leading and trailing whitespace
31 31 def url=(arg)
@@ -26,13 +26,13 class TimeEntry < ActiveRecord::Base
26 26 attr_protected :project_id, :user_id, :tyear, :tmonth, :tweek
27 27
28 28 acts_as_customizable
29 acts_as_event :title => Proc.new {|o| "#{o.user}: #{lwr(:label_f_hour, o.hours)} (#{(o.issue || o.project).event_title})"},
29 acts_as_event :title => Proc.new {|o| "#{o.user}: #{l_hours(o.hours)} (#{(o.issue || o.project).event_title})"},
30 30 :url => Proc.new {|o| {:controller => 'timelog', :action => 'details', :project_id => o.project}},
31 31 :author => :user,
32 32 :description => :comments
33 33
34 34 validates_presence_of :user_id, :activity_id, :project_id, :hours, :spent_on
35 validates_numericality_of :hours, :allow_nil => true, :message => :activerecord_error_invalid
35 validates_numericality_of :hours, :allow_nil => true, :message => :invalid
36 36 validates_length_of :comments, :maximum => 255, :allow_nil => true
37 37
38 38 def after_initialize
@@ -48,9 +48,9 class TimeEntry < ActiveRecord::Base
48 48 end
49 49
50 50 def validate
51 errors.add :hours, :activerecord_error_invalid if hours && (hours < 0 || hours >= 1000)
52 errors.add :project_id, :activerecord_error_invalid if project.nil?
53 errors.add :issue_id, :activerecord_error_invalid if (issue_id && !issue) || (issue && project!=issue.project)
51 errors.add :hours, :invalid if hours && (hours < 0 || hours >= 1000)
52 errors.add :project_id, :invalid if project.nil?
53 errors.add :issue_id, :invalid if (issue_id && !issue) || (issue && project!=issue.project)
54 54 end
55 55
56 56 def hours=(h)
@@ -25,7 +25,7 class Version < ActiveRecord::Base
25 25 validates_presence_of :name
26 26 validates_uniqueness_of :name, :scope => [:project_id]
27 27 validates_length_of :name, :maximum => 60
28 validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => 'activerecord_error_not_a_date', :allow_nil => true
28 validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => :not_a_date, :allow_nil => true
29 29
30 30 def start_date
31 31 effective_date
@@ -25,6 +25,6 class Watcher < ActiveRecord::Base
25 25 protected
26 26
27 27 def validate
28 errors.add :user_id, :activerecord_error_invalid unless user.nil? || user.active?
28 errors.add :user_id, :invalid unless user.nil? || user.active?
29 29 end
30 30 end
@@ -129,9 +129,9 class WikiPage < ActiveRecord::Base
129 129 protected
130 130
131 131 def validate
132 errors.add(:parent_title, :activerecord_error_invalid) if !@parent_title.blank? && parent.nil?
133 errors.add(:parent_title, :activerecord_error_circular_dependency) if parent && (parent == self || parent.ancestors.include?(self))
134 errors.add(:parent_title, :activerecord_error_not_same_project) if parent && (parent.wiki_id != wiki_id)
132 errors.add(:parent_title, :invalid) if !@parent_title.blank? && parent.nil?
133 errors.add(:parent_title, :circular_dependency) if parent && (parent == self || parent.ancestors.include?(self))
134 errors.add(:parent_title, :not_same_project) if parent && (parent.wiki_id != wiki_id)
135 135 end
136 136 end
137 137
@@ -20,7 +20,7 while day <= calendar.enddt %>
20 20 image_tag('arrow_to.png')
21 21 end %>
22 22 <%= h("#{i.project} -") unless @project && @project == i.project %>
23 <%= link_to_issue i %>: <%= h(truncate(i.subject, 30)) %>
23 <%= link_to_issue i %>: <%= h(truncate(i.subject, :length => 30)) %>
24 24 <span class="tip"><%= render_issue_tooltip i %></span>
25 25 </div>
26 26 <% else %>
@@ -1,6 +1,6
1 1 xml.instruct!
2 2 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
3 xml.title truncate_single_line(@title, 100)
3 xml.title truncate_single_line(@title, :length => 100)
4 4 xml.link "rel" => "self", "href" => url_for(params.merge({:format => nil, :only_path => false}))
5 5 xml.link "rel" => "alternate", "href" => url_for(:controller => 'welcome', :only_path => false)
6 6 xml.id url_for(:controller => 'welcome', :only_path => false)
@@ -11,9 +11,9 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
11 11 xml.entry do
12 12 url = url_for(item.event_url(:only_path => false))
13 13 if @project
14 xml.title truncate_single_line(item.event_title, 100)
14 xml.title truncate_single_line(item.event_title, :length => 100)
15 15 else
16 xml.title truncate_single_line("#{item.project} - #{item.event_title}", 100)
16 xml.title truncate_single_line("#{item.project} - #{item.event_title}", :length => 100)
17 17 end
18 18 xml.link "rel" => "alternate", "href" => url
19 19 xml.id url
@@ -35,7 +35,7
35 35 <td align="center"><%= image_tag 'true.png' if custom_field.is_required? %></td>
36 36 <% if tab[:name] == 'IssueCustomField' %>
37 37 <td align="center"><%= image_tag 'true.png' if custom_field.is_for_all? %></td>
38 <td align="center"><%= custom_field.projects.count.to_s + ' ' + lwr(:label_project, custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
38 <td align="center"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
39 39 <% end %>
40 40 <td align="center" style="width:15%;">
41 41 <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => custom_field, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %>
@@ -1,3 +1,3
1 1 <p><%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %><br />
2 <% unless document.description.blank? %><%=h(truncate(document.description, 250)) %><br /><% end %>
2 <% unless document.description.blank? %><%=h(truncate(document.description, :length => 250)) %><br /><% end %>
3 3 <em><%= format_time(document.created_on) %></em></p> No newline at end of file
@@ -10,7 +10,7
10 10 <table style="width:100%">
11 11 <% @issue.relations.select {|r| r.other_issue(@issue).visible? }.each do |relation| %>
12 12 <tr>
13 <td><%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %>
13 <td><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
14 14 <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue relation.other_issue(@issue) %></td>
15 15 <td><%=h relation.other_issue(@issue).subject %></td>
16 16 <td><%= relation.other_issue(@issue).status.name %></td>
@@ -34,13 +34,13
34 34 <td class="category"><b><%=l(:field_category)%>:</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
35 35 <% if User.current.allowed_to?(:view_time_entries, @project) %>
36 36 <td class="spent-time"><b><%=l(:label_spent_time)%>:</b></td>
37 <td class="spent-hours"><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue}) : "-" %></td>
37 <td class="spent-hours"><%= @issue.spent_hours > 0 ? (link_to l_hours(@issue.spent_hours), {:controller => 'timelog', :action => 'details', :project_id => @project, :issue_id => @issue}) : "-" %></td>
38 38 <% end %>
39 39 </tr>
40 40 <tr>
41 41 <td class="fixed-version"><b><%=l(:field_fixed_version)%>:</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
42 42 <% if @issue.estimated_hours %>
43 <td class="estimated-hours"><b><%=l(:field_estimated_hours)%>:</b></td><td><%= lwr(:label_f_hour, @issue.estimated_hours) %></td>
43 <td class="estimated-hours"><b><%=l(:field_estimated_hours)%>:</b></td><td><%= l_hours(@issue.estimated_hours) %></td>
44 44 <% end %>
45 45 </tr>
46 46 <tr>
@@ -1,3 +1,3
1 <%= l(:text_issue_added, "##{@issue.id}", @issue.author) %>
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %>
2 2 <hr />
3 3 <%= render :partial => "issue_text_html", :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -1,4 +1,4
1 <%= l(:text_issue_added, "##{@issue.id}", @issue.author) %>
1 <%= l(:text_issue_added, :id => "##{@issue.id}", :author => @issue.author) %>
2 2
3 3 ----------------------------------------
4 4 <%= render :partial => "issue_text_plain", :locals => { :issue => @issue, :issue_url => @issue_url } %>
@@ -1,4 +1,4
1 <%= l(:text_issue_updated, "##{@issue.id}", @journal.user) %>
1 <%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %>
2 2
3 3 <ul>
4 4 <% for detail in @journal.details %>
@@ -1,4 +1,4
1 <%= l(:text_issue_updated, "##{@issue.id}", @journal.user) %>
1 <%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %>
2 2
3 3 <% for detail in @journal.details -%>
4 4 <%= show_detail(detail, true) %>
@@ -1,4 +1,4
1 <p><%= l(:mail_body_reminder, @issues.size, @days) %></p>
1 <p><%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %></p>
2 2
3 3 <ul>
4 4 <% @issues.each do |issue| -%>
@@ -1,4 +1,4
1 <%= l(:mail_body_reminder, @issues.size, @days) %>:
1 <%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %>:
2 2
3 3 <% @issues.each do |issue| -%>
4 4 * <%= "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject}" %>
@@ -1,4 +1,5
1 <h3><%=l(:label_watched_issues)%></h3>
1 <h3><%=l(:label_watched_issues)%> (<%= Issue.visible.count(:include => :watchers,
2 :conditions => ["#{Watcher.table_name}.user_id = ?", user.id]) %>)</h3>
2 3 <% watched_issues = Issue.visible.find(:all,
3 4 :include => [:status, :project, :tracker, :watchers],
4 5 :limit => 10,
@@ -1,6 +1,6
1 1 <p><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless @project %>
2 2 <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
3 <%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %>
3 <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>
4 4 <br />
5 5 <% unless news.summary.blank? %><span class="summary"><%=h news.summary %></span><br /><% end %>
6 6 <span class="author"><%= authoring news.created_on, news.author %></span></p>
@@ -30,7 +30,7
30 30 <% @newss.each do |news| %>
31 31 <h3><%= link_to(h(news.project.name), :controller => 'projects', :action => 'show', :id => news.project) + ': ' unless news.project == @project %>
32 32 <%= link_to h(news.title), :controller => 'news', :action => 'show', :id => news %>
33 <%= "(#{news.comments_count} #{lwr(:label_comment, news.comments_count).downcase})" if news.comments_count > 0 %></h3>
33 <%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %></h3>
34 34 <p class="author"><%= authoring news.created_on, news.author %></p>
35 35 <div class="wiki">
36 36 <%= textilizable(news.description) %>
@@ -11,7 +11,7
11 11 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
12 12 <p><%= f.text_field :identifier, :required => true, :disabled => @project.identifier_frozen? %>
13 13 <% unless @project.identifier_frozen? %>
14 <br /><em><%= l(:text_length_between, 2, 20) %> <%= l(:text_project_identifier_info) %></em>
14 <br /><em><%= l(:text_length_between, :min => 2, :max => 20) %> <%= l(:text_project_identifier_info) %></em>
15 15 <% end %></p>
16 16 <p><%= f.text_field :homepage, :size => 60 %></p>
17 17 <p><%= f.check_box :is_public %></p>
@@ -7,7 +7,7
7 7 <% Redmine::AccessControl.available_project_modules.each do |m| %>
8 8 <label class="floating">
9 9 <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %>
10 <%= (l_has_string?("project_module_#{m}".to_sym) ? l("project_module_#{m}".to_sym) : m.to_s.humanize) %>
10 <%= l_or_humanize(m, :prefix => "project_module_") %>
11 11 </label>
12 12 <% end %>
13 13 </fieldset>
@@ -7,7 +7,7
7 7
8 8 <% Redmine::AccessControl.available_project_modules.each do |m| %>
9 9 <p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) -%>
10 <%= (l_has_string?("project_module_#{m}".to_sym) ? l("project_module_#{m}".to_sym) : m.to_s.humanize) %></label></p>
10 <%= l_or_humanize(m, :prefix => "project_module_") %></label></p>
11 11 <% end %>
12 12 </div>
13 13
@@ -23,8 +23,9
23 23 <li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
24 24 :set_filter => 1,
25 25 "tracker_id" => tracker.id %>:
26 <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
27 <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
26 <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
27 :total => @total_issues_by_tracker[tracker].to_i) %>
28 </li>
28 29 <% end %>
29 30 </ul>
30 31 <p><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %></p>
@@ -65,7 +66,7
65 66
66 67 <% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
67 68 <h3><%= l(:label_spent_time) %></h3>
68 <p><span class="icon icon-time"><%= lwr(:label_f_hour, @total_hours) %></span></p>
69 <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p>
69 70 <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |
70 71 <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %></p>
71 72 <% end %>
@@ -19,6 +19,6
19 19 <td class="revision"><%= link_to(format_revision(entry.lastrev.name), :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %></td>
20 20 <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td>
21 21 <td class="author"><%= changeset.nil? ? h(entry.lastrev.author.to_s.split('<').first) : changeset.author if entry.lastrev %></td>
22 <td class="comments"><%=h truncate(changeset.comments, 50) unless changeset.nil? %></td>
22 <td class="comments"><%=h truncate(changeset.comments, :length => 50) unless changeset.nil? %></td>
23 23 </tr>
24 24 <% end %>
@@ -26,7 +26,7
26 26 <h3><%= l(:label_result_plural) %> (<%= @results_by_type.values.sum %>)</h3>
27 27 <dl id="search-results">
28 28 <% @results.each do |e| %>
29 <dt class="<%= e.event_type %>"><%= content_tag('span', h(e.project), :class => 'project') unless @project == e.project %> <%= link_to highlight_tokens(truncate(e.event_title, 255), @tokens), e.event_url %></dt>
29 <dt class="<%= e.event_type %>"><%= content_tag('span', h(e.project), :class => 'project') unless @project == e.project %> <%= link_to highlight_tokens(truncate(e.event_title, :length => 255), @tokens), e.event_url %></dt>
30 30 <dd><span class="description"><%= highlight_tokens(e.event_description, @tokens) %></span>
31 31 <span class="author"><%= format_time(e.event_datetime) %></span></dd>
32 32 <% end %>
@@ -5,7 +5,7
5 5 <%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p>
6 6
7 7 <p><label><%= l(:setting_autologin) %></label>
8 <%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [lwr(:actionview_datehelper_time_in_words_day, days), days.to_s]}, Setting.autologin) %></p>
8 <%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]}, Setting.autologin) %></p>
9 9
10 10 <p><label><%= l(:setting_self_registration) %></label>
11 11 <%= select_tag 'settings[self_registration]',
@@ -20,7 +20,7
20 20 <td class="project"><%=h entry.project %></td>
21 21 <td class="subject">
22 22 <% if entry.issue -%>
23 <%= link_to_issue entry.issue %>: <%= h(truncate(entry.issue.subject, 50)) -%>
23 <%= link_to_issue entry.issue %>: <%= h(truncate(entry.issue.subject, :length => 50)) -%>
24 24 <% end -%>
25 25 </td>
26 26 <td class="comments"><%=h entry.comments %></td>
@@ -15,7 +15,7 already in the URI %>
15 15 <% end %>
16 16
17 17 <div class="total-hours">
18 <p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p>
18 <p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>
19 19 </div>
20 20
21 21 <% unless @entries.empty? %>
@@ -20,7 +20,7
20 20 [l(:label_day_plural).titleize, 'day']], @columns),
21 21 :onchange => "this.form.onsubmit();" %>
22 22
23 <%= l(:button_add) %>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l(@available_criterias[k][:label]), k]}),
23 <%= l(:button_add) %>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l_or_humanize(@available_criterias[k][:label]), k]}),
24 24 :onchange => "this.form.onsubmit();",
25 25 :style => 'width: 200px',
26 26 :id => nil,
@@ -33,7 +33,7
33 33
34 34 <% unless @criterias.empty? %>
35 35 <div class="total-hours">
36 <p><%= l(:label_total) %>: <%= html_hours(lwr(:label_f_hour, @total_hours)) %></p>
36 <p><%= l(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %></p>
37 37 </div>
38 38
39 39 <% unless @hours.empty? %>
@@ -41,7 +41,7
41 41 <thead>
42 42 <tr>
43 43 <% @criterias.each do |criteria| %>
44 <th><%= l(@available_criterias[criteria][:label]) %></th>
44 <th><%= l_or_humanize(@available_criterias[criteria][:label]) %></th>
45 45 <% end %>
46 46 <% columns_width = (40 / (@periods.length+1)).to_i %>
47 47 <% @periods.each do |period| %>
@@ -9,12 +9,10
9 9 <% if version.fixed_issues.count > 0 %>
10 10 <%= progress_bar([version.closed_pourcent, version.completed_pourcent], :width => '40em', :legend => ('%0.0f%' % version.completed_pourcent)) %>
11 11 <p class="progress-info">
12 <%= link_to(version.closed_issues_count, :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
13 <%= lwr(:label_closed_issues, version.closed_issues_count) %>
12 <%= link_to_if(version.closed_issues_count > 0, l(:label_x_closed_issues_abbr, :count => version.closed_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'c', :fixed_version_id => version, :set_filter => 1) %>
14 13 (<%= '%0.0f' % (version.closed_issues_count.to_f / version.fixed_issues.count * 100) %>%)
15 14 &#160;
16 <%= link_to(version.open_issues_count, :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
17 <%= lwr(:label_open_issues, version.open_issues_count)%>
15 <%= link_to_if(version.open_issues_count > 0, l(:label_x_open_issues_abbr, :count => version.open_issues_count), :controller => 'issues', :action => 'index', :project_id => version.project, :status_id => 'o', :fixed_version_id => version, :set_filter => 1) %>
18 16 (<%= '%0.0f' % (version.open_issues_count.to_f / version.fixed_issues.count * 100) %>%)
19 17 </p>
20 18 <% else %>
@@ -10,12 +10,12
10 10 <table>
11 11 <tr>
12 12 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
13 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(lwr(:label_f_hour, @version.estimated_hours)) %></td>
13 <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
14 14 </tr>
15 15 <% if User.current.allowed_to?(:view_time_entries, @project) %>
16 16 <tr>
17 17 <td width="130px" align="right"><%= l(:label_spent_time) %></td>
18 <td width="240px" class="total-hours"><%= html_hours(lwr(:label_f_hour, @version.spent_hours)) %></td>
18 <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
19 19 </tr>
20 20 <% end %>
21 21 </table>
@@ -67,7 +67,7 module Rails
67 67
68 68 class << self
69 69 def rubygems_version
70 Gem::RubyGemsVersion if defined? Gem::RubyGemsVersion
70 Gem::RubyGemsVersion rescue nil
71 71 end
72 72
73 73 def gem_version
@@ -82,14 +82,14 module Rails
82 82
83 83 def load_rubygems
84 84 require 'rubygems'
85
86 unless rubygems_version >= '0.9.4'
87 $stderr.puts %(Rails requires RubyGems >= 0.9.4 (you have #{rubygems_version}). Please `gem update --system` and try again.)
85 min_version = '1.3.1'
86 unless rubygems_version >= min_version
87 $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
88 88 exit 1
89 89 end
90 90
91 91 rescue LoadError
92 $stderr.puts %(Rails requires RubyGems >= 0.9.4. Please install RubyGems and try again: http://rubygems.rubyforge.org)
92 $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
93 93 exit 1
94 94 end
95 95
@@ -5,7 +5,7
5 5 # ENV['RAILS_ENV'] ||= 'production'
6 6
7 7 # Specifies gem version of Rails to use when vendor/rails is not present
8 RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION
8 RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
9 9
10 10 # Bootstrap the Rails environment, frameworks, and default configuration
11 11 require File.join(File.dirname(__FILE__), 'boot')
@@ -30,11 +30,6 Rails::Initializer.run do |config|
30 30 # (by default production uses :info, the others :debug)
31 31 # config.log_level = :debug
32 32
33 # Use the database for sessions instead of the file system
34 # (create the session table with 'rake db:sessions:create')
35 # config.action_controller.session_store = :active_record_store
36 config.action_controller.session_store = :PStore
37
38 33 # Enable page/fragment caching by setting a file-based store
39 34 # (remember to create the caching directory and make it readable to the application)
40 35 # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
@@ -15,3 +15,8 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17 config.action_mailer.delivery_method = :test
18
19 config.action_controller.session = {
20 :session_key => "_test_session",
21 :secret => "some secret phrase for the tests."
22 }
@@ -15,3 +15,8 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17 config.action_mailer.delivery_method = :test
18
19 config.action_controller.session = {
20 :session_key => "_test_session",
21 :secret => "some secret phrase for the tests."
22 }
@@ -15,3 +15,8 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17 config.action_mailer.delivery_method = :test
18
19 config.action_controller.session = {
20 :session_key => "_test_session",
21 :secret => "some secret phrase for the tests."
22 }
@@ -1,18 +1,37
1 1
2 ActiveRecord::Errors.default_error_messages = {
3 :inclusion => "activerecord_error_inclusion",
4 :exclusion => "activerecord_error_exclusion",
5 :invalid => "activerecord_error_invalid",
6 :confirmation => "activerecord_error_confirmation",
7 :accepted => "activerecord_error_accepted",
8 :empty => "activerecord_error_empty",
9 :blank => "activerecord_error_blank",
10 :too_long => "activerecord_error_too_long",
11 :too_short => "activerecord_error_too_short",
12 :wrong_length => "activerecord_error_wrong_length",
13 :taken => "activerecord_error_taken",
14 :not_a_number => "activerecord_error_not_a_number"
15 } if ActiveRecord::Errors.respond_to?('default_error_messages=')
2 require 'activerecord'
3
4 module ActiveRecord
5 class Base
6 include Redmine::I18n
7
8 # Translate attribute names for validation errors display
9 def self.human_attribute_name(attr)
10 l("field_#{attr.to_s.gsub(/_id$/, '')}")
11 end
12 end
13 end
14
15 module ActionView
16 module Helpers
17 module DateHelper
18 # distance_of_time_in_words breaks when difference is greater than 30 years
19 def distance_of_date_in_words(from_date, to_date = 0, options = {})
20 from_date = from_date.to_date if from_date.respond_to?(:to_date)
21 to_date = to_date.to_date if to_date.respond_to?(:to_date)
22 distance_in_days = (to_date - from_date).abs
23
24 I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale|
25 case distance_in_days
26 when 0..60 then locale.t :x_days, :count => distance_in_days
27 when 61..720 then locale.t :about_x_months, :count => (distance_in_days / 30).round
28 else locale.t :over_x_years, :count => (distance_in_days / 365).round
29 end
30 end
31 end
32 end
33 end
34 end
16 35
17 36 ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "#{html_tag}" }
18 37
@@ -1,7 +1,3
1 GLoc.set_config :default_language => :en
2 GLoc.clear_strings
3 GLoc.set_kcode
4 GLoc.load_localized_strings
5 GLoc.set_config(:raise_string_not_found_errors => false)
1 I18n.default_locale = 'en'
6 2
7 3 require 'redmine'
@@ -1,47 +1,99
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"
2 10
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Януари,Февруари,Март,Април,Май,Юни,Юли,Август,Септември,Октомври,Ноември,Декември
5 actionview_datehelper_select_month_names_abbr: Яну,Фев,Мар,Апр,Май,Юни,Юли,Авг,Сеп,Окт,Ное,Дек
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 ден
9 actionview_datehelper_time_in_words_day_plural: %d дни
10 actionview_datehelper_time_in_words_hour_about: около час
11 actionview_datehelper_time_in_words_hour_about_plural: около %d часа
12 actionview_datehelper_time_in_words_hour_about_single: около час
13 actionview_datehelper_time_in_words_minute: 1 минута
14 actionview_datehelper_time_in_words_minute_half: половин минута
15 actionview_datehelper_time_in_words_minute_less_than: по-малко от минута
16 actionview_datehelper_time_in_words_minute_plural: %d минути
17 actionview_datehelper_time_in_words_minute_single: 1 минута
18 actionview_datehelper_time_in_words_second_less_than: по-малко от секунда
19 actionview_datehelper_time_in_words_second_less_than_plural: по-малко от %d секунди
20 actionview_instancetag_blank_option: Изберете
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 ]
19
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"
21 61
22 activerecord_error_inclusion: не съществува в списъка
23 activerecord_error_exclusion: е запазено
24 activerecord_error_invalid: е невалидно
25 activerecord_error_confirmation: липсва одобрение
26 activerecord_error_accepted: трябва да се приеме
27 activerecord_error_empty: не може да е празно
28 activerecord_error_blank: не може да е празно
29 activerecord_error_too_long: е прекалено дълго
30 activerecord_error_too_short: е прекалено късо
31 activerecord_error_wrong_length: е с грешна дължина
32 activerecord_error_taken: вече съществува
33 activerecord_error_not_a_number: не е число
34 activerecord_error_not_a_date: е невалидна дата
35 activerecord_error_greater_than_start_date: трябва да е след началната дата
36 activerecord_error_not_same_project: не е от същия проект
37 activerecord_error_circular_dependency: Тази релация ще доведе до безкрайна зависимост
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: "Тази релация ще доведе до безкрайна зависимост"
94
95 actionview_instancetag_blank_option: Изберете
38 96
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
45 97 general_text_No: 'Не'
46 98 general_text_Yes: 'Да'
47 99 general_text_no: 'не'
@@ -51,7 +103,6 general_csv_separator: ','
51 103 general_csv_decimal_separator: '.'
52 104 general_csv_encoding: UTF-8
53 105 general_pdf_encoding: UTF-8
54 general_day_names: Понеделник,Вторник,Сряда,Четвъртък,Петък,Събота,Неделя
55 106 general_first_day_of_week: '1'
56 107
57 108 notice_account_updated: Профилът е обновен успешно.
@@ -70,20 +121,20 notice_successful_connection: Успешно свързване.
70 121 notice_file_not_found: Несъществуваща или преместена страница.
71 122 notice_locking_conflict: Друг потребител променя тези данни в момента.
72 123 notice_not_authorized: Нямате право на достъп до тази страница.
73 notice_email_sent: Изпратен e-mail на %s
74 notice_email_error: Грешка при изпращане на e-mail (%s)
124 notice_email_sent: "Изпратен e-mail на {{value}}"
125 notice_email_error: "Грешка при изпращане на e-mail ({{value}})"
75 126 notice_feeds_access_key_reseted: Вашия ключ за RSS достъп беше променен.
76 127
77 128 error_scm_not_found: Несъществуващ обект в хранилището.
78 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: %s"
129 error_scm_command_failed: "Грешка при опит за комуникация с хранилище: {{value}}"
79 130
80 mail_subject_lost_password: Вашата парола (%s)
131 mail_subject_lost_password: "Вашата парола ({{value}})"
81 132 mail_body_lost_password: 'За да смените паролата си, използвайте следния линк:'
82 mail_subject_register: Активация на профил (%s)
133 mail_subject_register: "Активация на профил ({{value}})"
83 134 mail_body_register: 'За да активирате профила си използвайте следния линк:'
84 135
85 136 gui_validation_error: 1 грешка
86 gui_validation_error_plural: %d грешки
137 gui_validation_error_plural: "{{count}} грешки"
87 138
88 139 field_name: Име
89 140 field_description: Описание
@@ -193,6 +244,10 label_user_new: Нов потребител
193 244 label_project: Проект
194 245 label_project_new: Нов проект
195 246 label_project_plural: Проекти
247 label_x_projects:
248 zero: no projects
249 one: 1 project
250 other: "{{count}} projects"
196 251 label_project_all: Всички проекти
197 252 label_project_latest: Последни проекти
198 253 label_issue: Задача
@@ -240,8 +295,6 label_help: Помощ
240 295 label_reported_issues: Публикувани задачи
241 296 label_assigned_to_me_issues: Възложени на мен
242 297 label_last_login: Последно свързване
243 label_last_updates: Последно обновена
244 label_last_updates_plural: %d последно обновени
245 298 label_registered_on: Регистрация
246 299 label_activity: Дейност
247 300 label_new: Нов
@@ -261,8 +314,8 label_string: Текст
261 314 label_text: Дълъг текст
262 315 label_attribute: Атрибут
263 316 label_attribute_plural: Атрибути
264 label_download: %d Download
265 label_download_plural: %d Downloads
317 label_download: "{{count}} Download"
318 label_download_plural: "{{count}} Downloads"
266 319 label_no_data: Няма изходни данни
267 320 label_change_status: Промяна на статуса
268 321 label_history: История
@@ -291,6 +344,18 label_open_issues: отворена
291 344 label_open_issues_plural: отворени
292 345 label_closed_issues: затворена
293 346 label_closed_issues_plural: затворени
347 label_x_open_issues_abbr_on_total:
348 zero: 0 open / {{total}}
349 one: 1 open / {{total}}
350 other: "{{count}} open / {{total}}"
351 label_x_open_issues_abbr:
352 zero: 0 open
353 one: 1 open
354 other: "{{count}} open"
355 label_x_closed_issues_abbr:
356 zero: 0 closed
357 one: 1 closed
358 other: "{{count}} closed"
294 359 label_total: Общо
295 360 label_permissions: Права
296 361 label_current_status: Текущ статус
@@ -307,11 +372,15 label_calendar: Календар
307 372 label_months_from: месеца от
308 373 label_gantt: Gantt
309 374 label_internal: Вътрешен
310 label_last_changes: последни %d промени
375 label_last_changes: "последни {{count}} промени"
311 376 label_change_view_all: Виж всички промени
312 377 label_personalize_page: Персонализиране
313 378 label_comment: Коментар
314 379 label_comment_plural: Коментари
380 label_x_comments:
381 zero: no comments
382 one: 1 comment
383 other: "{{count}} comments"
315 384 label_comment_add: Добавяне на коментар
316 385 label_comment_added: Добавен коментар
317 386 label_comment_delete: Изтриване на коментари
@@ -335,8 +404,8 label_not_contains: не съдържа
335 404 label_day_plural: дни
336 405 label_repository: Хранилище
337 406 label_browse: Разглеждане
338 label_modification: %d промяна
339 label_modification_plural: %d промени
407 label_modification: "{{count}} промяна"
408 label_modification_plural: "{{count}} промени"
340 409 label_revision: Ревизия
341 410 label_revision_plural: Ревизии
342 411 label_added: добавено
@@ -346,14 +415,13 label_latest_revision: Последна ревизия
346 415 label_latest_revision_plural: Последни ревизии
347 416 label_view_revisions: Виж ревизиите
348 417 label_max_size: Максимална големина
349 label_on: 'от'
350 418 label_sort_highest: Премести най-горе
351 419 label_sort_higher: Премести по-горе
352 420 label_sort_lower: Премести по-долу
353 421 label_sort_lowest: Премести най-долу
354 422 label_roadmap: Пътна карта
355 label_roadmap_due_in: Излиза след %s
356 label_roadmap_overdue: %s закъснение
423 label_roadmap_due_in: "Излиза след {{value}}"
424 label_roadmap_overdue: "{{value}} закъснение"
357 425 label_roadmap_no_issues: Няма задачи за тази версия
358 426 label_search: Търсене
359 427 label_result_plural: Pезултати
@@ -371,8 +439,8 label_feed_plural: Feeds
371 439 label_changes_details: Подробни промени
372 440 label_issue_tracking: Тракинг
373 441 label_spent_time: Отделено време
374 label_f_hour: %.2f час
375 label_f_hour_plural: %.2f часа
442 label_f_hour: "{{value}} час"
443 label_f_hour_plural: "{{value}} часа"
376 444 label_time_tracking: Отделяне на време
377 445 label_change_plural: Промени
378 446 label_statistics: Статистики
@@ -419,12 +487,12 label_week: Седмица
419 487 label_date_from: От
420 488 label_date_to: До
421 489 label_language_based: В зависимост от езика
422 label_sort_by: Сортиране по %s
490 label_sort_by: "Сортиране по {{value}}"
423 491 label_send_test_email: Изпращане на тестов e-mail
424 label_feeds_access_key_created_on: %s от създаването на RSS ключа
492 label_feeds_access_key_created_on: "{{value}} от създаването на RSS ключа"
425 493 label_module_plural: Модули
426 label_added_time_by: Публикувана от %s преди %s
427 label_updated_time: Обновена преди %s
494 label_added_time_by: "Публикувана от {{author}} преди {{age}}"
495 label_updated_time: "Обновена преди {{value}}"
428 496 label_jump_to_a_project: Проект...
429 497
430 498 button_login: Вход
@@ -470,23 +538,23 text_min_max_length_info: 0 - без ограничения
470 538 text_project_destroy_confirmation: Сигурни ли сте, че искате да изтриете проекта и данните в него?
471 539 text_workflow_edit: Изберете роля и тракер за да редактирате работния процес
472 540 text_are_you_sure: Сигурни ли сте?
473 text_journal_changed: промяна от %s на %s
474 text_journal_set_to: установено на %s
541 text_journal_changed: "промяна от {{old}} на {{new}}"
542 text_journal_set_to: "установено на {{value}}"
475 543 text_journal_deleted: изтрито
476 544 text_tip_task_begin_day: задача започваща този ден
477 545 text_tip_task_end_day: задача завършваща този ден
478 546 text_tip_task_begin_end_day: задача започваща и завършваща този ден
479 547 text_project_identifier_info: 'Позволени са малки букви (a-z), цифри и тирета.<br />Невъзможна промяна след запис.'
480 text_caracters_maximum: До %d символа.
481 text_length_between: От %d до %d символа.
548 text_caracters_maximum: "До {{count}} символа."
549 text_length_between: "От {{min}} до {{max}} символа."
482 550 text_tracker_no_workflow: Няма дефиниран работен процес за този тракер
483 551 text_unallowed_characters: Непозволени символи
484 552 text_comma_separated: Позволено е изброяване (с разделител запетая).
485 553 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от ревизии
486 text_issue_added: Публикувана е нова задача с номер %s (от %s).
487 text_issue_updated: Задача %s е обновена (от %s).
554 text_issue_added: "Публикувана е нова задача с номер {{id}} (от {{author}})."
555 text_issue_updated: "Задача {{id}} е обновена (от {{author}})."
488 556 text_wiki_destroy_confirmation: Сигурни ли сте, че искате да изтриете това Wiki и цялото му съдържание?
489 text_issue_category_destroy_question: Има задачи (%d) обвързани с тази категория. Какво ще изберете?
557 text_issue_category_destroy_question: "Има задачи ({{count}}) обвързани с тази категория. Какво ще изберете?"
490 558 text_issue_category_destroy_assignments: Премахване на връзките с категорията
491 559 text_issue_category_reassign_to: Преобвързване с категория
492 560
@@ -524,7 +592,7 setting_repositories_encodings: Кодови таблици
524 592 notice_no_issue_selected: "Няма избрани задачи."
525 593 label_bulk_edit_selected_issues: Редактиране на задачи
526 594 label_no_change_option: (Без промяна)
527 notice_failed_to_save_issues: "Неуспешен запис на %d задачи от %d избрани: %s."
595 notice_failed_to_save_issues: "Неуспешен запис на {{count}} задачи от {{total}} избрани: {{ids}}."
528 596 label_theme: Тема
529 597 label_default: По подразбиране
530 598 label_search_titles_only: Само в заглавията
@@ -537,37 +605,37 label_user_mail_option_none: "Само за наблюдавани или в к
537 605 setting_emails_footer: Подтекст за e-mail
538 606 label_float: Дробно
539 607 button_copy: Копиране
540 mail_body_account_information_external: Можете да използвате вашия "%s" профил за вход.
608 mail_body_account_information_external: "Можете да използвате вашия {{value}} профил за вход."
541 609 mail_body_account_information: Информацията за профила ви
542 610 setting_protocol: Протокол
543 611 label_user_mail_no_self_notified: "Не искам известия за извършени от мен промени"
544 612 setting_time_format: Формат на часа
545 613 label_registration_activation_by_email: активиране на профила по email
546 mail_subject_account_activation_request: Заявка за активиране на профил в %s
547 mail_body_account_activation_request: 'Има новорегистриран потребител (%s), очакващ вашето одобрение:'
614 mail_subject_account_activation_request: "Заявка за активиране на профил в {{value}}"
615 mail_body_account_activation_request: "Има новорегистриран потребител ({{value}}), очакващ вашето одобрение:'"
548 616 label_registration_automatic_activation: автоматично активиране
549 617 label_registration_manual_activation: ръчно активиране
550 618 notice_account_pending: "Профилът Ви е създаден и очаква одобрение от администратор."
551 619 field_time_zone: Часова зона
552 text_caracters_minimum: Минимум %d символа.
620 text_caracters_minimum: "Минимум {{count}} символа."
553 621 setting_bcc_recipients: Получатели на скрито копие (bcc)
554 622 button_annotate: Анотация
555 label_issues_by: Задачи по %s
623 label_issues_by: "Задачи по {{value}}"
556 624 field_searchable: С възможност за търсене
557 label_display_per_page: 'На страница по: %s'
625 label_display_per_page: "На страница по: {{value}}'"
558 626 setting_per_page_options: Опции за страниране
559 627 label_age: Възраст
560 628 notice_default_data_loaded: Примерната информацията е успешно заредена.
561 629 text_load_default_configuration: Зареждане на примерна информация
562 630 text_no_configuration_data: "Все още не са конфигурирани Роли, тракери, статуси на задачи и работен процес.\nСтрого се препоръчва зареждането на примерната информация. Веднъж заредена ще имате възможност да я редактирате."
563 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: %s"
631 error_can_t_load_default_data: "Грешка при зареждане на примерната информация: {{value}}"
564 632 button_update: Обновяване
565 633 label_change_properties: Промяна на настройки
566 634 label_general: Основни
567 635 label_repository_plural: Хранилища
568 636 label_associated_revisions: Асоциирани ревизии
569 637 setting_user_format: Потребителски формат
570 text_status_changed_by_changeset: Приложено с ревизия %s.
638 text_status_changed_by_changeset: "Приложено с ревизия {{value}}."
571 639 label_more: Още
572 640 text_issues_destroy_confirmation: 'Сигурни ли сте, че искате да изтриете избраните задачи?'
573 641 label_scm: SCM (Система за контрол на кода)
@@ -594,7 +662,7 label_plugins: Плъгини
594 662 label_ldap_authentication: LDAP оторизация
595 663 label_downloads_abbr: D/L
596 664 label_this_month: текущия месец
597 label_last_n_days: последните %d дни
665 label_last_n_days: "последните {{count}} дни"
598 666 label_all_time: всички
599 667 label_this_year: текущата година
600 668 label_date_range: Период
@@ -618,15 +686,15 label_overall_activity: Цялостна дейност
618 686 setting_default_projects_public: Новите проекти са публични по подразбиране
619 687 error_scm_annotate: "Обектът не съществува или не може да бъде анотиран."
620 688 label_planning: Планиране
621 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
622 label_and_its_subprojects: %s and its subprojects
623 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
624 mail_subject_reminder: "%d issue(s) due in the next days"
625 text_user_wrote: '%s wrote:'
689 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
690 label_and_its_subprojects: "{{value}} and its subprojects"
691 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
692 mail_subject_reminder: "{{count}} issue(s) due in the next days"
693 text_user_wrote: "{{value}} wrote:'"
626 694 label_duplicated_by: duplicated by
627 695 setting_enabled_scm: Enabled SCM
628 696 text_enumeration_category_reassign_to: 'Reassign them to this value:'
629 text_enumeration_destroy_question: '%d objects are assigned to this value.'
697 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
630 698 label_incoming_emails: Incoming emails
631 699 label_generate_key: Generate a key
632 700 setting_mail_handler_api_enabled: Enable WS for incoming emails
@@ -692,18 +760,14 label_example: Example
692 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."
693 761 permission_edit_own_messages: Edit own messages
694 762 permission_delete_own_messages: Delete own messages
695 label_user_activity: "%s's activity"
696 label_updated_time_by: Updated by %s %s ago
763 label_user_activity: "{{value}}'s activity"
764 label_updated_time_by: "Updated by {{author}} {{age}} ago"
697 765 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
698 766 setting_diff_max_lines_displayed: Max number of diff lines displayed
699 767 text_plugin_assets_writable: Plugin assets directory writable
700 warning_attachments_not_saved: "%d file(s) could not be saved."
768 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
701 769 button_create_and_continue: Create and continue
702 770 text_custom_field_possible_values_info: 'One line for each value'
703 771 label_display: Display
704 772 field_editable: Editable
705 773 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
@@ -1,47 +1,99
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"
2 10
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gener,Febrer,Març,Abril,Maig,Juny,Juliol,Agost,Setembre,Octubre,Novembre,Desembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Abr,Mai,Jun,Jul,Ago,Set,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dia
9 actionview_datehelper_time_in_words_day_plural: %d dies
10 actionview_datehelper_time_in_words_hour_about: aproximadament una hora
11 actionview_datehelper_time_in_words_hour_about_plural: aproximadament %d hores
12 actionview_datehelper_time_in_words_hour_about_single: aproximadament una hora
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: mig minut
15 actionview_datehelper_time_in_words_minute_less_than: "menys d'un minut"
16 actionview_datehelper_time_in_words_minute_plural: %d minuts
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: "menys d'un segon"
19 actionview_datehelper_time_in_words_second_less_than_plural: menys de %d segons
20 actionview_instancetag_blank_option: Seleccioneu
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 ]
19
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"
21 61
22 activerecord_error_inclusion: no està inclòs a la llista
23 activerecord_error_exclusion: està reservat
24 activerecord_error_invalid: no és vàlid
25 activerecord_error_confirmation: la confirmació no coincideix
26 activerecord_error_accepted: "s'ha d'acceptar"
27 activerecord_error_empty: no pot estar buit
28 activerecord_error_blank: no pot estar en blanc
29 activerecord_error_too_long: és massa llarg
30 activerecord_error_too_short: és massa curt
31 activerecord_error_wrong_length: la longitud és incorrecta
32 activerecord_error_taken: "ja s'està utilitzant"
33 activerecord_error_not_a_number: no és un número
34 activerecord_error_not_a_date: no és una data vàlida
35 activerecord_error_greater_than_start_date: ha de ser superior que la data inicial
36 activerecord_error_not_same_project: no pertany al mateix projecte
37 activerecord_error_circular_dependency: Aquesta relació crearia una dependència circular
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"
94
95 actionview_instancetag_blank_option: Seleccioneu
38 96
39 general_fmt_age: %d any
40 general_fmt_age_plural: %d anys
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
45 97 general_text_No: 'No'
46 98 general_text_Yes: 'Si'
47 99 general_text_no: 'no'
@@ -51,7 +103,6 general_csv_separator: ';'
51 103 general_csv_decimal_separator: ','
52 104 general_csv_encoding: ISO-8859-15
53 105 general_pdf_encoding: ISO-8859-15
54 general_day_names: Dilluns,Dimarts,Dimecres,Dijous,Divendres,Dissabte,Diumenge
55 106 general_first_day_of_week: '1'
56 107
57 108 notice_account_updated: "El compte s'ha actualitzat correctament."
@@ -70,34 +121,34 notice_successful_connection: "S'ha connectat correctament."
70 121 notice_file_not_found: "La pàgina a la que intenteu accedir no existeix o s'ha suprimit."
71 122 notice_locking_conflict: Un altre usuari ha actualitzat les dades.
72 123 notice_not_authorized: No teniu permís per a accedir a aquesta pàgina.
73 notice_email_sent: "S'ha enviat un correu electrònic a %s"
74 notice_email_error: "S'ha produït un error en enviar el correu (%s)"
124 notice_email_sent: "S'ha enviat un correu electrònic a {{value}}"
125 notice_email_error: "S'ha produït un error en enviar el correu ({{value}})"
75 126 notice_feeds_access_key_reseted: "S'ha reiniciat la clau d'accés del RSS."
76 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de %d seleccionats: %s."
127 notice_failed_to_save_issues: "No s'han pogut desar %s assumptes de {{count}} seleccionats: {{value}}."
77 128 notice_no_issue_selected: "No s'ha seleccionat cap assumpte. Activeu els assumptes que voleu editar."
78 129 notice_account_pending: "S'ha creat el compte i ara està pendent de l'aprovació de l'administrador."
79 130 notice_default_data_loaded: "S'ha carregat correctament la configuració predeterminada."
80 131 notice_unable_delete_version: "No s'ha pogut suprimir la versió."
81 132
82 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: %s"
133 error_can_t_load_default_data: "No s'ha pogut carregar la configuració predeterminada: {{value}} "
83 134 error_scm_not_found: "No s'ha trobat l'entrada o la revisió en el dipòsit."
84 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: %s"
135 error_scm_command_failed: "S'ha produït un error en intentar accedir al dipòsit: {{value}}"
85 136 error_scm_annotate: "L'entrada no existeix o no s'ha pogut anotar."
86 137 error_issue_not_found_in_project: "No s'ha trobat l'assumpte o no pertany a aquest projecte"
87 138
88 mail_subject_lost_password: Contrasenya de %s
139 mail_subject_lost_password: "Contrasenya de {{value}}"
89 140 mail_body_lost_password: "Per a canviar la contrasenya, feu clic en l'enllaç següent:"
90 mail_subject_register: Activació del compte de %s
141 mail_subject_register: "Activació del compte de {{value}}"
91 142 mail_body_register: "Per a activar el compte, feu clic en l'enllaç següent:"
92 mail_body_account_information_external: Podeu utilitzar el compte «%s» per a entrar.
143 mail_body_account_information_external: "Podeu utilitzar el compte «{{value}}» per a entrar."
93 144 mail_body_account_information: Informació del compte
94 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de %s"
95 mail_body_account_activation_request: "S'ha registrat un usuari nou (%s). El seu compte està pendent d'aprovació:"
96 mail_subject_reminder: "%d assumptes venceran els següents %d dies"
97 mail_body_reminder: "%d assumptes que teniu assignades venceran els següents %d dies:"
145 mail_subject_account_activation_request: "Sol·licitud d'activació del compte de {{value}}"
146 mail_body_account_activation_request: "S'ha registrat un usuari nou ({{value}}). El seu compte està pendent d'aprovació:"
147 mail_subject_reminder: "%d assumptes venceran els següents {{count}} dies"
148 mail_body_reminder: "{{count}} assumptes que teniu assignades venceran els següents {{days}} dies:"
98 149
99 150 gui_validation_error: 1 error
100 gui_validation_error_plural: %d errors
151 gui_validation_error_plural: "{{count}} errors"
101 152
102 153 field_name: Nom
103 154 field_description: Descripció
@@ -237,13 +288,17 label_user_new: Usuari nou
237 288 label_project: Projecte
238 289 label_project_new: Projecte nou
239 290 label_project_plural: Projectes
291 label_x_projects:
292 zero: no projects
293 one: 1 project
294 other: "{{count}} projects"
240 295 label_project_all: Tots els projectes
241 296 label_project_latest: Els últims projectes
242 297 label_issue: Assumpte
243 298 label_issue_new: Assumpte nou
244 299 label_issue_plural: Assumptes
245 300 label_issue_view_all: Visualitza tots els assumptes
246 label_issues_by: Assumptes per %s
301 label_issues_by: "Assumptes per {{value}}"
247 302 label_issue_added: Assumpte afegit
248 303 label_issue_updated: Assumpte actualitzat
249 304 label_document: Document
@@ -288,8 +343,6 label_help: Ajuda
288 343 label_reported_issues: Assumptes informats
289 344 label_assigned_to_me_issues: Assumptes assignats a mi
290 345 label_last_login: Última connexió
291 label_last_updates: Última actualització
292 label_last_updates_plural: %d última actualització
293 346 label_registered_on: Informat el
294 347 label_activity: Activitat
295 348 label_overall_activity: Activitat global
@@ -301,7 +354,7 label_auth_source: "Mode d'autenticació"
301 354 label_auth_source_new: "Mode d'autenticació nou"
302 355 label_auth_source_plural: "Modes d'autenticació"
303 356 label_subproject_plural: Subprojectes
304 label_and_its_subprojects: %s i els seus subprojectes
357 label_and_its_subprojects: "{{value}} i els seus subprojectes"
305 358 label_min_max_length: Longitud mín - max
306 359 label_list: Llist
307 360 label_date: Data
@@ -312,8 +365,8 label_string: Text
312 365 label_text: Text llarg
313 366 label_attribute: Atribut
314 367 label_attribute_plural: Atributs
315 label_download: %d baixada
316 label_download_plural: %d baixades
368 label_download: "{{count}} baixada"
369 label_download_plural: "{{count}} baixades"
317 370 label_no_data: Sense dades a mostrar
318 371 label_change_status: "Canvia l'estat"
319 372 label_history: Historial
@@ -344,6 +397,18 label_open_issues: obert
344 397 label_open_issues_plural: oberts
345 398 label_closed_issues: tancat
346 399 label_closed_issues_plural: tancats
400 label_x_open_issues_abbr_on_total:
401 zero: 0 open / {{total}}
402 one: 1 open / {{total}}
403 other: "{{count}} open / {{total}}"
404 label_x_open_issues_abbr:
405 zero: 0 open
406 one: 1 open
407 other: "{{count}} open"
408 label_x_closed_issues_abbr:
409 zero: 0 closed
410 one: 1 closed
411 other: "{{count}} closed"
347 412 label_total: Total
348 413 label_permissions: Permisos
349 414 label_current_status: Estat actual
@@ -361,11 +426,15 label_calendar: Calendari
361 426 label_months_from: mesos des de
362 427 label_gantt: Gantt
363 428 label_internal: Intern
364 label_last_changes: últims %d canvis
429 label_last_changes: "últims {{count}} canvis"
365 430 label_change_view_all: Visualitza tots els canvis
366 431 label_personalize_page: Personalitza aquesta pàgina
367 432 label_comment: Comentari
368 433 label_comment_plural: Comentaris
434 label_x_comments:
435 zero: no comments
436 one: 1 comment
437 other: "{{count}} comments"
369 438 label_comment_add: Afegeix un comentari
370 439 label_comment_added: Comentari afegit
371 440 label_comment_delete: Suprimeix comentaris
@@ -384,7 +453,7 label_all_time: tot el temps
384 453 label_yesterday: ahir
385 454 label_this_week: aquesta setmana
386 455 label_last_week: "l'última setmana"
387 label_last_n_days: els últims %d dies
456 label_last_n_days: "els últims {{count}} dies"
388 457 label_this_month: aquest més
389 458 label_last_month: "l'últim més"
390 459 label_this_year: aquest any
@@ -398,8 +467,8 label_day_plural: dies
398 467 label_repository: Dipòsit
399 468 label_repository_plural: Dipòsits
400 469 label_browse: Navega
401 label_modification: %d canvi
402 label_modification_plural: %d canvis
470 label_modification: "{{count}} canvi"
471 label_modification_plural: "{{count}} canvis"
403 472 label_revision: Revisió
404 473 label_revision_plural: Revisions
405 474 label_associated_revisions: Revisions associades
@@ -412,14 +481,13 label_latest_revision: Última revisió
412 481 label_latest_revision_plural: Últimes revisions
413 482 label_view_revisions: Visualitza les revisions
414 483 label_max_size: Mida màxima
415 label_on: 'de'
416 484 label_sort_highest: Mou a la part superior
417 485 label_sort_higher: Mou cap amunt
418 486 label_sort_lower: Mou cap avall
419 487 label_sort_lowest: Mou a la part inferior
420 488 label_roadmap: Planificació
421 label_roadmap_due_in: Venç en %s
422 label_roadmap_overdue: %s tard
489 label_roadmap_due_in: "Venç en {{value}}"
490 label_roadmap_overdue: "{{value}} tard"
423 491 label_roadmap_no_issues: No hi ha assumptes per a aquesta versió
424 492 label_search: Cerca
425 493 label_result_plural: Resultats
@@ -437,8 +505,8 label_feed_plural: Canals
437 505 label_changes_details: Detalls de tots els canvis
438 506 label_issue_tracking: "Seguiment d'assumptes"
439 507 label_spent_time: Temps invertit
440 label_f_hour: %.2f hora
441 label_f_hour_plural: %.2f hores
508 label_f_hour: "{{value}} hora"
509 label_f_hour_plural: "{{value}} hores"
442 510 label_time_tracking: Temps de seguiment
443 511 label_change_plural: Canvis
444 512 label_statistics: Estadístiques
@@ -487,12 +555,12 label_week: Setmana
487 555 label_date_from: Des de
488 556 label_date_to: A
489 557 label_language_based: "Basat en l'idioma de l'usuari"
490 label_sort_by: Ordena per %s
558 label_sort_by: "Ordena per {{value}}"
491 559 label_send_test_email: Envia un correu electrònic de prova
492 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa %s"
560 label_feeds_access_key_created_on: "Clau d'accés del RSS creada fa {{value}}"
493 561 label_module_plural: Mòduls
494 label_added_time_by: Afegit per %s fa %s
495 label_updated_time: Actualitzat fa %s
562 label_added_time_by: "Afegit per {{author}} fa {{age}}"
563 label_updated_time: "Actualitzat fa {{value}}"
496 564 label_jump_to_a_project: Salta al projecte...
497 565 label_file_plural: Fitxers
498 566 label_changeset_plural: Conjunt de canvis
@@ -509,7 +577,7 label_user_mail_no_self_notified: "No vull ser notificat pels canvis que faig jo
509 577 label_registration_activation_by_email: activació del compte per correu electrònic
510 578 label_registration_manual_activation: activació del compte manual
511 579 label_registration_automatic_activation: activació del compte automàtica
512 label_display_per_page: 'Per pàgina: %s'
580 label_display_per_page: "Per pàgina: {{value}}'"
513 581 label_age: Edat
514 582 label_change_properties: Canvia les propietats
515 583 label_general: General
@@ -575,33 +643,33 text_select_mail_notifications: "Seleccioneu les accions per les quals s'hauria
575 643 text_regexp_info: ex. ^[A-Z0-9]+$
576 644 text_min_max_length_info: 0 significa sense restricció
577 645 text_project_destroy_confirmation: Segur que voleu suprimir aquest projecte i les dades relacionades?
578 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: %s."
646 text_subprojects_destroy_warning: "També seran suprimits els seus subprojectes: {{value}}."
579 647 text_workflow_edit: Seleccioneu un rol i un seguidor per a editar el flux de treball
580 648 text_are_you_sure: Segur?
581 text_journal_changed: canviat des de %s a %s
582 text_journal_set_to: establert a %s
649 text_journal_changed: "canviat des de {{old}} a {{new}}"
650 text_journal_set_to: "establert a {{value}}"
583 651 text_journal_deleted: suprimit
584 652 text_tip_task_begin_day: "tasca que s'inicia aquest dia"
585 653 text_tip_task_end_day: tasca que finalitza aquest dia
586 654 text_tip_task_begin_end_day: "tasca que s'inicia i finalitza aquest dia"
587 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."
588 text_caracters_maximum: %d caràcters com a màxim.
589 text_caracters_minimum: Com a mínim ha de tenir %d caràcters.
590 text_length_between: Longitud entre %d i %d caràcters.
656 text_caracters_maximum: "{{count}} caràcters com a màxim."
657 text_caracters_minimum: "Com a mínim ha de tenir {{count}} caràcters."
658 text_length_between: "Longitud entre {{min}} i {{max}} caràcters."
591 659 text_tracker_no_workflow: "No s'ha definit cap flux de treball per a aquest seguidor"
592 660 text_unallowed_characters: Caràcters no permesos
593 661 text_comma_separated: Es permeten valors múltiples (separats per una coma).
594 662 text_issues_ref_in_commit_messages: Referència i soluciona els assumptes en els missatges publicats
595 text_issue_added: "L'assumpte %s ha sigut informat per %s."
596 text_issue_updated: "L'assumpte %s ha sigut actualitzat per %s."
663 text_issue_added: "L'assumpte {{id}} ha sigut informat per {{author}}."
664 text_issue_updated: "L'assumpte {{id}} ha sigut actualitzat per {{author}}."
597 665 text_wiki_destroy_confirmation: Segur que voleu suprimir aquest wiki i tots els seus continguts?
598 text_issue_category_destroy_question: Alguns assumptes (%d) estan assignats a aquesta categoria. Què voleu fer?
666 text_issue_category_destroy_question: "Alguns assumptes ({{count}}) estan assignats a aquesta categoria. Què voleu fer?"
599 667 text_issue_category_destroy_assignments: Suprimeix les assignacions de la categoria
600 668 text_issue_category_reassign_to: Torna a assignar els assumptes a aquesta categoria
601 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)."
602 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."
603 671 text_load_default_configuration: Carrega la configuració predeterminada
604 text_status_changed_by_changeset: Aplicat en el conjunt de canvis %s.
672 text_status_changed_by_changeset: "Aplicat en el conjunt de canvis {{value}}."
605 673 text_issues_destroy_confirmation: "Segur que voleu suprimir els assumptes seleccionats?"
606 674 text_select_project_modules: "Seleccioneu els mòduls a habilitar per a aquest projecte:"
607 675 text_default_administrator_account_changed: "S'ha canviat el compte d'administrador predeterminat"
@@ -611,8 +679,8 text_destroy_time_entries_question: "S'han informat %.02f hores en els assumptes
611 679 text_destroy_time_entries: Suprimeix les hores informades
612 680 text_assign_time_entries_to_project: Assigna les hores informades al projecte
613 681 text_reassign_time_entries: 'Torna a assignar les hores informades a aquest assumpte:'
614 text_user_wrote: '%s va escriure:'
615 text_enumeration_destroy_question: '%d objectes estan assignats a aquest valor.'
682 text_user_wrote: "{{value}} va escriure:'"
683 text_enumeration_destroy_question: "{{count}} objectes estan assignats a aquest valor.'"
616 684 text_enumeration_category_reassign_to: 'Torna a assignar-los a aquest valor:'
617 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."
618 686
@@ -693,18 +761,14 label_example: Example
693 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."
694 762 permission_edit_own_messages: Edit own messages
695 763 permission_delete_own_messages: Delete own messages
696 label_user_activity: "%s's activity"
697 label_updated_time_by: Updated by %s %s ago
764 label_user_activity: "{{value}}'s activity"
765 label_updated_time_by: "Updated by {{author}} {{age}} ago"
698 766 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
699 767 setting_diff_max_lines_displayed: Max number of diff lines displayed
700 768 text_plugin_assets_writable: Plugin assets directory writable
701 warning_attachments_not_saved: "%d file(s) could not be saved."
769 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
702 770 button_create_and_continue: Create and continue
703 771 text_custom_field_possible_values_info: 'One line for each value'
704 772 label_display: Display
705 773 field_editable: Editable
706 774 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
@@ -1,50 +1,102
1 cs:
2 date:
3 formats:
4 # Use the strftime parameters for formats.
5 # When no format has been given, it uses default.
6 # You can provide other formats here if you like!
7 default: "%Y-%m-%d"
8 short: "%b %d"
9 long: "%B %d, %Y"
10
11 day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
12 abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
13
14 # Don't forget the nil at the beginning; there's no such thing as a 0th month
15 month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
16 abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
17 # Used in date_select and datime_select.
18 order: [ :year, :month, :day ]
19
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"
94
1 95 # CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | maxim@mxm.cz
2 96 # Based on original CZ translation by Jan Kadleček
3 97
4 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
5
6 actionview_datehelper_select_day_prefix:
7 actionview_datehelper_select_month_names: Leden,Únor,Březen,Duben,Květen,Červen,Červenec,Srpen,Září,Říjen,Listopad,Prosinec
8 actionview_datehelper_select_month_names_abbr: Led,Úno,Bře,Dub,Kvě,Čer,Čvc,Srp,Zář,Říj,Lis,Pro
9 actionview_datehelper_select_month_prefix:
10 actionview_datehelper_select_year_prefix:
11 actionview_datehelper_time_in_words_day: 1 den
12 actionview_datehelper_time_in_words_day_plural: %d dny
13 actionview_datehelper_time_in_words_hour_about: asi hodinou
14 actionview_datehelper_time_in_words_hour_about_plural: asi %d hodinami
15 actionview_datehelper_time_in_words_hour_about_single: asi hodinou
16 actionview_datehelper_time_in_words_minute: 1 minutou
17 actionview_datehelper_time_in_words_minute_half: půl minutou
18 actionview_datehelper_time_in_words_minute_less_than: méně než minutou
19 actionview_datehelper_time_in_words_minute_plural: %d minutami
20 actionview_datehelper_time_in_words_minute_single: 1 minutou
21 actionview_datehelper_time_in_words_second_less_than: méně než sekundou
22 actionview_datehelper_time_in_words_second_less_than_plural: méně než %d sekundami
23 98 actionview_instancetag_blank_option: Prosím vyberte
24 99
25 activerecord_error_inclusion: není zahrnuto v seznamu
26 activerecord_error_exclusion: je rezervováno
27 activerecord_error_invalid: je neplatné
28 activerecord_error_confirmation: se neshoduje s potvrzením
29 activerecord_error_accepted: musí být akceptováno
30 activerecord_error_empty: nemůže být prázdný
31 activerecord_error_blank: nemůže být prázdný
32 activerecord_error_too_long: je příliš dlouhý
33 activerecord_error_too_short: je příliš krátký
34 activerecord_error_wrong_length: má chybnou délku
35 activerecord_error_taken: je již použito
36 activerecord_error_not_a_number: není číslo
37 activerecord_error_not_a_date: není platné datum
38 activerecord_error_greater_than_start_date: musí být větší než počáteční datum
39 activerecord_error_not_same_project: nepatří stejnému projektu
40 activerecord_error_circular_dependency: Tento vztah by vytvořil cyklickou závislost
41
42 general_fmt_age: %d rok
43 general_fmt_age_plural: %d roků
44 general_fmt_date: %%m/%%d/%%Y
45 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
46 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
47 general_fmt_time: %%I:%%M %%p
48 100 general_text_No: 'Ne'
49 101 general_text_Yes: 'Ano'
50 102 general_text_no: 'ne'
@@ -54,7 +106,6 general_csv_separator: ','
54 106 general_csv_decimal_separator: '.'
55 107 general_csv_encoding: UTF-8
56 108 general_pdf_encoding: UTF-8
57 general_day_names: Pondělí,Úterý,Středa,Čtvrtek,Pátek,Sobota,Neděle
58 109 general_first_day_of_week: '1'
59 110
60 111 notice_account_updated: Účet byl úspěšně změněn.
@@ -74,30 +125,30 notice_file_not_found: Stránka na kterou se snažíte zobrazit neexistuje nebo
74 125 notice_locking_conflict: Údaje byly změněny jiným uživatelem.
75 126 notice_scm_error: Entry and/or revision doesn't exist in the repository.
76 127 notice_not_authorized: Nemáte dostatečná práva pro zobrazení této stránky.
77 notice_email_sent: Na adresu %s byl odeslán email
78 notice_email_error: Při odesílání emailu nastala chyba (%s)
128 notice_email_sent: "Na adresu {{value}} byl odeslán email"
129 notice_email_error: "Při odesílání emailu nastala chyba ({{value}})"
79 130 notice_feeds_access_key_reseted: Váš klíč pro přístup k RSS byl resetován.
80 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
131 notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}."
81 132 notice_no_issue_selected: "Nebyl zvolen žádný úkol. Prosím, zvolte úkoly, které chcete editovat"
82 133 notice_account_pending: "Váš účet byl vytvořen, nyní čeká na schválení administrátorem."
83 134 notice_default_data_loaded: Výchozí konfigurace úspěšně nahrána.
84 135
85 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: %s"
136 error_can_t_load_default_data: "Výchozí konfigurace nebyla nahrána: {{value}}"
86 137 error_scm_not_found: "Položka a/nebo revize neexistují v repository."
87 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: %s"
138 error_scm_command_failed: "Při pokusu o přístup k repository došlo k chybě: {{value}}"
88 139 error_issue_not_found_in_project: 'Úkol nebyl nalezen nebo nepatří k tomuto projektu'
89 140
90 mail_subject_lost_password: Vaše heslo (%s)
141 mail_subject_lost_password: "Vaše heslo ({{value}})"
91 142 mail_body_lost_password: 'Pro změnu vašeho hesla klikněte na následující odkaz:'
92 mail_subject_register: Aktivace účtu (%s)
143 mail_subject_register: "Aktivace účtu ({{value}})"
93 144 mail_body_register: 'Pro aktivaci vašeho účtu klikněte na následující odkaz:'
94 mail_body_account_information_external: Pomocí vašeho účtu "%s" se můžete přihlásit.
145 mail_body_account_information_external: "Pomocí vašeho účtu {{value}} se můžete přihlásit."
95 146 mail_body_account_information: Informace o vašem účtu
96 mail_subject_account_activation_request: Aktivace %s účtu
97 mail_body_account_activation_request: Byl zaregistrován nový uživatel "%s". Aktivace jeho účtu závisí na vašem potvrzení.
147 mail_subject_account_activation_request: "Aktivace {{value}} účtu"
148 mail_body_account_activation_request: "Byl zaregistrován nový uživatel {{value}}. Aktivace jeho účtu závisí na vašem potvrzení."
98 149
99 150 gui_validation_error: 1 chyba
100 gui_validation_error_plural: %d chyb(y)
151 gui_validation_error_plural: "{{count}} chyb(y)"
101 152
102 153 field_name: Název
103 154 field_description: Popis
@@ -231,13 +282,17 label_user_new: Nový uživatel
231 282 label_project: Projekt
232 283 label_project_new: Nový projekt
233 284 label_project_plural: Projekty
285 label_x_projects:
286 zero: no projects
287 one: 1 project
288 other: "{{count}} projects"
234 289 label_project_all: Všechny projekty
235 290 label_project_latest: Poslední projekty
236 291 label_issue: Úkol
237 292 label_issue_new: Nový úkol
238 293 label_issue_plural: Úkoly
239 294 label_issue_view_all: Všechny úkoly
240 label_issues_by: Úkoly od uživatele %s
295 label_issues_by: "Úkoly od uživatele {{value}}"
241 296 label_issue_added: Úkol přidán
242 297 label_issue_updated: Úkol aktualizován
243 298 label_document: Dokument
@@ -282,8 +337,6 label_help: Nápověda
282 337 label_reported_issues: Nahlášené úkoly
283 338 label_assigned_to_me_issues: Mé úkoly
284 339 label_last_login: Poslední přihlášení
285 label_last_updates: Poslední změna
286 label_last_updates_plural: %d poslední změny
287 340 label_registered_on: Registrován
288 341 label_activity: Aktivita
289 342 label_overall_activity: Celková aktivita
@@ -305,8 +358,8 label_string: Text
305 358 label_text: Dlouhý text
306 359 label_attribute: Atribut
307 360 label_attribute_plural: Atributy
308 label_download: %d Download
309 label_download_plural: %d Downloads
361 label_download: "{{count}} Download"
362 label_download_plural: "{{count}} Downloads"
310 363 label_no_data: Žádné položky
311 364 label_change_status: Změnit stav
312 365 label_history: Historie
@@ -337,6 +390,18 label_open_issues: otevřený
337 390 label_open_issues_plural: otevřené
338 391 label_closed_issues: uzavřený
339 392 label_closed_issues_plural: uzavřené
393 label_x_open_issues_abbr_on_total:
394 zero: 0 open / {{total}}
395 one: 1 open / {{total}}
396 other: "{{count}} open / {{total}}"
397 label_x_open_issues_abbr:
398 zero: 0 open
399 one: 1 open
400 other: "{{count}} open"
401 label_x_closed_issues_abbr:
402 zero: 0 closed
403 one: 1 closed
404 other: "{{count}} closed"
340 405 label_total: Celkem
341 406 label_permissions: Práva
342 407 label_current_status: Aktuální stav
@@ -354,11 +419,15 label_calendar: Kalendář
354 419 label_months_from: měsíců od
355 420 label_gantt: Ganttův graf
356 421 label_internal: Interní
357 label_last_changes: posledních %d změn
422 label_last_changes: "posledních {{count}} změn"
358 423 label_change_view_all: Zobrazit všechny změny
359 424 label_personalize_page: Přizpůsobit tuto stránku
360 425 label_comment: Komentář
361 426 label_comment_plural: Komentáře
427 label_x_comments:
428 zero: no comments
429 one: 1 comment
430 other: "{{count}} comments"
362 431 label_comment_add: Přidat komentáře
363 432 label_comment_added: Komentář přidán
364 433 label_comment_delete: Odstranit komentář
@@ -377,7 +446,7 label_all_time: vše
377 446 label_yesterday: včera
378 447 label_this_week: tento týden
379 448 label_last_week: minulý týden
380 label_last_n_days: posledních %d dnů
449 label_last_n_days: "posledních {{count}} dnů"
381 450 label_this_month: tento měsíc
382 451 label_last_month: minulý měsíc
383 452 label_this_year: tento rok
@@ -391,8 +460,8 label_day_plural: dny
391 460 label_repository: Repository
392 461 label_repository_plural: Repository
393 462 label_browse: Procházet
394 label_modification: %d změna
395 label_modification_plural: %d změn
463 label_modification: "{{count}} změna"
464 label_modification_plural: "{{count}} změn"
396 465 label_revision: Revize
397 466 label_revision_plural: Revizí
398 467 label_associated_revisions: Související verze
@@ -403,14 +472,13 label_latest_revision: Poslední revize
403 472 label_latest_revision_plural: Poslední revize
404 473 label_view_revisions: Zobrazit revize
405 474 label_max_size: Maximální velikost
406 label_on: 'zapnuto'
407 475 label_sort_highest: Přesunout na začátek
408 476 label_sort_higher: Přesunout nahoru
409 477 label_sort_lower: Přesunout dolů
410 478 label_sort_lowest: Přesunout na konec
411 479 label_roadmap: Plán
412 label_roadmap_due_in: Zbývá %s
413 label_roadmap_overdue: %s pozdě
480 label_roadmap_due_in: "Zbývá {{value}}"
481 label_roadmap_overdue: "{{value}} pozdě"
414 482 label_roadmap_no_issues: Pro tuto verzi nejsou žádné úkoly
415 483 label_search: Hledat
416 484 label_result_plural: Výsledky
@@ -428,8 +496,8 label_feed_plural: Příspěvky
428 496 label_changes_details: Detail všech změn
429 497 label_issue_tracking: Sledování úkolů
430 498 label_spent_time: Strávený čas
431 label_f_hour: %.2f hodina
432 label_f_hour_plural: %.2f hodin
499 label_f_hour: "{{value}} hodina"
500 label_f_hour_plural: "{{value}} hodin"
433 501 label_time_tracking: Sledování času
434 502 label_change_plural: Změny
435 503 label_statistics: Statistiky
@@ -477,12 +545,12 label_week: Týden
477 545 label_date_from: Od
478 546 label_date_to: Do
479 547 label_language_based: Podle výchozího jazyku
480 label_sort_by: Seřadit podle %s
548 label_sort_by: "Seřadit podle {{value}}"
481 549 label_send_test_email: Poslat testovací email
482 label_feeds_access_key_created_on: Přístupový klíč pro RSS byl vytvořen před %s
550 label_feeds_access_key_created_on: "Přístupový klíč pro RSS byl vytvořen před {{value}}"
483 551 label_module_plural: Moduly
484 label_added_time_by: 'Přidáno uživatelem %s před %s'
485 label_updated_time: 'Aktualizováno před %s'
552 label_added_time_by: "'Přidáno uživatelem {{author}} před {{age}}'"
553 label_updated_time: "Aktualizováno před {{value}}'"
486 554 label_jump_to_a_project: Zvolit projekt...
487 555 label_file_plural: Soubory
488 556 label_changeset_plural: Changesety
@@ -499,7 +567,7 label_user_mail_no_self_notified: "Nezasílat informace o mnou vytvořených zm
499 567 label_registration_activation_by_email: aktivace účtu emailem
500 568 label_registration_manual_activation: manuální aktivace účtu
501 569 label_registration_automatic_activation: automatická aktivace účtu
502 label_display_per_page: '%s na stránku'
570 label_display_per_page: "{{value}} na stránku'"
503 571 label_age: Věk
504 572 label_change_properties: Změnit vlastnosti
505 573 label_general: Obecné
@@ -562,30 +630,30 text_min_max_length_info: 0 znamená bez limitu
562 630 text_project_destroy_confirmation: Jste si jisti, že chcete odstranit tento projekt a všechna související data ?
563 631 text_workflow_edit: Vyberte roli a frontu k editaci workflow
564 632 text_are_you_sure: Jste si jisti?
565 text_journal_changed: změněno z %s na %s
566 text_journal_set_to: nastaveno na %s
633 text_journal_changed: "změněno z {{old}} na {{new}}"
634 text_journal_set_to: "nastaveno na {{value}}"
567 635 text_journal_deleted: odstraněno
568 636 text_tip_task_begin_day: úkol začíná v tento den
569 637 text_tip_task_end_day: úkol končí v tento den
570 638 text_tip_task_begin_end_day: úkol začíná a končí v tento den
571 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.'
572 text_caracters_maximum: %d znaků maximálně.
573 text_caracters_minimum: Musí být alespoň %d znaků dlouhé.
574 text_length_between: Délka mezi %d a %d znaky.
640 text_caracters_maximum: "{{count}} znaků maximálně."
641 text_caracters_minimum: "Musí být alespoň {{count}} znaků dlouhé."
642 text_length_between: "Délka mezi {{min}} a {{max}} znaky."
575 643 text_tracker_no_workflow: Pro tuto frontu není definován žádný workflow
576 644 text_unallowed_characters: Nepovolené znaky
577 645 text_comma_separated: Povoleno více hodnot (oddělěné čárkou).
578 646 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
579 text_issue_added: Úkol %s byl vytvořen uživatelem %s.
580 text_issue_updated: Úkol %s byl aktualizován uživatelem %s.
647 text_issue_added: "Úkol {{id}} byl vytvořen uživatelem {{author}}."
648 text_issue_updated: "Úkol {{id}} byl aktualizován uživatelem {{author}}."
581 649 text_wiki_destroy_confirmation: Opravdu si přejete odstranit tuto WIKI a celý její obsah?
582 text_issue_category_destroy_question: Některé úkoly (%d) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?
650 text_issue_category_destroy_question: "Některé úkoly ({{count}}) jsou přiřazeny k této kategorii. Co s nimi chtete udělat?"
583 651 text_issue_category_destroy_assignments: Zrušit přiřazení ke kategorii
584 652 text_issue_category_reassign_to: Přiřadit úkoly do této kategorie
585 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))."
586 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"
587 655 text_load_default_configuration: Nahrát výchozí konfiguraci
588 text_status_changed_by_changeset: Použito v changesetu %s.
656 text_status_changed_by_changeset: "Použito v changesetu {{value}}."
589 657 text_issues_destroy_confirmation: 'Opravdu si přejete odstranit všechny zvolené úkoly?'
590 658 text_select_project_modules: 'Aktivní moduly v tomto projektu:'
591 659 text_default_administrator_account_changed: Výchozí nastavení administrátorského účtu změněno
@@ -623,15 +691,15 enumeration_doc_categories: Kategorie dokumentů
623 691 enumeration_activities: Aktivity (sledování času)
624 692 error_scm_annotate: "Položka neexistuje nebo nemůže být komentována."
625 693 label_planning: Plánování
626 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
627 label_and_its_subprojects: %s and its subprojects
628 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
629 mail_subject_reminder: "%d issue(s) due in the next days"
630 text_user_wrote: '%s wrote:'
694 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
695 label_and_its_subprojects: "{{value}} and its subprojects"
696 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
697 mail_subject_reminder: "{{count}} issue(s) due in the next days"
698 text_user_wrote: "{{value}} wrote:'"
631 699 label_duplicated_by: duplicated by
632 700 setting_enabled_scm: Enabled SCM
633 701 text_enumeration_category_reassign_to: 'Reassign them to this value:'
634 text_enumeration_destroy_question: '%d objects are assigned to this value.'
702 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
635 703 label_incoming_emails: Incoming emails
636 704 label_generate_key: Generate a key
637 705 setting_mail_handler_api_enabled: Enable WS for incoming emails
@@ -697,18 +765,14 label_example: Example
697 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."
698 766 permission_edit_own_messages: Edit own messages
699 767 permission_delete_own_messages: Delete own messages
700 label_user_activity: "%s's activity"
701 label_updated_time_by: Updated by %s %s ago
768 label_user_activity: "{{value}}'s activity"
769 label_updated_time_by: "Updated by {{author}} {{age}} ago"
702 770 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
703 771 setting_diff_max_lines_displayed: Max number of diff lines displayed
704 772 text_plugin_assets_writable: Plugin assets directory writable
705 warning_attachments_not_saved: "%d file(s) could not be saved."
773 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
706 774 button_create_and_continue: Create and continue
707 775 text_custom_field_possible_values_info: 'One line for each value'
708 776 label_display: Display
709 777 field_editable: Editable
710 778 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
@@ -1,47 +1,129
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Danish translation file for standard Ruby on Rails internationalization
2 # by Lars Hoeg (http://www.lenio.dk/)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dage
10 actionview_datehelper_time_in_words_hour_about: cirka en time
11 actionview_datehelper_time_in_words_hour_about_plural: cirka %d timer
12 actionview_datehelper_time_in_words_hour_about_single: cirka en time
13 actionview_datehelper_time_in_words_minute: 1 minut
14 actionview_datehelper_time_in_words_minute_half: et halvt minut
15 actionview_datehelper_time_in_words_minute_less_than: mindre end et minut
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
17 actionview_datehelper_time_in_words_minute_single: 1 minut
18 actionview_datehelper_time_in_words_second_less_than: mindre end et sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre end %d sekunder
20 actionview_instancetag_blank_option: Vælg venligst
4 da:
5 date:
6 formats:
7 default: "%d.%m.%Y"
8 short: "%e. %b %Y"
9 long: "%e. %B %Y"
10
11 day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
12 abbr_day_names: [, ma, ti, 'on', to, fr, ]
13 month_names: [~, januar, februar, marts, april, maj, juni, juli, august, september, oktober, november, december]
14 abbr_month_names: [~, jan, feb, mar, apr, maj, jun, jul, aug, sep, okt, nov, dec]
15 order: [ :day, :month, :year ]
16
17 time:
18 formats:
19 default: "%e. %B %Y, %H:%M"
20 short: "%e. %b %Y, %H:%M"
21 long: "%A, %e. %B %Y, %H:%M"
22 am: ""
23 pm: ""
24
25 support:
26 array:
27 sentence_connector: "og"
28 skip_last_comma: true
29
30 datetime:
31 distance_in_words:
32 half_a_minute: "et halvt minut"
33 less_than_x_seconds:
34 one: "mindre end et sekund"
35 other: "mindre end {{count}} sekunder"
36 x_seconds:
37 one: "et sekund"
38 other: "{{count}} sekunder"
39 less_than_x_minutes:
40 one: "mindre end et minut"
41 other: "mindre end {{count}} minutter"
42 x_minutes:
43 one: "et minut"
44 other: "{{count}} minutter"
45 about_x_hours:
46 one: "cirka en time"
47 other: "cirka {{count}} timer"
48 x_days:
49 one: "en dag"
50 other: "{{count}} dage"
51 about_x_months:
52 one: "cirka en måned"
53 other: "cirka {{count}} måneder"
54 x_months:
55 one: "en måned"
56 other: "{{count}} måneder"
57 about_x_years:
58 one: "cirka et år"
59 other: "cirka {{count}} år"
60 over_x_years:
61 one: "mere end et år"
62 other: "mere end {{count}} år"
21 63
22 activerecord_error_inclusion: er ikke i listen
23 activerecord_error_exclusion: er reserveret
24 activerecord_error_invalid: er ugyldig
25 activerecord_error_confirmation: passer ikke bekræftelsen
26 activerecord_error_accepted: skal accepteres
27 activerecord_error_empty: kan ikke være tom
28 activerecord_error_blank: kan ikke være blank
29 activerecord_error_too_long: er for lang
30 activerecord_error_too_short: er for kort
31 activerecord_error_wrong_length: har den forkerte længde
32 activerecord_error_taken: er allerede valgt
33 activerecord_error_not_a_number: er ikke et nummer
34 activerecord_error_not_a_date: er en ugyldig dato
35 activerecord_error_greater_than_start_date: skal være senere end startdatoen
36 activerecord_error_not_same_project: høre ikke til samme projekt
37 activerecord_error_circular_dependency: Denne relation vil skabe et afhængighedsforhold
64 number:
65 format:
66 separator: ","
67 delimiter: "."
68 precision: 3
69 currency:
70 format:
71 format: "%u %n"
72 unit: "DKK"
73 separator: ","
74 delimiter: "."
75 precision: 2
76 precision:
77 format:
78 # separator:
79 delimiter: ""
80 # precision:
81 human:
82 format:
83 # separator:
84 delimiter: ""
85 precision: 1
86 storage_units: [Bytes, KB, MB, GB, TB]
87 percentage:
88 format:
89 # separator:
90 delimiter: ""
91 # precision:
92
93 activerecord:
94 errors:
95 messages:
96 inclusion: "er ikke i listen"
97 exclusion: "er reserveret"
98 invalid: "er ikke gyldig"
99 confirmation: "stemmer ikke overens"
100 accepted: "skal accepteres"
101 empty: "må ikke udelades"
102 blank: "skal udfyldes"
103 too_long: "er for lang (maksimum {{count}} tegn)"
104 too_short: "er for kort (minimum {{count}} tegn)"
105 wrong_length: "har forkert længde (skulle være {{count}} tegn)"
106 taken: "er allerede brugt"
107 not_a_number: "er ikke et tal"
108 greater_than: "skal være større end {{count}}"
109 greater_than_or_equal_to: "skal være større end eller lig med {{count}}"
110 equal_to: "skal være lig med {{count}}"
111 less_than: "skal være mindre end {{count}}"
112 less_than_or_equal_to: "skal være mindre end eller lig med {{count}}"
113 odd: "skal være ulige"
114 even: "skal være lige"
115 greater_than_start_date: "skal være senere end startdatoen"
116 not_same_project: "høre ikke til samme projekt"
117 circular_dependency: "Denne relation vil skabe et afhængighedsforhold"
118
119 template:
120 header:
121 one: "En fejl forhindrede {{model}} i at blive gemt"
122 other: "{{count}} fejl forhindrede denne {{model}} i at blive gemt"
123 body: "Der var problemer med følgende felter:"
124
125 actionview_instancetag_blank_option: Vælg venligst
38 126
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
45 127 general_text_No: 'Nej'
46 128 general_text_Yes: 'Ja'
47 129 general_text_no: 'nej'
@@ -50,7 +132,6 general_lang_name: 'Danish (Dansk)'
50 132 general_csv_separator: ','
51 133 general_csv_encoding: ISO-8859-1
52 134 general_pdf_encoding: ISO-8859-1
53 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
54 135 general_first_day_of_week: '1'
55 136
56 137 notice_account_updated: Kontoen er opdateret.
@@ -69,29 +150,29 notice_successful_connection: Succesfuld forbindelse.
69 150 notice_file_not_found: Siden du forsøger at tilgå, eksisterer ikke eller er blevet fjernet.
70 151 notice_locking_conflict: Data er opdateret af en anden bruger.
71 152 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)
153 notice_email_sent: "En email er sendt til {{value}}"
154 notice_email_error: "En fejl opstod under afsendelse af email ({{value}})"
74 155 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."
156 notice_failed_to_save_issues: "Det mislykkedes at gemme {{count}} sage(r) {{total}} valgt: {{ids}}."
76 157 notice_no_issue_selected: "Ingen sag er valgt! Vælg venligst hvilke emner du vil rette."
77 158 notice_account_pending: "Din konto er oprettet, og afventer administrators godkendelse."
78 159 notice_default_data_loaded: Standardopsætningen er indlæst.
79 160
80 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: %s"
161 error_can_t_load_default_data: "Standardopsætning kunne ikke indlæses: {{value}}"
81 162 error_scm_not_found: "Adgang og/eller revision blev ikke fundet i det valgte repository."
82 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: %s"
163 error_scm_command_failed: "En fejl opstod under fobindelsen til det valgte repository: {{value}}"
83 164
84 mail_subject_lost_password: Dit %s kodeord
165 mail_subject_lost_password: "Dit {{value}} kodeord"
85 166 mail_body_lost_password: 'For at ændre dit kodeord, klik dette link:'
86 mail_subject_register: %s kontoaktivering
167 mail_subject_register: "{{value}} kontoaktivering"
87 168 mail_body_register: 'For at aktivere din konto, klik dette link:'
88 mail_body_account_information_external: Du kan bruge din "%s" konto til at logge ind.
169 mail_body_account_information_external: "Du kan bruge din {{value}} konto til at logge ind."
89 170 mail_body_account_information: Din kontoinformation
90 mail_subject_account_activation_request: %s kontoaktivering
91 mail_body_account_activation_request: 'En ny bruger (%s) er registreret. Godkend venligst kontoen:'
171 mail_subject_account_activation_request: "{{value}} kontoaktivering"
172 mail_body_account_activation_request: "En ny bruger ({{value}}) er registreret. Godkend venligst kontoen:'"
92 173
93 174 gui_validation_error: 1 fejl
94 gui_validation_error_plural: %d fejl
175 gui_validation_error_plural: "{{count}} fejl"
95 176
96 177 field_name: Navn
97 178 field_description: Beskrivelse
@@ -221,13 +302,17 label_user_new: Ny bruger
221 302 label_project: Projekt
222 303 label_project_new: Nyt projekt
223 304 label_project_plural: Projekter
305 label_x_projects:
306 zero: no projects
307 one: 1 project
308 other: "{{count}} projects"
224 309 label_project_all: Alle projekter
225 310 label_project_latest: Seneste projekter
226 311 label_issue: Sag
227 312 label_issue_new: Opret sag
228 313 label_issue_plural: Sager
229 314 label_issue_view_all: Vis alle sager
230 label_issues_by: Sager fra %s
315 label_issues_by: "Sager fra {{value}}"
231 316 label_issue_added: Sagen er oprettet
232 317 label_issue_updated: Sagen er opdateret
233 318 label_document: Dokument
@@ -272,8 +357,6 label_help: Hjælp
272 357 label_reported_issues: Rapporterede sager
273 358 label_assigned_to_me_issues: Sager tildelt til mig
274 359 label_last_login: Sidste forbindelse
275 label_last_updates: Sidst opdateret
276 label_last_updates_plural: %d sidst opdateret
277 360 label_registered_on: Registeret den
278 361 label_activity: Aktivitet
279 362 label_new: Ny
@@ -294,8 +377,8 label_string: Tekst
294 377 label_text: Lang tekst
295 378 label_attribute: Attribut
296 379 label_attribute_plural: Attributter
297 label_download: %d Download
298 label_download_plural: %d Downloads
380 label_download: "{{count}} Download"
381 label_download_plural: "{{count}} Downloads"
299 382 label_no_data: Ingen data at vise
300 383 label_change_status: Ændringsstatus
301 384 label_history: Historik
@@ -326,6 +409,18 label_open_issues: åben
326 409 label_open_issues_plural: åbne
327 410 label_closed_issues: lukket
328 411 label_closed_issues_plural: lukkede
412 label_x_open_issues_abbr_on_total:
413 zero: 0 open / {{total}}
414 one: 1 open / {{total}}
415 other: "{{count}} open / {{total}}"
416 label_x_open_issues_abbr:
417 zero: 0 open
418 one: 1 open
419 other: "{{count}} open"
420 label_x_closed_issues_abbr:
421 zero: 0 closed
422 one: 1 closed
423 other: "{{count}} closed"
329 424 label_total: Total
330 425 label_permissions: Rettigheder
331 426 label_current_status: Nuværende status
@@ -343,11 +438,15 label_calendar: Kalender
343 438 label_months_from: måneder frem
344 439 label_gantt: Gantt
345 440 label_internal: Intern
346 label_last_changes: sidste %d ændringer
441 label_last_changes: "sidste {{count}} ændringer"
347 442 label_change_view_all: Vis alle ændringer
348 443 label_personalize_page: Tilret denne side
349 444 label_comment: Kommentar
350 445 label_comment_plural: Kommentarer
446 label_x_comments:
447 zero: no comments
448 one: 1 comment
449 other: "{{count}} comments"
351 450 label_comment_add: Tilføj en kommentar
352 451 label_comment_added: Kommentaren er tilføjet
353 452 label_comment_delete: Slet kommentar
@@ -366,7 +465,7 label_all_time: altid
366 465 label_yesterday: i går
367 466 label_this_week: denne uge
368 467 label_last_week: sidste uge
369 label_last_n_days: sidste %d dage
468 label_last_n_days: "sidste {{count}} dage"
370 469 label_this_month: denne måned
371 470 label_last_month: sidste måned
372 471 label_this_year: dette år
@@ -380,8 +479,8 label_day_plural: dage
380 479 label_repository: Repository
381 480 label_repository_plural: Repositories
382 481 label_browse: Gennemse
383 label_modification: %d ændring
384 label_modification_plural: %d ændringer
482 label_modification: "{{count}} ændring"
483 label_modification_plural: "{{count}} ændringer"
385 484 label_revision: Revision
386 485 label_revision_plural: Revisioner
387 486 label_associated_revisions: Tilnyttede revisioner
@@ -392,14 +491,13 label_latest_revision: Seneste revision
392 491 label_latest_revision_plural: Seneste revisioner
393 492 label_view_revisions: Se revisioner
394 493 label_max_size: Maximal størrelse
395 label_on: 'til'
396 494 label_sort_highest: Flyt til toppen
397 495 label_sort_higher: Flyt op
398 496 label_sort_lower: Flyt ned
399 497 label_sort_lowest: Flyt til bunden
400 498 label_roadmap: Roadmap
401 499 label_roadmap_due_in: Deadline
402 label_roadmap_overdue: %s forsinket
500 label_roadmap_overdue: "{{value}} forsinket"
403 501 label_roadmap_no_issues: Ingen sager til denne version
404 502 label_search: Søg
405 503 label_result_plural: Resultater
@@ -417,8 +515,8 label_feed_plural: Feeds
417 515 label_changes_details: Detaljer for alle ænringer
418 516 label_issue_tracking: Sags søgning
419 517 label_spent_time: Brugt tid
420 label_f_hour: %.2f time
421 label_f_hour_plural: %.2f timer
518 label_f_hour: "{{value}} time"
519 label_f_hour_plural: "{{value}} timer"
422 520 label_time_tracking: Tidsstyring
423 521 label_change_plural: Ændringer
424 522 label_statistics: Statistik
@@ -466,12 +564,12 label_week: Uge
466 564 label_date_from: Fra
467 565 label_date_to: Til
468 566 label_language_based: Baseret på brugerens sprog
469 label_sort_by: Sorter efter %s
567 label_sort_by: "Sorter efter {{value}}"
470 568 label_send_test_email: Send en test email
471 label_feeds_access_key_created_on: RSS adgangsnøgle danet for %s siden
569 label_feeds_access_key_created_on: "RSS adgangsnøgle danet for {{value}} siden"
472 570 label_module_plural: Moduler
473 label_added_time_by: Tilføjet af %s for %s siden
474 label_updated_time: Opdateret for %s siden
571 label_added_time_by: "Tilføjet af {{author}} for {{age}} siden"
572 label_updated_time: "Opdateret for {{value}} siden"
475 573 label_jump_to_a_project: Skift til projekt...
476 574 label_file_plural: Filer
477 575 label_changeset_plural: Ændringer
@@ -488,7 +586,7 label_user_mail_no_self_notified: "Jeg ønsker ikke besked, om ændring foretage
488 586 label_registration_activation_by_email: kontoaktivering på email
489 587 label_registration_manual_activation: manuel kontoaktivering
490 588 label_registration_automatic_activation: automatisk kontoaktivering
491 label_display_per_page: 'Per side: %s'
589 label_display_per_page: "Per side: {{value}}'"
492 590 label_age: Alder
493 591 label_change_properties: Ændre indstillinger
494 592 label_general: Generalt
@@ -546,30 +644,30 text_min_max_length_info: 0 betyder ingen begrænsninger
546 644 text_project_destroy_confirmation: Er du sikker på at du vil slette dette projekt og alle relaterede data?
547 645 text_workflow_edit: Vælg en rolle samt en type for at redigere arbejdsgangen
548 646 text_are_you_sure: Er du sikker?
549 text_journal_changed: ændret fra %s til %s
550 text_journal_set_to: sat til %s
647 text_journal_changed: "ændret fra {{old}} til {{new}}"
648 text_journal_set_to: "sat til {{value}}"
551 649 text_journal_deleted: slettet
552 650 text_tip_task_begin_day: opgaven begynder denne dag
553 651 text_tip_task_end_day: opaven slutter denne dag
554 652 text_tip_task_begin_end_day: opgaven begynder og slutter denne dag
555 653 text_project_identifier_info: 'Små bogstaver (a-z), numre og bindestreg er tilladt.<br />Når den er gemt, kan indifikatoren ikke rettes.'
556 text_caracters_maximum: max %d karakterer.
557 text_caracters_minimum: Skal være mindst %d karakterer lang.
558 text_length_between: Længde skal være mellem %d og %d karakterer.
654 text_caracters_maximum: "max {{count}} karakterer."
655 text_caracters_minimum: "Skal være mindst {{count}} karakterer lang."
656 text_length_between: "Længde skal være mellem {{min}} og {{max}} karakterer."
559 657 text_tracker_no_workflow: Ingen arbejdsgang defineret for denne type
560 658 text_unallowed_characters: Ikke tilladte karakterer
561 659 text_comma_separated: Adskillige værdier tilladt (adskilt med komma).
562 660 text_issues_ref_in_commit_messages: Referer og løser sager i commit-beskeder
563 text_issue_added: Sag %s er rapporteret af %s.
564 text_issue_updated: Sag %s er blevet opdateret af %s.
661 text_issue_added: "Sag {{id}} er rapporteret af {{author}}."
662 text_issue_updated: "Sag {{id}} er blevet opdateret af {{author}}."
565 663 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wiki og dens indhold?
566 text_issue_category_destroy_question: Nogle sager (%d) er tildelt denne kategori. Hvad ønsker du at gøre?
664 text_issue_category_destroy_question: "Nogle sager ({{count}}) er tildelt denne kategori. Hvad ønsker du at gøre?"
567 665 text_issue_category_destroy_assignments: Slet tildelinger af kategori
568 666 text_issue_category_reassign_to: Tildel sager til denne kategori
569 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)."
570 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."
571 669 text_load_default_configuration: Indlæs standardopsætningen
572 text_status_changed_by_changeset: Anvendt i ændring %s.
670 text_status_changed_by_changeset: "Anvendt i ændring {{value}}."
573 671 text_issues_destroy_confirmation: 'Er du sikker du ønsker at slette den/de valgte sag(er)?'
574 672 text_select_project_modules: 'Vælg moduler er skal være aktiveret for dette projekt:'
575 673 text_default_administrator_account_changed: Standard administratorkonto ændret
@@ -619,7 +717,7 label_overall_activity: Overordnet aktivitet
619 717 setting_default_projects_public: Nye projekter er offentlige som standard
620 718 error_scm_annotate: "The entry does not exist or can not be annotated."
621 719 label_planning: Planlægning
622 text_subprojects_destroy_warning: 'Dets underprojekter(er): %s vil også blive slettet.'
720 text_subprojects_destroy_warning: "Dets underprojekter(er): {{value}} vil også blive slettet.'"
623 721 permission_edit_issues: Edit issues
624 722 setting_diff_max_lines_displayed: Max number of diff lines displayed
625 723 permission_edit_own_issue_notes: Edit own notes
@@ -646,7 +744,7 text_email_delivery_not_configured: "Email delivery is not configured, and notif
646 744 permission_protect_wiki_pages: Protect wiki pages
647 745 permission_manage_documents: Manage documents
648 746 permission_add_issue_watchers: Add watchers
649 warning_attachments_not_saved: "%d file(s) could not be saved."
747 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
650 748 permission_comment_news: Comment news
651 749 text_enumeration_category_reassign_to: 'Reassign them to this value:'
652 750 permission_select_project_modules: Select project modules
@@ -654,39 +752,39 permission_view_gantt: View gantt chart
654 752 permission_delete_messages: Delete messages
655 753 permission_move_issues: Move issues
656 754 permission_edit_wiki_pages: Edit wiki pages
657 label_user_activity: "%s's activity"
755 label_user_activity: "{{value}}'s activity"
658 756 permission_manage_issue_relations: Manage issue relations
659 757 label_issue_watchers: Watchers
660 758 permission_delete_wiki_pages: Delete wiki pages
661 759 notice_unable_delete_version: Unable to delete version.
662 760 permission_view_wiki_edits: View wiki history
663 761 field_editable: Editable
664 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
762 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
665 763 label_duplicated_by: duplicated by
666 764 permission_manage_boards: Manage boards
667 765 permission_delete_wiki_pages_attachments: Delete attachments
668 766 permission_view_messages: View messages
669 text_enumeration_destroy_question: '%d objects are assigned to this value.'
767 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
670 768 permission_manage_files: Manage files
671 769 permission_add_messages: Post messages
672 770 permission_edit_issue_notes: Edit notes
673 771 permission_manage_news: Manage news
674 772 text_plugin_assets_writable: Plugin assets directory writable
675 773 label_display: Display
676 label_and_its_subprojects: %s and its subprojects
774 label_and_its_subprojects: "{{value}} and its subprojects"
677 775 permission_view_calendar: View calender
678 776 button_create_and_continue: Create and continue
679 777 setting_gravatar_enabled: Use Gravatar user icons
680 label_updated_time_by: Updated by %s %s ago
778 label_updated_time_by: "Updated by {{author}} {{age}} ago"
681 779 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
682 text_user_wrote: '%s wrote:'
780 text_user_wrote: "{{value}} wrote:'"
683 781 setting_mail_handler_api_enabled: Enable WS for incoming emails
684 782 permission_delete_issues: Delete issues
685 783 permission_view_documents: View documents
686 784 permission_browse_repository: Browse repository
687 785 permission_manage_repository: Manage repository
688 786 permission_manage_members: Manage members
689 mail_subject_reminder: "%d issue(s) due in the next days"
787 mail_subject_reminder: "{{count}} issue(s) due in the next days"
690 788 permission_add_issue_notes: Add notes
691 789 permission_edit_messages: Edit messages
692 790 permission_view_issue_watchers: View watchers list
@@ -705,7 +803,3 permission_edit_time_entries: Edit time logs
705 803 general_csv_decimal_separator: '.'
706 804 permission_edit_own_time_entries: Edit own time logs
707 805 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
708 field_identity_url: OpenID URL
709 setting_openid: Allow OpenID login and registration
710 label_login_with_open_id_option: or login with OpenID
711 field_watcher: Watcher
@@ -1,47 +1,129
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # German translations for Ruby on Rails
2 # by Clemens Kofler (clemens@railway.at)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,März,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mär,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Dez
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 Tag
9 actionview_datehelper_time_in_words_day_plural: %d Tagen
10 actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde
11 actionview_datehelper_time_in_words_hour_about_plural: ungefähr %d Stunden
12 actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde
13 actionview_datehelper_time_in_words_minute: 1 Minute
14 actionview_datehelper_time_in_words_minute_half: einer halben Minute
15 actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute
16 actionview_datehelper_time_in_words_minute_plural: %d Minuten
17 actionview_datehelper_time_in_words_minute_single: 1 Minute
18 actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde
19 actionview_datehelper_time_in_words_second_less_than_plural: weniger als %d Sekunden
20 actionview_instancetag_blank_option: Bitte auswählen
4 de:
5 date:
6 formats:
7 default: "%d.%m.%Y"
8 short: "%e. %b"
9 long: "%e. %B %Y"
10 only_day: "%e"
11
12 day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
13 abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
14 month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
15 abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
16 order: [ :day, :month, :year ]
17
18 time:
19 formats:
20 default: "%A, %e. %B %Y, %H:%M Uhr"
21 short: "%e. %B, %H:%M Uhr"
22 long: "%A, %e. %B %Y, %H:%M Uhr"
23 time: "%H:%M"
24
25 am: "vormittags"
26 pm: "nachmittags"
27
28 datetime:
29 distance_in_words:
30 half_a_minute: 'eine halbe Minute'
31 less_than_x_seconds:
32 zero: 'weniger als 1 Sekunde'
33 one: 'weniger als 1 Sekunde'
34 other: 'weniger als {{count}} Sekunden'
35 x_seconds:
36 one: '1 Sekunde'
37 other: '{{count}} Sekunden'
38 less_than_x_minutes:
39 zero: 'weniger als 1 Minute'
40 one: 'weniger als eine Minute'
41 other: 'weniger als {{count}} Minuten'
42 x_minutes:
43 one: '1 Minute'
44 other: '{{count}} Minuten'
45 about_x_hours:
46 one: 'etwa 1 Stunde'
47 other: 'etwa {{count}} Stunden'
48 x_days:
49 one: '1 Tag'
50 other: '{{count}} Tage'
51 about_x_months:
52 one: 'etwa 1 Monat'
53 other: 'etwa {{count}} Monate'
54 x_months:
55 one: '1 Monat'
56 other: '{{count}} Monate'
57 about_x_years:
58 one: 'etwa 1 Jahr'
59 other: 'etwa {{count}} Jahre'
60 over_x_years:
61 one: 'mehr als 1 Jahr'
62 other: 'mehr als {{count}} Jahre'
21 63
22 activerecord_error_inclusion: ist nicht in der Liste enthalten
23 activerecord_error_exclusion: ist reserviert
24 activerecord_error_invalid: ist unzulässig
25 activerecord_error_confirmation: passt nicht zur Bestätigung
26 activerecord_error_accepted: muss angenommen werden
27 activerecord_error_empty: darf nicht leer sein
28 activerecord_error_blank: darf nicht leer sein
29 activerecord_error_too_long: ist zu lang
30 activerecord_error_too_short: ist zu kurz
31 activerecord_error_wrong_length: hat die falsche Länge
32 activerecord_error_taken: ist bereits vergeben
33 activerecord_error_not_a_number: ist keine Zahl
34 activerecord_error_not_a_date: ist kein gültiges Datum
35 activerecord_error_greater_than_start_date: muss größer als Anfangsdatum sein
36 activerecord_error_not_same_project: gehört nicht zum selben Projekt
37 activerecord_error_circular_dependency: Diese Beziehung würde eine zyklische Abhängigkeit erzeugen
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
86
87 support:
88 array:
89 sentence_connector: "und"
90 skip_last_comma: true
91
92 activerecord:
93 errors:
94 template:
95 header:
96 one: "Konnte dieses {{model}} Objekt nicht speichern: 1 Fehler."
97 other: "Konnte dieses {{model}} Objekt nicht speichern: {{count}} Fehler."
98 body: "Bitte überprüfen Sie die folgenden Felder:"
99
100 messages:
101 inclusion: "ist kein gültiger Wert"
102 exclusion: "ist nicht verfügbar"
103 invalid: "ist nicht gültig"
104 confirmation: "stimmt nicht mit der Bestätigung überein"
105 accepted: "muss akzeptiert werden"
106 empty: "muss ausgefüllt werden"
107 blank: "muss ausgefüllt werden"
108 too_long: "ist zu lang (nicht mehr als {{count}} Zeichen)"
109 too_short: "ist zu kurz (nicht weniger als {{count}} Zeichen)"
110 wrong_length: "hat die falsche Länge (muss genau {{count}} Zeichen haben)"
111 taken: "ist bereits vergeben"
112 not_a_number: "ist keine Zahl"
113 greater_than: "muss größer als {{count}} sein"
114 greater_than_or_equal_to: "muss größer oder gleich {{count}} sein"
115 equal_to: "muss genau {{count}} sein"
116 less_than: "muss kleiner als {{count}} sein"
117 less_than_or_equal_to: "muss kleiner oder gleich {{count}} sein"
118 odd: "muss ungerade sein"
119 even: "muss gerade sein"
120 greater_than_start_date: "muss größer als Anfangsdatum sein"
121 not_same_project: "gehört nicht zum selben Projekt"
122 circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen"
123 models:
124
125 actionview_instancetag_blank_option: Bitte auswählen
38 126
39 general_fmt_age: %d Jahr
40 general_fmt_age_plural: %d Jahre
41 general_fmt_date: %%d.%%m.%%y
42 general_fmt_datetime: %%d.%%m.%%y, %%H:%%M
43 general_fmt_datetime_short: %%d.%%m, %%H:%%M
44 general_fmt_time: %%H:%%M
45 127 general_text_No: 'Nein'
46 128 general_text_Yes: 'Ja'
47 129 general_text_no: 'nein'
@@ -51,7 +133,6 general_csv_separator: ';'
51 133 general_csv_decimal_separator: ','
52 134 general_csv_encoding: ISO-8859-1
53 135 general_pdf_encoding: ISO-8859-1
54 general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag
55 136 general_first_day_of_week: '1'
56 137
57 138 notice_account_updated: Konto wurde erfolgreich aktualisiert.
@@ -70,36 +151,36 notice_successful_connection: Verbindung erfolgreich.
70 151 notice_file_not_found: Anhang existiert nicht oder ist gelöscht worden.
71 152 notice_locking_conflict: Datum wurde von einem anderen Benutzer geändert.
72 153 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).
154 notice_email_sent: "Eine E-Mail wurde an {{value}} gesendet."
155 notice_email_error: "Beim Senden einer E-Mail ist ein Fehler aufgetreten ({{value}})."
75 156 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."
157 notice_failed_to_save_issues: "{{count}} von {{total}} ausgewählten Tickets konnte(n) nicht gespeichert werden: {{ids}}."
77 158 notice_no_issue_selected: "Kein Ticket ausgewählt! Bitte wählen Sie die Tickets, die Sie bearbeiten möchten."
78 159 notice_account_pending: "Ihr Konto wurde erstellt und wartet jetzt auf die Genehmigung des Administrators."
79 160 notice_default_data_loaded: Die Standard-Konfiguration wurde erfolgreich geladen.
80 161 notice_unable_delete_version: Die Version konnte nicht gelöscht werden
81 162
82 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: %s"
163 error_can_t_load_default_data: "Die Standard-Konfiguration konnte nicht geladen werden: {{value}}"
83 164 error_scm_not_found: Eintrag und/oder Revision existiert nicht im Projektarchiv.
84 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: %s"
165 error_scm_command_failed: "Beim Zugriff auf das Projektarchiv ist ein Fehler aufgetreten: {{value}}"
85 166 error_scm_annotate: "Der Eintrag existiert nicht oder kann nicht annotiert werden."
86 167 error_issue_not_found_in_project: 'Das Ticket wurde nicht gefunden oder gehört nicht zu diesem Projekt.'
87 168
88 warning_attachments_not_saved: "%d Datei(en) konnten nicht gespeichert werden."
169 warning_attachments_not_saved: "{{count}} Datei(en) konnten nicht gespeichert werden."
89 170
90 mail_subject_lost_password: Ihr %s Kennwort
171 mail_subject_lost_password: "Ihr {{value}} Kennwort"
91 172 mail_body_lost_password: 'Benutzen Sie den folgenden Link, um Ihr Kennwort zu ändern:'
92 mail_subject_register: %s Kontoaktivierung
173 mail_subject_register: "{{value}} Kontoaktivierung"
93 174 mail_body_register: 'Um Ihr Konto zu aktivieren, benutzen Sie folgenden Link:'
94 mail_body_account_information_external: Sie können sich mit Ihrem Konto "%s" an anmelden.
175 mail_body_account_information_external: "Sie können sich mit Ihrem Konto {{value}} an anmelden."
95 176 mail_body_account_information: Ihre Konto-Informationen
96 mail_subject_account_activation_request: Antrag auf %s Kontoaktivierung
97 mail_body_account_activation_request: 'Ein neuer Benutzer (%s) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'
98 mail_subject_reminder: "%d Tickets müssen in den nächsten Tagen abgegeben werden"
99 mail_body_reminder: "%d Tickets, die Ihnen zugewiesen sind, müssen in den nächsten %d Tagen abgegeben werden:"
177 mail_subject_account_activation_request: "Antrag auf {{value}} Kontoaktivierung"
178 mail_body_account_activation_request: "Ein neuer Benutzer ({{value}}) hat sich registriert. Sein Konto wartet auf Ihre Genehmigung:'"
179 mail_subject_reminder: "{{count}} Tickets müssen in den nächsten Tagen abgegeben werden"
180 mail_body_reminder: "{{count}} Tickets, die Ihnen zugewiesen sind, müssen in den nächsten {{days}} Tagen abgegeben werden:"
100 181
101 182 gui_validation_error: 1 Fehler
102 gui_validation_error_plural: %d Fehler
183 gui_validation_error_plural: "{{count}} Fehler"
103 184
104 185 field_name: Name
105 186 field_description: Beschreibung
@@ -291,13 +372,17 label_user_new: Neuer Benutzer
291 372 label_project: Projekt
292 373 label_project_new: Neues Projekt
293 374 label_project_plural: Projekte
375 label_x_projects:
376 zero: no projects
377 one: 1 project
378 other: "{{count}} projects"
294 379 label_project_all: Alle Projekte
295 380 label_project_latest: Neueste Projekte
296 381 label_issue: Ticket
297 382 label_issue_new: Neues Ticket
298 383 label_issue_plural: Tickets
299 384 label_issue_view_all: Alle Tickets anzeigen
300 label_issues_by: Tickets von %s
385 label_issues_by: "Tickets von {{value}}"
301 386 label_issue_added: Ticket hinzugefügt
302 387 label_issue_updated: Ticket aktualisiert
303 388 label_document: Dokument
@@ -342,12 +427,10 label_help: Hilfe
342 427 label_reported_issues: Gemeldete Tickets
343 428 label_assigned_to_me_issues: Mir zugewiesen
344 429 label_last_login: Letzte Anmeldung
345 label_last_updates: zuletzt aktualisiert
346 label_last_updates_plural: %d zuletzt aktualisierten
347 430 label_registered_on: Angemeldet am
348 431 label_activity: Aktivität
349 432 label_overall_activity: Aktivität aller Projekte anzeigen
350 label_user_activity: "Aktivität von %s"
433 label_user_activity: "Aktivität von {{value}}"
351 434 label_new: Neu
352 435 label_logged_as: Angemeldet als
353 436 label_environment: Environment
@@ -356,7 +439,7 label_auth_source: Authentifizierungs-Modus
356 439 label_auth_source_new: Neuer Authentifizierungs-Modus
357 440 label_auth_source_plural: Authentifizierungs-Arten
358 441 label_subproject_plural: Unterprojekte
359 label_and_its_subprojects: %s und dessen Unterprojekte
442 label_and_its_subprojects: "{{value}} und dessen Unterprojekte"
360 443 label_min_max_length: Länge (Min. - Max.)
361 444 label_list: Liste
362 445 label_date: Datum
@@ -367,8 +450,8 label_string: Text
367 450 label_text: Langer Text
368 451 label_attribute: Attribut
369 452 label_attribute_plural: Attribute
370 label_download: %d Download
371 label_download_plural: %d Downloads
453 label_download: "{{count}} Download"
454 label_download_plural: "{{count}} Downloads"
372 455 label_no_data: Nichts anzuzeigen
373 456 label_change_status: Statuswechsel
374 457 label_history: Historie
@@ -399,6 +482,18 label_open_issues: offen
399 482 label_open_issues_plural: offen
400 483 label_closed_issues: geschlossen
401 484 label_closed_issues_plural: geschlossen
485 label_x_open_issues_abbr_on_total:
486 zero: 0 open / {{total}}
487 one: 1 open / {{total}}
488 other: "{{count}} open / {{total}}"
489 label_x_open_issues_abbr:
490 zero: 0 open
491 one: 1 open
492 other: "{{count}} open"
493 label_x_closed_issues_abbr:
494 zero: 0 closed
495 one: 1 closed
496 other: "{{count}} closed"
402 497 label_total: Gesamtzahl
403 498 label_permissions: Berechtigungen
404 499 label_current_status: Gegenwärtiger Status
@@ -416,11 +511,15 label_calendar: Kalender
416 511 label_months_from: Monate ab
417 512 label_gantt: Gantt-Diagramm
418 513 label_internal: Intern
419 label_last_changes: %d letzte Änderungen
514 label_last_changes: "{{count}} letzte Änderungen"
420 515 label_change_view_all: Alle Änderungen anzeigen
421 516 label_personalize_page: Diese Seite anpassen
422 517 label_comment: Kommentar
423 518 label_comment_plural: Kommentare
519 label_x_comments:
520 zero: no comments
521 one: 1 comment
522 other: "{{count}} comments"
424 523 label_comment_add: Kommentar hinzufügen
425 524 label_comment_added: Kommentar hinzugefügt
426 525 label_comment_delete: Kommentar löschen
@@ -439,7 +538,7 label_all_time: gesamter Zeitraum
439 538 label_yesterday: gestern
440 539 label_this_week: aktuelle Woche
441 540 label_last_week: vorige Woche
442 label_last_n_days: die letzten %d Tage
541 label_last_n_days: "die letzten {{count}} Tage"
443 542 label_this_month: aktueller Monat
444 543 label_last_month: voriger Monat
445 544 label_this_year: aktuelles Jahr
@@ -453,8 +552,8 label_day_plural: Tage
453 552 label_repository: Projektarchiv
454 553 label_repository_plural: Projektarchive
455 554 label_browse: Codebrowser
456 label_modification: %d Änderung
457 label_modification_plural: %d Änderungen
555 label_modification: "{{count}} Änderung"
556 label_modification_plural: "{{count}} Änderungen"
458 557 label_revision: Revision
459 558 label_revision_plural: Revisionen
460 559 label_associated_revisions: Zugehörige Revisionen
@@ -467,14 +566,13 label_latest_revision: Aktuellste Revision
467 566 label_latest_revision_plural: Aktuellste Revisionen
468 567 label_view_revisions: Revisionen anzeigen
469 568 label_max_size: Maximale Größe
470 label_on: von
471 569 label_sort_highest: An den Anfang
472 570 label_sort_higher: Eins höher
473 571 label_sort_lower: Eins tiefer
474 572 label_sort_lowest: Ans Ende
475 573 label_roadmap: Roadmap
476 label_roadmap_due_in: Fällig in %s
477 label_roadmap_overdue: %s verspätet
574 label_roadmap_due_in: "Fällig in {{value}}"
575 label_roadmap_overdue: "{{value}} verspätet"
478 576 label_roadmap_no_issues: Keine Tickets für diese Version
479 577 label_search: Suche
480 578 label_result_plural: Resultate
@@ -492,8 +590,8 label_feed_plural: Feeds
492 590 label_changes_details: Details aller Änderungen
493 591 label_issue_tracking: Tickets
494 592 label_spent_time: Aufgewendete Zeit
495 label_f_hour: %.2f Stunde
496 label_f_hour_plural: %.2f Stunden
593 label_f_hour: "{{value}} Stunde"
594 label_f_hour_plural: "{{value}} Stunden"
497 595 label_time_tracking: Zeiterfassung
498 596 label_change_plural: Änderungen
499 597 label_statistics: Statistiken
@@ -542,13 +640,13 label_week: Woche
542 640 label_date_from: Von
543 641 label_date_to: Bis
544 642 label_language_based: Sprachabhängig
545 label_sort_by: Sortiert nach %s
643 label_sort_by: "Sortiert nach {{value}}"
546 644 label_send_test_email: Test-E-Mail senden
547 label_feeds_access_key_created_on: Atom-Zugriffsschlüssel vor %s erstellt
645 label_feeds_access_key_created_on: "Atom-Zugriffsschlüssel vor {{value}} erstellt"
548 646 label_module_plural: Module
549 label_added_time_by: Von %s vor %s hinzugefügt
550 label_updated_time_by: Von %s vor %s aktualisiert
551 label_updated_time: Vor %s aktualisiert
647 label_added_time_by: "Von {{author}} vor {{age}} hinzugefügt"
648 label_updated_time_by: "Von {{author}} vor {{age}} aktualisiert"
649 label_updated_time: "Vor {{value}} aktualisiert"
552 650 label_jump_to_a_project: Zu einem Projekt springen...
553 651 label_file_plural: Dateien
554 652 label_changeset_plural: Changesets
@@ -565,7 +663,7 label_user_mail_no_self_notified: "Ich möchte nicht über Änderungen benachric
565 663 label_registration_activation_by_email: Kontoaktivierung durch E-Mail
566 664 label_registration_manual_activation: Manuelle Kontoaktivierung
567 665 label_registration_automatic_activation: Automatische Kontoaktivierung
568 label_display_per_page: 'Pro Seite: %s'
666 label_display_per_page: "Pro Seite: {{value}}'"
569 667 label_age: Geändert vor
570 668 label_change_properties: Eigenschaften ändern
571 669 label_general: Allgemein
@@ -632,33 +730,33 text_select_mail_notifications: Bitte wählen Sie die Aktionen aus, für die ein
632 730 text_regexp_info: z. B. ^[A-Z0-9]+$
633 731 text_min_max_length_info: 0 heißt keine Beschränkung
634 732 text_project_destroy_confirmation: Sind Sie sicher, dass sie das Projekt löschen wollen?
635 text_subprojects_destroy_warning: 'Dessen Unterprojekte (%s) werden ebenfalls gelöscht.'
733 text_subprojects_destroy_warning: "Dessen Unterprojekte ({{value}}) werden ebenfalls gelöscht.'"
636 734 text_workflow_edit: Workflow zum Bearbeiten auswählen
637 735 text_are_you_sure: Sind Sie sicher?
638 text_journal_changed: geändert von %s zu %s
639 text_journal_set_to: gestellt zu %s
736 text_journal_changed: "geändert von {{old}} zu {{new}}"
737 text_journal_set_to: "gestellt zu {{value}}"
640 738 text_journal_deleted: gelöscht
641 739 text_tip_task_begin_day: Aufgabe, die an diesem Tag beginnt
642 740 text_tip_task_end_day: Aufgabe, die an diesem Tag endet
643 741 text_tip_task_begin_end_day: Aufgabe, die an diesem Tag beginnt und endet
644 742 text_project_identifier_info: 'Kleinbuchstaben (a-z), Ziffern und Bindestriche erlaubt.<br />Einmal gespeichert, kann die Kennung nicht mehr geändert werden.'
645 text_caracters_maximum: Max. %d Zeichen.
646 text_caracters_minimum: Muss mindestens %d Zeichen lang sein.
647 text_length_between: Länge zwischen %d und %d Zeichen.
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."
648 746 text_tracker_no_workflow: Kein Workflow für diesen Tracker definiert.
649 747 text_unallowed_characters: Nicht erlaubte Zeichen
650 748 text_comma_separated: Mehrere Werte erlaubt (durch Komma getrennt).
651 749 text_issues_ref_in_commit_messages: Ticket-Beziehungen und -Status in Commit-Log-Meldungen
652 text_issue_added: Ticket %s wurde erstellt by %s.
653 text_issue_updated: Ticket %s wurde aktualisiert by %s.
750 text_issue_added: "Ticket {{id}} wurde erstellt by {{author}}."
751 text_issue_updated: "Ticket {{id}} wurde aktualisiert by {{author}}."
654 752 text_wiki_destroy_confirmation: Sind Sie sicher, dass Sie dieses Wiki mit sämtlichem Inhalt löschen möchten?
655 text_issue_category_destroy_question: Einige Tickets (%d) sind dieser Kategorie zugeodnet. Was möchten Sie tun?
753 text_issue_category_destroy_question: "Einige Tickets ({{count}}) sind dieser Kategorie zugeodnet. Was möchten Sie tun?"
656 754 text_issue_category_destroy_assignments: Kategorie-Zuordnung entfernen
657 755 text_issue_category_reassign_to: Tickets dieser Kategorie zuordnen
658 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)."
659 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."
660 758 text_load_default_configuration: Standard-Konfiguration laden
661 text_status_changed_by_changeset: Status geändert durch Changeset %s.
759 text_status_changed_by_changeset: "Status geändert durch Changeset {{value}}."
662 760 text_issues_destroy_confirmation: 'Sind Sie sicher, dass Sie die ausgewählten Tickets löschen möchten?'
663 761 text_select_project_modules: 'Bitte wählen Sie die Module aus, die in diesem Projekt aktiviert sein sollen:'
664 762 text_default_administrator_account_changed: Administrator-Kennwort geändert
@@ -669,8 +767,8 text_destroy_time_entries_question: Es wurden bereits %.02f Stunden auf dieses T
669 767 text_destroy_time_entries: Gebuchte Aufwände löschen
670 768 text_assign_time_entries_to_project: Gebuchte Aufwände dem Projekt zuweisen
671 769 text_reassign_time_entries: 'Gebuchte Aufwände diesem Ticket zuweisen:'
672 text_user_wrote: '%s schrieb:'
673 text_enumeration_destroy_question: '%d Objekte sind diesem Wert zugeordnet.'
770 text_user_wrote: "{{value}} schrieb:'"
771 text_enumeration_destroy_question: "{{count}} Objekte sind diesem Wert zugeordnet.'"
674 772 text_enumeration_category_reassign_to: 'Die Objekte stattdessen diesem Wert zuordnen:'
675 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."
676 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."
@@ -706,7 +804,3 label_display: Display
706 804 button_create_and_continue: Create and continue
707 805 text_custom_field_possible_values_info: 'One line for each value'
708 806 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
709 field_identity_url: OpenID URL
710 setting_openid: Allow OpenID login and registration
711 label_login_with_open_id_option: or login with OpenID
712 field_watcher: Watcher
@@ -1,47 +1,99
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"
2 10
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: January,February,March,April,May,June,July,August,September,October,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 day
9 actionview_datehelper_time_in_words_day_plural: %d days
10 actionview_datehelper_time_in_words_hour_about: about an hour
11 actionview_datehelper_time_in_words_hour_about_plural: about %d hours
12 actionview_datehelper_time_in_words_hour_about_single: about an hour
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: half a minute
15 actionview_datehelper_time_in_words_minute_less_than: less than a minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: less than a second
19 actionview_datehelper_time_in_words_second_less_than_plural: less than %d seconds
20 actionview_instancetag_blank_option: Please select
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 ]
19
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"
21 61
22 activerecord_error_inclusion: is not included in the list
23 activerecord_error_exclusion: is reserved
24 activerecord_error_invalid: is invalid
25 activerecord_error_confirmation: doesn't match confirmation
26 activerecord_error_accepted: must be accepted
27 activerecord_error_empty: can't be empty
28 activerecord_error_blank: can't be blank
29 activerecord_error_too_long: is too long
30 activerecord_error_too_short: is too short
31 activerecord_error_wrong_length: is the wrong length
32 activerecord_error_taken: has already been taken
33 activerecord_error_not_a_number: is not a number
34 activerecord_error_not_a_date: is not a valid date
35 activerecord_error_greater_than_start_date: must be greater than start date
36 activerecord_error_not_same_project: doesn't belong to the same project
37 activerecord_error_circular_dependency: This relation would create a circular dependency
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"
94
95 actionview_instancetag_blank_option: Please select
38 96
39 general_fmt_age: %d yr
40 general_fmt_age_plural: %d yrs
41 general_fmt_date: %%m/%%d/%%Y
42 general_fmt_datetime: %%m/%%d/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 97 general_text_No: 'No'
46 98 general_text_Yes: 'Yes'
47 99 general_text_no: 'no'
@@ -51,7 +103,6 general_csv_separator: ','
51 103 general_csv_decimal_separator: '.'
52 104 general_csv_encoding: ISO-8859-1
53 105 general_pdf_encoding: ISO-8859-1
54 general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday
55 106 general_first_day_of_week: '7'
56 107
57 108 notice_account_updated: Account was successfully updated.
@@ -70,36 +121,36 notice_successful_connection: Successful connection.
70 121 notice_file_not_found: The page you were trying to access doesn't exist or has been removed.
71 122 notice_locking_conflict: Data has been updated by another user.
72 123 notice_not_authorized: You are not authorized to access this page.
73 notice_email_sent: An email was sent to %s
74 notice_email_error: An error occurred while sending mail (%s)
124 notice_email_sent: "An email was sent to {{value}}"
125 notice_email_error: "An error occurred while sending mail ({{value}})"
75 126 notice_feeds_access_key_reseted: Your RSS access key was reset.
76 notice_failed_to_save_issues: "Failed to save %d issue(s) on %d selected: %s."
127 notice_failed_to_save_issues: "Failed to save {{count}} issue(s) on {{total}} selected: {{ids}}."
77 128 notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit."
78 129 notice_account_pending: "Your account was created and is now pending administrator approval."
79 130 notice_default_data_loaded: Default configuration successfully loaded.
80 131 notice_unable_delete_version: Unable to delete version.
81 132
82 error_can_t_load_default_data: "Default configuration could not be loaded: %s"
133 error_can_t_load_default_data: "Default configuration could not be loaded: {{value}}"
83 134 error_scm_not_found: "The entry or revision was not found in the repository."
84 error_scm_command_failed: "An error occurred when trying to access the repository: %s"
135 error_scm_command_failed: "An error occurred when trying to access the repository: {{value}}"
85 136 error_scm_annotate: "The entry does not exist or can not be annotated."
86 137 error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
87 138
88 warning_attachments_not_saved: "%d file(s) could not be saved."
139 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
89 140
90 mail_subject_lost_password: Your %s password
141 mail_subject_lost_password: "Your {{value}} password"
91 142 mail_body_lost_password: 'To change your password, click on the following link:'
92 mail_subject_register: Your %s account activation
143 mail_subject_register: "Your {{value}} account activation"
93 144 mail_body_register: 'To activate your account, click on the following link:'
94 mail_body_account_information_external: You can use your "%s" account to log in.
145 mail_body_account_information_external: "You can use your {{value}} account to log in."
95 146 mail_body_account_information: Your account information
96 mail_subject_account_activation_request: %s account activation request
97 mail_body_account_activation_request: 'A new user (%s) has registered. The account is pending your approval:'
98 mail_subject_reminder: "%d issue(s) due in the next days"
99 mail_body_reminder: "%d issue(s) that are assigned to you are due in the next %d days:"
147 mail_subject_account_activation_request: "{{value}} account activation request"
148 mail_body_account_activation_request: "A new user ({{value}}) has registered. The account is pending your approval:'"
149 mail_subject_reminder: "{{count}} issue(s) due in the next days"
150 mail_body_reminder: "{{count}} issue(s) that are assigned to you are due in the next {{days}} days:"
100 151
101 152 gui_validation_error: 1 error
102 gui_validation_error_plural: %d errors
153 gui_validation_error_plural: "{{count}} errors"
103 154
104 155 field_name: Name
105 156 field_description: Description
@@ -147,7 +198,6 field_mail_notification: Email notifications
147 198 field_admin: Administrator
148 199 field_last_login_on: Last connection
149 200 field_language: Language
150 field_identity_url: OpenID URL
151 201 field_effective_date: Date
152 202 field_password: Password
153 203 field_new_password: New password
@@ -188,7 +238,6 field_default_value: Default value
188 238 field_comments_sorting: Display comments
189 239 field_parent_title: Parent page
190 240 field_editable: Editable
191 field_watcher: Watcher
192 241
193 242 setting_app_title: Application title
194 243 setting_app_subtitle: Application subtitle
@@ -230,7 +279,6 setting_sequential_project_identifiers: Generate sequential project identifiers
230 279 setting_gravatar_enabled: Use Gravatar user icons
231 280 setting_diff_max_lines_displayed: Max number of diff lines displayed
232 281 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
233 setting_openid: Allow OpenID login and registration
234 282
235 283 permission_edit_project: Edit project
236 284 permission_select_project_modules: Select project modules
@@ -296,13 +344,17 label_user_new: New user
296 344 label_project: Project
297 345 label_project_new: New project
298 346 label_project_plural: Projects
347 label_x_projects:
348 zero: no projects
349 one: 1 project
350 other: "{{count}} projects"
299 351 label_project_all: All Projects
300 352 label_project_latest: Latest projects
301 353 label_issue: Issue
302 354 label_issue_new: New issue
303 355 label_issue_plural: Issues
304 356 label_issue_view_all: View all issues
305 label_issues_by: Issues by %s
357 label_issues_by: "Issues by {{value}}"
306 358 label_issue_added: Issue added
307 359 label_issue_updated: Issue updated
308 360 label_document: Document
@@ -335,7 +387,6 label_information: Information
335 387 label_information_plural: Information
336 388 label_please_login: Please log in
337 389 label_register: Register
338 label_login_with_open_id_option: or login with OpenID
339 390 label_password_lost: Lost password
340 391 label_home: Home
341 392 label_my_page: My page
@@ -348,12 +399,10 label_help: Help
348 399 label_reported_issues: Reported issues
349 400 label_assigned_to_me_issues: Issues assigned to me
350 401 label_last_login: Last connection
351 label_last_updates: Last updated
352 label_last_updates_plural: %d last updated
353 402 label_registered_on: Registered on
354 403 label_activity: Activity
355 404 label_overall_activity: Overall activity
356 label_user_activity: "%s's activity"
405 label_user_activity: "{{value}}'s activity"
357 406 label_new: New
358 407 label_logged_as: Logged in as
359 408 label_environment: Environment
@@ -362,7 +411,7 label_auth_source: Authentication mode
362 411 label_auth_source_new: New authentication mode
363 412 label_auth_source_plural: Authentication modes
364 413 label_subproject_plural: Subprojects
365 label_and_its_subprojects: %s and its subprojects
414 label_and_its_subprojects: "{{value}} and its subprojects"
366 415 label_min_max_length: Min - Max length
367 416 label_list: List
368 417 label_date: Date
@@ -373,8 +422,8 label_string: Text
373 422 label_text: Long text
374 423 label_attribute: Attribute
375 424 label_attribute_plural: Attributes
376 label_download: %d Download
377 label_download_plural: %d Downloads
425 label_download: "{{count}} Download"
426 label_download_plural: "{{count}} Downloads"
378 427 label_no_data: No data to display
379 428 label_change_status: Change status
380 429 label_history: History
@@ -405,6 +454,18 label_open_issues: open
405 454 label_open_issues_plural: open
406 455 label_closed_issues: closed
407 456 label_closed_issues_plural: closed
457 label_x_open_issues_abbr_on_total:
458 zero: 0 open / {{total}}
459 one: 1 open / {{total}}
460 other: "{{count}} open / {{total}}"
461 label_x_open_issues_abbr:
462 zero: 0 open
463 one: 1 open
464 other: "{{count}} open"
465 label_x_closed_issues_abbr:
466 zero: 0 closed
467 one: 1 closed
468 other: "{{count}} closed"
408 469 label_total: Total
409 470 label_permissions: Permissions
410 471 label_current_status: Current status
@@ -422,11 +483,15 label_calendar: Calendar
422 483 label_months_from: months from
423 484 label_gantt: Gantt
424 485 label_internal: Internal
425 label_last_changes: last %d changes
486 label_last_changes: "last {{count}} changes"
426 487 label_change_view_all: View all changes
427 488 label_personalize_page: Personalize this page
428 489 label_comment: Comment
429 490 label_comment_plural: Comments
491 label_x_comments:
492 zero: no comments
493 one: 1 comment
494 other: "{{count}} comments"
430 495 label_comment_add: Add a comment
431 496 label_comment_added: Comment added
432 497 label_comment_delete: Delete comments
@@ -445,7 +510,7 label_all_time: all time
445 510 label_yesterday: yesterday
446 511 label_this_week: this week
447 512 label_last_week: last week
448 label_last_n_days: last %d days
513 label_last_n_days: "last {{count}} days"
449 514 label_this_month: this month
450 515 label_last_month: last month
451 516 label_this_year: this year
@@ -459,8 +524,8 label_day_plural: days
459 524 label_repository: Repository
460 525 label_repository_plural: Repositories
461 526 label_browse: Browse
462 label_modification: %d change
463 label_modification_plural: %d changes
527 label_modification: "{{count}} change"
528 label_modification_plural: "{{count}} changes"
464 529 label_revision: Revision
465 530 label_revision_plural: Revisions
466 531 label_associated_revisions: Associated revisions
@@ -473,14 +538,13 label_latest_revision: Latest revision
473 538 label_latest_revision_plural: Latest revisions
474 539 label_view_revisions: View revisions
475 540 label_max_size: Maximum size
476 label_on: 'on'
477 541 label_sort_highest: Move to top
478 542 label_sort_higher: Move up
479 543 label_sort_lower: Move down
480 544 label_sort_lowest: Move to bottom
481 545 label_roadmap: Roadmap
482 label_roadmap_due_in: Due in %s
483 label_roadmap_overdue: %s late
546 label_roadmap_due_in: "Due in {{value}}"
547 label_roadmap_overdue: "{{value}} late"
484 548 label_roadmap_no_issues: No issues for this version
485 549 label_search: Search
486 550 label_result_plural: Results
@@ -498,8 +562,8 label_feed_plural: Feeds
498 562 label_changes_details: Details of all changes
499 563 label_issue_tracking: Issue tracking
500 564 label_spent_time: Spent time
501 label_f_hour: %.2f hour
502 label_f_hour_plural: %.2f hours
565 label_f_hour: "{{value}} hour"
566 label_f_hour_plural: "{{value}} hours"
503 567 label_time_tracking: Time tracking
504 568 label_change_plural: Changes
505 569 label_statistics: Statistics
@@ -548,13 +612,13 label_week: Week
548 612 label_date_from: From
549 613 label_date_to: To
550 614 label_language_based: Based on user's language
551 label_sort_by: Sort by %s
615 label_sort_by: "Sort by {{value}}"
552 616 label_send_test_email: Send a test email
553 label_feeds_access_key_created_on: RSS access key created %s ago
617 label_feeds_access_key_created_on: "RSS access key created {{value}} ago"
554 618 label_module_plural: Modules
555 label_added_time_by: Added by %s %s ago
556 label_updated_time_by: Updated by %s %s ago
557 label_updated_time: Updated %s ago
619 label_added_time_by: "Added by {{author}} {{age}} ago"
620 label_updated_time_by: "Updated by {{author}} {{age}} ago"
621 label_updated_time: "Updated {{value}} ago"
558 622 label_jump_to_a_project: Jump to a project...
559 623 label_file_plural: Files
560 624 label_changeset_plural: Changesets
@@ -571,7 +635,7 label_user_mail_no_self_notified: "I don't want to be notified of changes that I
571 635 label_registration_activation_by_email: account activation by email
572 636 label_registration_manual_activation: manual account activation
573 637 label_registration_automatic_activation: automatic account activation
574 label_display_per_page: 'Per page: %s'
638 label_display_per_page: "Per page: {{value}}'"
575 639 label_age: Age
576 640 label_change_properties: Change properties
577 641 label_general: General
@@ -640,33 +704,33 text_select_mail_notifications: Select actions for which email notifications sho
640 704 text_regexp_info: eg. ^[A-Z0-9]+$
641 705 text_min_max_length_info: 0 means no restriction
642 706 text_project_destroy_confirmation: Are you sure you want to delete this project and related data ?
643 text_subprojects_destroy_warning: 'Its subproject(s): %s will be also deleted.'
707 text_subprojects_destroy_warning: "Its subproject(s): {{value}} will be also deleted.'"
644 708 text_workflow_edit: Select a role and a tracker to edit the workflow
645 709 text_are_you_sure: Are you sure ?
646 text_journal_changed: changed from %s to %s
647 text_journal_set_to: set to %s
710 text_journal_changed: "changed from {{old}} to {{new}}"
711 text_journal_set_to: "set to {{value}}"
648 712 text_journal_deleted: deleted
649 713 text_tip_task_begin_day: task beginning this day
650 714 text_tip_task_end_day: task ending this day
651 715 text_tip_task_begin_end_day: task beginning and ending this day
652 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.'
653 text_caracters_maximum: %d characters maximum.
654 text_caracters_minimum: Must be at least %d characters long.
655 text_length_between: Length between %d and %d characters.
717 text_caracters_maximum: "{{count}} characters maximum."
718 text_caracters_minimum: "Must be at least {{count}} characters long."
719 text_length_between: "Length between {{min}} and {{max}} characters."
656 720 text_tracker_no_workflow: No workflow defined for this tracker
657 721 text_unallowed_characters: Unallowed characters
658 722 text_comma_separated: Multiple values allowed (comma separated).
659 723 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
660 text_issue_added: Issue %s has been reported by %s.
661 text_issue_updated: Issue %s has been updated by %s.
724 text_issue_added: "Issue {{id}} has been reported by {{author}}."
725 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
662 726 text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content ?
663 text_issue_category_destroy_question: Some issues (%d) are assigned to this category. What do you want to do ?
727 text_issue_category_destroy_question: "Some issues ({{count}}) are assigned to this category. What do you want to do ?"
664 728 text_issue_category_destroy_assignments: Remove category assignments
665 729 text_issue_category_reassign_to: Reassign issues to this category
666 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)."
667 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."
668 732 text_load_default_configuration: Load the default configuration
669 text_status_changed_by_changeset: Applied in changeset %s.
733 text_status_changed_by_changeset: "Applied in changeset {{value}}."
670 734 text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s) ?'
671 735 text_select_project_modules: 'Select modules to enable for this project:'
672 736 text_default_administrator_account_changed: Default administrator account changed
@@ -677,8 +741,8 text_destroy_time_entries_question: %.02f hours were reported on the issues you
677 741 text_destroy_time_entries: Delete reported hours
678 742 text_assign_time_entries_to_project: Assign reported hours to the project
679 743 text_reassign_time_entries: 'Reassign reported hours to this issue:'
680 text_user_wrote: '%s wrote:'
681 text_enumeration_destroy_question: '%d objects are assigned to this value.'
744 text_user_wrote: "{{value}} wrote:'"
745 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
682 746 text_enumeration_category_reassign_to: 'Reassign them to this value:'
683 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."
684 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."
@@ -1,47 +1,142
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Finnish translations for Ruby on Rails
2 # by Marko Seppä (marko.seppa@gmail.com)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kesäkuu,Heinäkuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu
5 actionview_datehelper_select_month_names_abbr: Tammi,Helmi,Maalis,Huhti,Touko,Kesä,Heinä,Elo,Syys,Loka,Marras,Joulu
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 päivä
9 actionview_datehelper_time_in_words_day_plural: %d päivää
10 actionview_datehelper_time_in_words_hour_about: noin tunti
11 actionview_datehelper_time_in_words_hour_about_plural: noin %d tuntia
12 actionview_datehelper_time_in_words_hour_about_single: noin tunnin
13 actionview_datehelper_time_in_words_minute: 1 minuutti
14 actionview_datehelper_time_in_words_minute_half: puoli minuuttia
15 actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia
16 actionview_datehelper_time_in_words_minute_plural: %d minuuttia
17 actionview_datehelper_time_in_words_minute_single: 1 minuutti
18 actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin
19 actionview_datehelper_time_in_words_second_less_than_plural: vähemmän kuin %d sekuntia
20 actionview_instancetag_blank_option: Valitse, ole hyvä
4 fi:
5 date:
6 formats:
7 default: "%e. %Bta %Y"
8 long: "%A%e. %Bta %Y"
9 short: "%e.%m.%Y"
10
11 day_names: [Sunnuntai, Maanantai, Tiistai, Keskiviikko, Torstai, Perjantai, Lauantai]
12 abbr_day_names: [Su, Ma, Ti, Ke, To, Pe, La]
13 month_names: [~, Tammikuu, Helmikuu, Maaliskuu, Huhtikuu, Toukokuu, Kesäkuu, Heinäkuu, Elokuu, Syyskuu, Lokakuu, Marraskuu, Joulukuu]
14 abbr_month_names: [~, Tammi, Helmi, Maalis, Huhti, Touko, Kesä, Heinä, Elo, Syys, Loka, Marras, Joulu]
15 order: [:day, :month, :year]
16
17 time:
18 formats:
19 default: "%a, %e. %b %Y %H:%M:%S %z"
20 short: "%e. %b %H:%M"
21 long: "%B %d, %Y %H:%M"
22 am: "aamupäivä"
23 pm: "iltapäivä"
24
25 support:
26 array:
27 words_connector: ", "
28 two_words_connector: " ja "
29 last_word_connector: " ja "
30
31
32
33 number:
34 format:
35 separator: ","
36 delimiter: "."
37 precision: 3
38
39 currency:
40 format:
41 format: "%n %u"
42 unit: "€"
43 separator: ","
44 delimiter: "."
45 precision: 2
21 46
22 activerecord_error_inclusion: ei ole listalla
23 activerecord_error_exclusion: on varattu
24 activerecord_error_invalid: ei ole kelpaava
25 activerecord_error_confirmation: ei vastaa vahvistusta
26 activerecord_error_accepted: tulee hyväksyä
27 activerecord_error_empty: ei voi olla tyhjä
28 activerecord_error_blank: ei voi olla tyhjä
29 activerecord_error_too_long: on liian pitkä
30 activerecord_error_too_short: on liian lyhyt
31 activerecord_error_wrong_length: on väärän pituinen
32 activerecord_error_taken: on jo varattu
33 activerecord_error_not_a_number: ei ole numero
34 activerecord_error_not_a_date: ei ole oikea päivä
35 activerecord_error_greater_than_start_date: tulee olla aloituspäivän jälkeinen
36 activerecord_error_not_same_project: ei kuulu samaan projektiin
37 activerecord_error_circular_dependency: Tämä suhde loisi kehän.
47 percentage:
48 format:
49 # separator:
50 delimiter: ""
51 # precision:
52
53 precision:
54 format:
55 # separator:
56 delimiter: ""
57 # precision:
58
59 human:
60 format:
61 delimiter: ""
62 precision: 1
63 storage_units: [Tavua, KB, MB, GB, TB]
64
65 datetime:
66 distance_in_words:
67 half_a_minute: "puoli minuuttia"
68 less_than_x_seconds:
69 one: "aiemmin kuin sekunti"
70 other: "aiemmin kuin {{count}} sekuntia"
71 x_seconds:
72 one: "sekunti"
73 other: "{{count}} sekuntia"
74 less_than_x_minutes:
75 one: "aiemmin kuin minuutti"
76 other: "aiemmin kuin {{count}} minuuttia"
77 x_minutes:
78 one: "minuutti"
79 other: "{{count}} minuuttia"
80 about_x_hours:
81 one: "noin tunti"
82 other: "noin {{count}} tuntia"
83 x_days:
84 one: "päivä"
85 other: "{{count}} päivää"
86 about_x_months:
87 one: "noin kuukausi"
88 other: "noin {{count}} kuukautta"
89 x_months:
90 one: "kuukausi"
91 other: "{{count}} kuukautta"
92 about_x_years:
93 one: "vuosi"
94 other: "noin {{count}} vuotta"
95 over_x_years:
96 one: "yli vuosi"
97 other: "yli {{count}} vuotta"
98 prompts:
99 year: "Vuosi"
100 month: "Kuukausi"
101 day: "Päivä"
102 hour: "Tunti"
103 minute: "Minuutti"
104 second: "Sekuntia"
105
106 activerecord:
107 errors:
108 template:
109 header:
110 one: "1 virhe esti tämän {{model}} mallinteen tallentamisen"
111 other: "{{count}} virhettä esti tämän {{model}} mallinteen tallentamisen"
112 body: "Seuraavat kentät aiheuttivat ongelmia:"
113 messages:
114 inclusion: "ei löydy listauksesta"
115 exclusion: "on jo varattu"
116 invalid: "on kelvoton"
117 confirmation: "ei vastaa varmennusta"
118 accepted: "täytyy olla hyväksytty"
119 empty: "ei voi olla tyhjä"
120 blank: "ei voi olla sisällötön"
121 too_long: "on liian pitkä (maksimi on {{count}} merkkiä)"
122 too_short: "on liian lyhyt (minimi on {{count}} merkkiä)"
123 wrong_length: "on väärän pituinen (täytyy olla täsmälleen {{count}} merkkiä)"
124 taken: "on jo käytössä"
125 not_a_number: "ei ole numero"
126 greater_than: "täytyy olla suurempi kuin {{count}}"
127 greater_than_or_equal_to: "täytyy olla suurempi tai yhtä suuri kuin{{count}}"
128 equal_to: "täytyy olla yhtä suuri kuin {{count}}"
129 less_than: "täytyy olla pienempi kuin {{count}}"
130 less_than_or_equal_to: "täytyy olla pienempi tai yhtä suuri kuin {{count}}"
131 odd: "täytyy olla pariton"
132 even: "täytyy olla parillinen"
133 greater_than_start_date: "tulee olla aloituspäivän jälkeinen"
134 not_same_project: "ei kuulu samaan projektiin"
135 circular_dependency: "Tämä suhde loisi kehän."
136
137
138 actionview_instancetag_blank_option: Valitse, ole hyvä
38 139
39 general_fmt_age: %d v.
40 general_fmt_age_plural: %d vuotta
41 general_fmt_date: %%d.%%m.%%Y
42 general_fmt_datetime: %%d.%%m.%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 140 general_text_No: 'Ei'
46 141 general_text_Yes: 'Kyllä'
47 142 general_text_no: 'ei'
@@ -51,7 +146,6 general_csv_separator: ','
51 146 general_csv_decimal_separator: '.'
52 147 general_csv_encoding: ISO-8859-15
53 148 general_pdf_encoding: ISO-8859-15
54 general_day_names: Maanantai,Tiistai,Keskiviikko,Torstai,Perjantai,Lauantai,Sunnuntai
55 149 general_first_day_of_week: '1'
56 150
57 151 notice_account_updated: Tilin päivitys onnistui.
@@ -70,29 +164,29 notice_successful_connection: Yhteyden muodostus onnistui.
70 164 notice_file_not_found: Hakemaasi sivua ei löytynyt tai se on poistettu.
71 165 notice_locking_conflict: Toinen käyttäjä on päivittänyt tiedot.
72 166 notice_not_authorized: Sinulla ei ole oikeutta näyttää tätä sivua.
73 notice_email_sent: Sähköposti on lähetty osoitteeseen %s
74 notice_email_error: Sähköpostilähetyksessä tapahtui virhe (%s)
167 notice_email_sent: "Sähköposti on lähetty osoitteeseen {{value}}"
168 notice_email_error: "Sähköpostilähetyksessä tapahtui virhe ({{value}})"
75 169 notice_feeds_access_key_reseted: RSS salasana on nollaantunut.
76 notice_failed_to_save_issues: "%d Tapahtum(an/ien) tallennus epäonnistui %d valitut: %s."
170 notice_failed_to_save_issues: "{{count}} Tapahtum(an/ien) tallennus epäonnistui {{total}} valitut: {{ids}}."
77 171 notice_no_issue_selected: "Tapahtumia ei ole valittu! Valitse tapahtumat joita haluat muokata."
78 172 notice_account_pending: "Tilisi on luotu ja odottaa ylläpitäjän hyväksyntää."
79 173 notice_default_data_loaded: Vakioasetusten palautus onnistui.
80 174
81 error_can_t_load_default_data: "Vakioasetuksia ei voitu ladata: %s"
175 error_can_t_load_default_data: "Vakioasetuksia ei voitu ladata: {{value}}"
82 176 error_scm_not_found: "Syötettä ja/tai versiota ei löydy tietovarastosta."
83 error_scm_command_failed: "Tietovarastoon pääsyssä tapahtui virhe: %s"
177 error_scm_command_failed: "Tietovarastoon pääsyssä tapahtui virhe: {{value}}"
84 178
85 mail_subject_lost_password: Sinun %s salasanasi
179 mail_subject_lost_password: "Sinun {{value}} salasanasi"
86 180 mail_body_lost_password: 'Vaihtaaksesi salasanasi, napsauta seuraavaa linkkiä:'
87 mail_subject_register: %s tilin aktivointi
181 mail_subject_register: "{{value}} tilin aktivointi"
88 182 mail_body_register: 'Aktivoidaksesi tilisi, napsauta seuraavaa linkkiä:'
89 mail_body_account_information_external: Voit nyt käyttää "%s" tiliäsi kirjautuaksesi järjestelmään.
183 mail_body_account_information_external: "Voit nyt käyttää {{value}} tiliäsi kirjautuaksesi järjestelmään."
90 184 mail_body_account_information: Sinun tilin tiedot
91 mail_subject_account_activation_request: %s tilin aktivointi pyyntö
92 mail_body_account_activation_request: 'Uusi käyttäjä (%s) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'
185 mail_subject_account_activation_request: "{{value}} tilin aktivointi pyyntö"
186 mail_body_account_activation_request: "Uusi käyttäjä ({{value}}) on rekisteröitynyt. Hänen tili odottaa hyväksyntääsi:'"
93 187
94 188 gui_validation_error: 1 virhe
95 gui_validation_error_plural: %d virhettä
189 gui_validation_error_plural: "{{count}} virhettä"
96 190
97 191 field_name: Nimi
98 192 field_description: Kuvaus
@@ -212,13 +306,17 label_user_new: Uusi käyttäjä
212 306 label_project: Projekti
213 307 label_project_new: Uusi projekti
214 308 label_project_plural: Projektit
309 label_x_projects:
310 zero: no projects
311 one: 1 project
312 other: "{{count}} projects"
215 313 label_project_all: Kaikki projektit
216 314 label_project_latest: Uusimmat projektit
217 315 label_issue: Tapahtuma
218 316 label_issue_new: Uusi tapahtuma
219 317 label_issue_plural: Tapahtumat
220 318 label_issue_view_all: Näytä kaikki tapahtumat
221 label_issues_by: Tapahtumat %s
319 label_issues_by: "Tapahtumat {{value}}"
222 320 label_document: Dokumentti
223 321 label_document_new: Uusi dokumentti
224 322 label_document_plural: Dokumentit
@@ -260,8 +358,6 label_help: Ohjeet
260 358 label_reported_issues: Raportoidut tapahtumat
261 359 label_assigned_to_me_issues: Minulle nimetyt tapahtumat
262 360 label_last_login: Viimeinen yhteys
263 label_last_updates: Viimeinen päivitys
264 label_last_updates_plural: %d päivitetty viimeksi
265 361 label_registered_on: Rekisteröity
266 362 label_activity: Historia
267 363 label_new: Uusi
@@ -282,8 +378,8 label_string: Merkkijono
282 378 label_text: Pitkä merkkijono
283 379 label_attribute: Määre
284 380 label_attribute_plural: Määreet
285 label_download: %d Lataus
286 label_download_plural: %d Lataukset
381 label_download: "{{count}} Lataus"
382 label_download_plural: "{{count}} Lataukset"
287 383 label_no_data: Ei tietoa näytettäväksi
288 384 label_change_status: Muutos tila
289 385 label_history: Historia
@@ -312,6 +408,18 label_open_issues: avoin, yhteensä
312 408 label_open_issues_plural: avointa, yhteensä
313 409 label_closed_issues: suljettu
314 410 label_closed_issues_plural: suljettua
411 label_x_open_issues_abbr_on_total:
412 zero: 0 open / {{total}}
413 one: 1 open / {{total}}
414 other: "{{count}} open / {{total}}"
415 label_x_open_issues_abbr:
416 zero: 0 open
417 one: 1 open
418 other: "{{count}} open"
419 label_x_closed_issues_abbr:
420 zero: 0 closed
421 one: 1 closed
422 other: "{{count}} closed"
315 423 label_total: Yhteensä
316 424 label_permissions: Oikeudet
317 425 label_current_status: Nykyinen tila
@@ -329,11 +437,15 label_calendar: Kalenteri
329 437 label_months_from: kuukauden päässä
330 438 label_gantt: Gantt
331 439 label_internal: Sisäinen
332 label_last_changes: viimeiset %d muutokset
440 label_last_changes: "viimeiset {{count}} muutokset"
333 441 label_change_view_all: Näytä kaikki muutokset
334 442 label_personalize_page: Personoi tämä sivu
335 443 label_comment: Kommentti
336 444 label_comment_plural: Kommentit
445 label_x_comments:
446 zero: no comments
447 one: 1 comment
448 other: "{{count}} comments"
337 449 label_comment_add: Lisää kommentti
338 450 label_comment_added: Kommentti lisätty
339 451 label_comment_delete: Poista kommentti
@@ -357,8 +469,8 label_day_plural: päivää
357 469 label_repository: Tietovarasto
358 470 label_repository_plural: Tietovarastot
359 471 label_browse: Selaus
360 label_modification: %d muutos
361 label_modification_plural: %d muutettu
472 label_modification: "{{count}} muutos"
473 label_modification_plural: "{{count}} muutettu"
362 474 label_revision: Versio
363 475 label_revision_plural: Versiot
364 476 label_added: lisätty
@@ -373,8 +485,8 label_sort_higher: Siirrä ylös
373 485 label_sort_lower: Siirrä alas
374 486 label_sort_lowest: Siirrä alimmaiseksi
375 487 label_roadmap: Roadmap
376 label_roadmap_due_in: Määräaika %s
377 label_roadmap_overdue: %s myöhässä
488 label_roadmap_due_in: "Määräaika {{value}}"
489 label_roadmap_overdue: "{{value}} myöhässä"
378 490 label_roadmap_no_issues: Ei tapahtumia tälle versiolle
379 491 label_search: Haku
380 492 label_result_plural: Tulokset
@@ -392,8 +504,8 label_feed_plural: Syötteet
392 504 label_changes_details: Kaikkien muutosten yksityiskohdat
393 505 label_issue_tracking: Tapahtumien seuranta
394 506 label_spent_time: Käytetty aika
395 label_f_hour: %.2f tunti
396 label_f_hour_plural: %.2f tuntia
507 label_f_hour: "{{value}} tunti"
508 label_f_hour_plural: "{{value}} tuntia"
397 509 label_time_tracking: Ajan seuranta
398 510 label_change_plural: Muutokset
399 511 label_statistics: Tilastot
@@ -438,12 +550,12 label_year: Vuosi
438 550 label_month: Kuukausi
439 551 label_week: Viikko
440 552 label_language_based: Pohjautuen käyttäjän kieleen
441 label_sort_by: Lajittele %s
553 label_sort_by: "Lajittele {{value}}"
442 554 label_send_test_email: Lähetä testi sähköposti
443 label_feeds_access_key_created_on: RSS salasana luotiin %s sitten
555 label_feeds_access_key_created_on: "RSS salasana luotiin {{value}} sitten"
444 556 label_module_plural: Moduulit
445 label_added_time_by: Lisännyt %s %s sitten
446 label_updated_time: Päivitetty %s sitten
557 label_added_time_by: "Lisännyt {{author}} {{age}} sitten"
558 label_updated_time: "Päivitetty {{value}} sitten"
447 559 label_jump_to_a_project: Siirry projektiin...
448 560 label_file_plural: Tiedostot
449 561 label_changeset_plural: Muutosryhmät
@@ -460,7 +572,7 label_user_mail_no_self_notified: "En halua muistutusta muutoksista joita itse t
460 572 label_registration_activation_by_email: tilin aktivointi sähköpostitse
461 573 label_registration_manual_activation: tilin aktivointi käsin
462 574 label_registration_automatic_activation: tilin aktivointi automaattisesti
463 label_display_per_page: 'Per sivu: %s'
575 label_display_per_page: "Per sivu: {{value}}'"
464 576 label_age: Ikä
465 577 label_change_properties: Vaihda asetuksia
466 578 label_general: Yleinen
@@ -512,24 +624,24 text_min_max_length_info: 0 tarkoittaa, ei rajoitusta
512 624 text_project_destroy_confirmation: Oletko varma että haluat poistaa tämän projektin ja kaikki siihen kuuluvat tiedot?
513 625 text_workflow_edit: Valitse rooli ja tapahtuma muokataksesi työnkulkua
514 626 text_are_you_sure: Oletko varma?
515 text_journal_changed: %s muutettu arvoksi %s
516 text_journal_set_to: muutettu %s
627 text_journal_changed: "{{old}} muutettu arvoksi {{new}}"
628 text_journal_set_to: "muutettu {{value}}"
517 629 text_journal_deleted: poistettu
518 630 text_tip_task_begin_day: tehtävä joka alkaa tänä päivänä
519 631 text_tip_task_end_day: tehtävä joka loppuu tänä päivänä
520 632 text_tip_task_begin_end_day: tehtävä joka alkaa ja loppuu tänä päivänä
521 633 text_project_identifier_info: 'Pienet kirjaimet (a-z), numerot ja viivat ovat sallittu.<br />Tallentamisen jälkeen tunnistetta ei voi muuttaa.'
522 text_caracters_maximum: %d merkkiä enintään.
523 text_caracters_minimum: Täytyy olla vähintään %d merkkiä pitkä.
524 text_length_between: Pituus välillä %d ja %d merkkiä.
634 text_caracters_maximum: "{{count}} merkkiä enintään."
635 text_caracters_minimum: "Täytyy olla vähintään {{count}} merkkiä pitkä."
636 text_length_between: "Pituus välillä {{min}} ja {{max}} merkkiä."
525 637 text_tracker_no_workflow: Työnkulkua ei määritelty tälle tapahtumalle
526 638 text_unallowed_characters: Kiellettyjä merkkejä
527 639 text_comma_separated: Useat arvot sallittu (pilkku eroteltuna).
528 640 text_issues_ref_in_commit_messages: Liitän ja korjaan ongelmia syötetyssä viestissä
529 text_issue_added: Tapahtuma %s on kirjattu.
530 text_issue_updated: Tapahtuma %s on päivitetty.
641 text_issue_added: "Issue {{id}} has been reported by {{author}}."
642 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
531 643 text_wiki_destroy_confirmation: Oletko varma että haluat poistaa tämän wiki:n ja kaikki sen sisältämän tiedon?
532 text_issue_category_destroy_question: Jotkut tapahtumat (%d) ovat nimetty tälle luokalle. Mitä haluat tehdä?
644 text_issue_category_destroy_question: "Jotkut tapahtumat ({{count}}) ovat nimetty tälle luokalle. Mitä haluat tehdä?"
533 645 text_issue_category_destroy_assignments: Poista luokan tehtävät
534 646 text_issue_category_reassign_to: Vaihda tapahtuma tähän luokkaan
535 647 text_user_mail_option: "Valitsemattomille projekteille, saat vain muistutuksen asioista joita seuraat tai olet mukana (esim. tapahtumat joissa olet tekijä tai nimettynä)."
@@ -563,7 +675,7 enumeration_doc_categories: Dokumentin luokat
563 675 enumeration_activities: Historia (ajan seuranta)
564 676 label_associated_revisions: Liittyvät versiot
565 677 setting_user_format: Käyttäjien esitysmuoto
566 text_status_changed_by_changeset: Päivitetty muutosversioon %s.
678 text_status_changed_by_changeset: "Päivitetty muutosversioon {{value}}."
567 679 text_issues_destroy_confirmation: 'Oletko varma että haluat poistaa valitut tapahtumat ?'
568 680 label_more: Lisää
569 681 label_issue_added: Tapahtuma lisätty
@@ -592,7 +704,7 label_downloads_abbr: D/L
592 704 label_add_another_file: Lisää uusi tiedosto
593 705 label_this_month: tässä kuussa
594 706 text_destroy_time_entries_question: %.02f tuntia on raportoitu tapahtumasta jonka aiot poistaa. Mitä haluat tehdä ?
595 label_last_n_days: viimeiset %d päivää
707 label_last_n_days: "viimeiset {{count}} päivää"
596 708 label_all_time: koko ajalta
597 709 error_issue_not_found_in_project: 'Tapahtumaa ei löytynyt tai se ei kuulu tähän projektiin'
598 710 label_this_year: tänä vuonna
@@ -604,7 +716,6 label_optional_description: Lisäkuvaus
604 716 label_last_month: viime kuussa
605 717 text_destroy_time_entries: Poista raportoidut tunnit
606 718 text_reassign_time_entries: 'Siirrä raportoidut tunnit tälle tapahtumalle:'
607 label_on: ''
608 719 label_chronological_order: Aikajärjestyksessä
609 720 label_date_to: ''
610 721 setting_activity_days_default: Päivien esittäminen projektien historiassa
@@ -618,15 +729,15 setting_default_projects_public: Uudet projektit ovat oletuksena julkisia
618 729 label_overall_activity: Kokonaishistoria
619 730 error_scm_annotate: "Merkintää ei ole tai siihen ei voi lisätä selityksiä."
620 731 label_planning: Suunnittelu
621 text_subprojects_destroy_warning: 'Tämän aliprojekti(t): %s tullaan myös poistamaan.'
622 label_and_its_subprojects: %s ja aliprojektit
623 mail_body_reminder: "%d sinulle nimettyä tapahtuma(a) erääntyy %d päivä sisään:"
624 mail_subject_reminder: "%d tapahtuma(a) erääntyy lähipäivinä"
625 text_user_wrote: '%s kirjoitti:'
732 text_subprojects_destroy_warning: "Tämän aliprojekti(t): {{value}} tullaan myös poistamaan.'"
733 label_and_its_subprojects: "{{value}} ja aliprojektit"
734 mail_body_reminder: "{{count}} sinulle nimettyä tapahtuma(a) erääntyy {{days}} päivä sisään:"
735 mail_subject_reminder: "{{count}} tapahtuma(a) erääntyy lähipäivinä"
736 text_user_wrote: "{{value}} kirjoitti:'"
626 737 label_duplicated_by: kopioinut
627 738 setting_enabled_scm: Versionhallinta käytettävissä
628 739 text_enumeration_category_reassign_to: 'Siirrä täksi arvoksi:'
629 text_enumeration_destroy_question: '%d kohdetta on sijoitettu tälle arvolle.'
740 text_enumeration_destroy_question: "{{count}} kohdetta on sijoitettu tälle arvolle.'"
630 741 label_incoming_emails: Saapuvat sähköpostiviestit
631 742 label_generate_key: Luo avain
632 743 setting_mail_handler_api_enabled: Ota käyttöön WS saapuville sähköposteille
@@ -692,18 +803,14 label_example: Esimerkki
692 803 text_repository_usernames_mapping: "Valitse päivittääksesi Redmine käyttäjä jokaiseen käyttäjään joka löytyy tietovaraston lokista.\nKäyttäjät joilla on sama Redmine ja tietovaraston käyttäjänimi tai sähköpostiosoite, yhdistetään automaattisesti."
693 804 permission_edit_own_messages: Muokkaa omia viestejä
694 805 permission_delete_own_messages: Poista omia viestejä
695 label_user_activity: "Käyttäjän %s historia"
696 label_updated_time_by: Updated by %s %s ago
806 label_user_activity: "Käyttäjän {{value}} historia"
807 label_updated_time_by: "Updated by {{author}} {{age}} ago"
697 808 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
698 809 setting_diff_max_lines_displayed: Max number of diff lines displayed
699 810 text_plugin_assets_writable: Plugin assets directory writable
700 warning_attachments_not_saved: "%d file(s) could not be saved."
811 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
701 812 button_create_and_continue: Create and continue
702 813 text_custom_field_possible_values_info: 'One line for each value'
703 814 label_display: Display
704 815 field_editable: Editable
705 816 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
@@ -1,47 +1,132
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # French translations for Ruby on Rails
2 # by Christian Lescuyer (christian@flyingcoders.com)
3 # contributor: Sebastien Grosjean - ZenCocoon.com
2 4
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
5 actionview_datehelper_select_month_names_abbr: Jan,Fév,Mars,Avril,Mai,Juin,Juil,Août,Sept,Oct,Nov,Déc
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 jour
9 actionview_datehelper_time_in_words_day_plural: %d jours
10 actionview_datehelper_time_in_words_hour_about: environ une heure
11 actionview_datehelper_time_in_words_hour_about_plural: environ %d heures
12 actionview_datehelper_time_in_words_hour_about_single: environ une heure
13 actionview_datehelper_time_in_words_minute: 1 minute
14 actionview_datehelper_time_in_words_minute_half: 30 secondes
15 actionview_datehelper_time_in_words_minute_less_than: moins d'une minute
16 actionview_datehelper_time_in_words_minute_plural: %d minutes
17 actionview_datehelper_time_in_words_minute_single: 1 minute
18 actionview_datehelper_time_in_words_second_less_than: moins d'une seconde
19 actionview_datehelper_time_in_words_second_less_than_plural: moins de %d secondes
20 actionview_instancetag_blank_option: Choisir
5 fr:
6 date:
7 formats:
8 default: "%d/%m/%Y"
9 short: "%e %b"
10 long: "%e %B %Y"
11 long_ordinal: "%e %B %Y"
12 only_day: "%e"
13
14 day_names: [dimanche, lundi, mardi, mercredi, jeudi, vendredi, samedi]
15 abbr_day_names: [dim, lun, mar, mer, jeu, ven, sam]
16 month_names: [~, janvier, février, mars, avril, mai, juin, juillet, août, septembre, octobre, novembre, décembre]
17 abbr_month_names: [~, jan., fév., mar., avr., mai, juin, juil., août, sept., oct., nov., déc.]
18 order: [ :day, :month, :year ]
19
20 time:
21 formats:
22 default: "%d/%m/%Y %H:%M"
23 time: "%H:%M"
24 short: "%d %b %H:%M"
25 long: "%A %d %B %Y %H:%M:%S %Z"
26 long_ordinal: "%A %d %B %Y %H:%M:%S %Z"
27 only_second: "%S"
28 am: 'am'
29 pm: 'pm'
30
31 datetime:
32 distance_in_words:
33 half_a_minute: "30 secondes"
34 less_than_x_seconds:
35 zero: "moins d'une seconde"
36 one: "moins de 1 seconde"
37 other: "moins de {{count}} secondes"
38 x_seconds:
39 one: "1 seconde"
40 other: "{{count}} secondes"
41 less_than_x_minutes:
42 zero: "moins d'une minute"
43 one: "moins de 1 minute"
44 other: "moins de {{count}} minutes"
45 x_minutes:
46 one: "1 minute"
47 other: "{{count}} minutes"
48 about_x_hours:
49 one: "environ une heure"
50 other: "environ {{count}} heures"
51 x_days:
52 one: "1 jour"
53 other: "{{count}} jours"
54 about_x_months:
55 one: "environ un mois"
56 other: "environ {{count}} mois"
57 x_months:
58 one: "1 mois"
59 other: "{{count}} mois"
60 about_x_years:
61 one: "environ un an"
62 other: "environ {{count}} ans"
63 over_x_years:
64 one: "plus d'un an"
65 other: "plus de {{count}} ans"
66 prompts:
67 year: "Année"
68 month: "Mois"
69 day: "Jour"
70 hour: "Heure"
71 minute: "Minute"
72 second: "Seconde"
21 73
22 activerecord_error_inclusion: n'est pas inclus dans la liste
23 activerecord_error_exclusion: est reservé
24 activerecord_error_invalid: est invalide
25 activerecord_error_confirmation: ne correspond pas à la confirmation
26 activerecord_error_accepted: doit être accepté
27 activerecord_error_empty: doit être renseigné
28 activerecord_error_blank: doit être renseigné
29 activerecord_error_too_long: est trop long
30 activerecord_error_too_short: est trop court
31 activerecord_error_wrong_length: n'est pas de la bonne longueur
32 activerecord_error_taken: est déjà utilisé
33 activerecord_error_not_a_number: n'est pas un nombre
34 activerecord_error_not_a_date: n'est pas une date valide
35 activerecord_error_greater_than_start_date: doit être postérieur à la date de début
36 activerecord_error_not_same_project: n'appartient pas au même projet
37 activerecord_error_circular_dependency: Cette relation créerait une dépendance circulaire
74 number:
75 format:
76 precision: 3
77 separator: ','
78 delimiter: ' '
79 currency:
80 format:
81 unit: '€'
82 precision: 2
83 format: '%n %u'
84 human:
85 format:
86 precision: 2
87 storage_units: [ Octet, ko, Mo, Go, To ]
88
89 support:
90 array:
91 sentence_connector: 'et'
92 skip_last_comma: true
93 word_connector: ", "
94 two_words_connector: " et "
95 last_word_connector: " et "
96
97 activerecord:
98 errors:
99 template:
100 header:
101 one: "Impossible d'enregistrer {{model}}: 1 erreur"
102 other: "Impossible d'enregistrer {{model}}: {{count}} erreurs."
103 body: "Veuillez vérifier les champs suivants :"
104 messages:
105 inclusion: "n'est pas inclus(e) dans la liste"
106 exclusion: "n'est pas disponible"
107 invalid: "n'est pas valide"
108 confirmation: "ne concorde pas avec la confirmation"
109 accepted: "doit être accepté(e)"
110 empty: "doit être renseigné(e)"
111 blank: "doit être renseigné(e)"
112 too_long: "est trop long (pas plus de {{count}} caractères)"
113 too_short: "est trop court (au moins {{count}} caractères)"
114 wrong_length: "ne fait pas la bonne longueur (doit comporter {{count}} caractères)"
115 taken: "n'est pas disponible"
116 not_a_number: "n'est pas un nombre"
117 greater_than: "doit être supérieur à {{count}}"
118 greater_than_or_equal_to: "doit être supérieur ou égal à {{count}}"
119 equal_to: "doit être égal à {{count}}"
120 less_than: "doit être inférieur à {{count}}"
121 less_than_or_equal_to: "doit être inférieur ou égal à {{count}}"
122 odd: "doit être impair"
123 even: "doit être pair"
124 greater_than_start_date: "doit être postérieure à la date de début"
125 not_same_project: "n'appartient pas au même projet"
126 circular_dependency: "Cette relation créerait une dépendance circulaire"
127
128 actionview_instancetag_blank_option: Choisir
38 129
39 general_fmt_age: %d an
40 general_fmt_age_plural: %d ans
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
43 general_fmt_datetime_short: %%d/%%m %%H:%%M
44 general_fmt_time: %%H:%%M
45 130 general_text_No: 'Non'
46 131 general_text_Yes: 'Oui'
47 132 general_text_no: 'non'
@@ -51,7 +136,6 general_csv_separator: ';'
51 136 general_csv_decimal_separator: ','
52 137 general_csv_encoding: ISO-8859-1
53 138 general_pdf_encoding: ISO-8859-1
54 general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche
55 139 general_first_day_of_week: '1'
56 140
57 141 notice_account_updated: Le compte a été mis à jour avec succès.
@@ -70,36 +154,36 notice_successful_connection: Connection réussie.
70 154 notice_file_not_found: "La page à laquelle vous souhaitez accéder n'existe pas ou a été supprimée."
71 155 notice_locking_conflict: Les données ont été mises à jour par un autre utilisateur. Mise à jour impossible.
72 156 notice_not_authorized: "Vous n'êtes pas autorisés à accéder à cette page."
73 notice_email_sent: "Un email a été envoyé à %s"
74 notice_email_error: "Erreur lors de l'envoi de l'email (%s)"
157 notice_email_sent: "Un email a été envoyé à {{value}}"
158 notice_email_error: "Erreur lors de l'envoi de l'email ({{value}})"
75 159 notice_feeds_access_key_reseted: "Votre clé d'accès aux flux RSS a été réinitialisée."
76 notice_failed_to_save_issues: "%d demande(s) sur les %d sélectionnées n'ont pas pu être mise(s) à jour: %s."
160 notice_failed_to_save_issues: "{{count}} demande(s) sur les {{total}} sélectionnées n'ont pas pu être mise(s) à jour: {{ids}}."
77 161 notice_no_issue_selected: "Aucune demande sélectionnée ! Cochez les demandes que vous voulez mettre à jour."
78 162 notice_account_pending: "Votre compte a été créé et attend l'approbation de l'administrateur."
79 163 notice_default_data_loaded: Paramétrage par défaut chargé avec succès.
80 164 notice_unable_delete_version: Impossible de supprimer cette version.
81 165
82 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: %s"
166 error_can_t_load_default_data: "Une erreur s'est produite lors du chargement du paramétrage: {{value}}"
83 167 error_scm_not_found: "L'entrée et/ou la révision demandée n'existe pas dans le dépôt."
84 error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: %s"
168 error_scm_command_failed: "Une erreur s'est produite lors de l'accès au dépôt: {{value}}"
85 169 error_scm_annotate: "L'entrée n'existe pas ou ne peut pas être annotée."
86 170 error_issue_not_found_in_project: "La demande n'existe pas ou n'appartient pas à ce projet"
87 171
88 warning_attachments_not_saved: "%d fichier(s) n'ont pas pu être sauvegardés."
172 warning_attachments_not_saved: "{{count}} fichier(s) n'ont pas pu être sauvegardés."
89 173
90 mail_subject_lost_password: Votre mot de passe %s
174 mail_subject_lost_password: "Votre mot de passe {{value}}"
91 175 mail_body_lost_password: 'Pour changer votre mot de passe, cliquez sur le lien suivant:'
92 mail_subject_register: Activation de votre compte %s
176 mail_subject_register: "Activation de votre compte {{value}}"
93 177 mail_body_register: 'Pour activer votre compte, cliquez sur le lien suivant:'
94 mail_body_account_information_external: Vous pouvez utiliser votre compte "%s" pour vous connecter.
178 mail_body_account_information_external: "Vous pouvez utiliser votre compte {{value}} pour vous connecter."
95 179 mail_body_account_information: Paramètres de connexion de votre compte
96 mail_subject_account_activation_request: "Demande d'activation d'un compte %s"
97 mail_body_account_activation_request: "Un nouvel utilisateur (%s) s'est inscrit. Son compte nécessite votre approbation:"
98 mail_subject_reminder: "%d demande(s) arrivent à échéance"
99 mail_body_reminder: "%d demande(s) qui vous sont assignées arrivent à échéance dans les %d prochains jours:"
180 mail_subject_account_activation_request: "Demande d'activation d'un compte {{value}}"
181 mail_body_account_activation_request: "Un nouvel utilisateur ({{value}}) s'est inscrit. Son compte nécessite votre approbation:"
182 mail_subject_reminder: "{{count}} demande(s) arrivent à échéance"
183 mail_body_reminder: "{{count}} demande(s) qui vous sont assignées arrivent à échéance dans les {{days}} prochains jours:"
100 184
101 185 gui_validation_error: 1 erreur
102 gui_validation_error_plural: %d erreurs
186 gui_validation_error_plural: "{{count}} erreurs"
103 187
104 188 field_name: Nom
105 189 field_description: Description
@@ -187,8 +271,6 field_default_value: Valeur par défaut
187 271 field_comments_sorting: Afficher les commentaires
188 272 field_parent_title: Page parent
189 273 field_editable: Modifiable
190 field_identity_url: URL OpenID
191 field_watcher: Observateur
192 274
193 275 setting_app_title: Titre de l'application
194 276 setting_app_subtitle: Sous-titre de l'application
@@ -230,7 +312,6 setting_sequential_project_identifiers: Générer des identifiants de projet sé
230 312 setting_gravatar_enabled: Afficher les Gravatar des utilisateurs
231 313 setting_diff_max_lines_displayed: Nombre maximum de lignes de diff affichées
232 314 setting_repository_log_display_limit: "Nombre maximum de revisions affichées sur l'historique d'un fichier"
233 setting_openid: "Autoriser l'authentification et l'enregistrement OpenID"
234 315
235 316 permission_edit_project: Modifier le projet
236 317 permission_select_project_modules: Choisir les modules
@@ -296,6 +377,10 label_user_new: Nouvel utilisateur
296 377 label_project: Projet
297 378 label_project_new: Nouveau projet
298 379 label_project_plural: Projets
380 label_x_projects:
381 zero: aucun projet
382 one: 1 projet
383 other: "{{count}} projets"
299 384 label_project_all: Tous les projets
300 385 label_project_latest: Derniers projets
301 386 label_issue: Demande
@@ -304,7 +389,7 label_issue_plural: Demandes
304 389 label_issue_view_all: Voir toutes les demandes
305 390 label_issue_added: Demande ajoutée
306 391 label_issue_updated: Demande mise à jour
307 label_issues_by: Demandes par %s
392 label_issues_by: "Demandes par {{value}}"
308 393 label_document: Document
309 394 label_document_new: Nouveau document
310 395 label_document_plural: Documents
@@ -347,12 +432,10 label_help: Aide
347 432 label_reported_issues: Demandes soumises
348 433 label_assigned_to_me_issues: Demandes qui me sont assignées
349 434 label_last_login: Dernière connexion
350 label_last_updates: Dernière mise à jour
351 label_last_updates_plural: %d dernières mises à jour
352 435 label_registered_on: Inscrit le
353 436 label_activity: Activité
354 437 label_overall_activity: Activité globale
355 label_user_activity: "Activité de %s"
438 label_user_activity: "Activité de {{value}}"
356 439 label_new: Nouveau
357 440 label_logged_as: Connecté en tant que
358 441 label_environment: Environnement
@@ -361,7 +444,7 label_auth_source: Mode d'authentification
361 444 label_auth_source_new: Nouveau mode d'authentification
362 445 label_auth_source_plural: Modes d'authentification
363 446 label_subproject_plural: Sous-projets
364 label_and_its_subprojects: %s et ses sous-projets
447 label_and_its_subprojects: "{{value}} et ses sous-projets"
365 448 label_min_max_length: Longueurs mini - maxi
366 449 label_list: Liste
367 450 label_date: Date
@@ -372,8 +455,8 label_string: Texte
372 455 label_text: Texte long
373 456 label_attribute: Attribut
374 457 label_attribute_plural: Attributs
375 label_download: %d Téléchargement
376 label_download_plural: %d Téléchargements
458 label_download: "{{count}} Téléchargement"
459 label_download_plural: "{{count}} Téléchargements"
377 460 label_no_data: Aucune donnée à afficher
378 461 label_change_status: Changer le statut
379 462 label_history: Historique
@@ -404,6 +487,18 label_open_issues: ouvert
404 487 label_open_issues_plural: ouverts
405 488 label_closed_issues: fermé
406 489 label_closed_issues_plural: fermés
490 label_x_open_issues_abbr_on_total:
491 zero: 0 ouvert sur {{total}}
492 one: 1 ouvert sur {{total}}
493 other: "{{count}} ouverts sur {{total}}"
494 label_x_open_issues_abbr:
495 zero: 0 ouvert
496 one: 1 ouvert
497 other: "{{count}} ouverts"
498 label_x_closed_issues_abbr:
499 zero: 0 fermé
500 one: 1 fermé
501 other: "{{count}} fermés"
407 502 label_total: Total
408 503 label_permissions: Permissions
409 504 label_current_status: Statut actuel
@@ -421,11 +516,15 label_calendar: Calendrier
421 516 label_months_from: mois depuis
422 517 label_gantt: Gantt
423 518 label_internal: Interne
424 label_last_changes: %d derniers changements
519 label_last_changes: "{{count}} derniers changements"
425 520 label_change_view_all: Voir tous les changements
426 521 label_personalize_page: Personnaliser cette page
427 522 label_comment: Commentaire
428 523 label_comment_plural: Commentaires
524 label_x_comments:
525 zero: aucun commentaire
526 one: 1 commentaire
527 other: "{{count}} commentaires"
429 528 label_comment_add: Ajouter un commentaire
430 529 label_comment_added: Commentaire ajouté
431 530 label_comment_delete: Supprimer les commentaires
@@ -444,7 +543,7 label_all_time: toute la période
444 543 label_yesterday: hier
445 544 label_this_week: cette semaine
446 545 label_last_week: la semaine dernière
447 label_last_n_days: les %d derniers jours
546 label_last_n_days: "les {{count}} derniers jours"
448 547 label_this_month: ce mois-ci
449 548 label_last_month: le mois dernier
450 549 label_this_year: cette année
@@ -458,8 +557,8 label_day_plural: jours
458 557 label_repository: Dépôt
459 558 label_repository_plural: Dépôts
460 559 label_browse: Parcourir
461 label_modification: %d modification
462 label_modification_plural: %d modifications
560 label_modification: "{{count}} modification"
561 label_modification_plural: "{{count}} modifications"
463 562 label_revision: Révision
464 563 label_revision_plural: Révisions
465 564 label_associated_revisions: Révisions associées
@@ -472,14 +571,13 label_latest_revision: Dernière révision
472 571 label_latest_revision_plural: Dernières révisions
473 572 label_view_revisions: Voir les révisions
474 573 label_max_size: Taille maximale
475 label_on: sur
476 574 label_sort_highest: Remonter en premier
477 575 label_sort_higher: Remonter
478 576 label_sort_lower: Descendre
479 577 label_sort_lowest: Descendre en dernier
480 578 label_roadmap: Roadmap
481 label_roadmap_due_in: Echéance dans %s
482 label_roadmap_overdue: En retard de %s
579 label_roadmap_due_in: "Echéance dans {{value}}"
580 label_roadmap_overdue: "En retard de {{value}}"
483 581 label_roadmap_no_issues: Aucune demande pour cette version
484 582 label_search: Recherche
485 583 label_result_plural: Résultats
@@ -497,8 +595,8 label_feed_plural: Flux RSS
497 595 label_changes_details: Détails de tous les changements
498 596 label_issue_tracking: Suivi des demandes
499 597 label_spent_time: Temps passé
500 label_f_hour: %.2f heure
501 label_f_hour_plural: %.2f heures
598 label_f_hour: "{{value}} heure"
599 label_f_hour_plural: "{{value}} heures"
502 600 label_time_tracking: Suivi du temps
503 601 label_change_plural: Changements
504 602 label_statistics: Statistiques
@@ -547,13 +645,13 label_week: Semaine
547 645 label_date_from: Du
548 646 label_date_to: Au
549 647 label_language_based: Basé sur la langue de l'utilisateur
550 label_sort_by: Trier par %s
648 label_sort_by: "Trier par {{value}}"
551 649 label_send_test_email: Envoyer un email de test
552 label_feeds_access_key_created_on: Clé d'accès RSS créée il y a %s
650 label_feeds_access_key_created_on: "Clé d'accès RSS créée il y a {{value}}"
553 651 label_module_plural: Modules
554 label_added_time_by: Ajouté par %s il y a %s
555 label_updated_time_by: Mis à jour par %s il y a %s
556 label_updated_time: Mis à jour il y a %s
652 label_added_time_by: "Ajouté par {{author}} il y a {{age}}"
653 label_updated_time_by: "Mis à jour par {{author}} il y a {{age}}"
654 label_updated_time: "Mis à jour il y a {{value}}"
557 655 label_jump_to_a_project: Aller à un projet...
558 656 label_file_plural: Fichiers
559 657 label_changeset_plural: Révisions
@@ -570,7 +668,7 label_user_mail_no_self_notified: "Je ne veux pas être notifié des changements
570 668 label_registration_activation_by_email: activation du compte par email
571 669 label_registration_manual_activation: activation manuelle du compte
572 670 label_registration_automatic_activation: activation automatique du compte
573 label_display_per_page: 'Par page: %s'
671 label_display_per_page: "Par page: {{value}}"
574 672 label_age: Age
575 673 label_change_properties: Changer les propriétés
576 674 label_general: Général
@@ -590,7 +688,6 label_generate_key: Générer une clé
590 688 label_issue_watchers: Observateurs
591 689 label_example: Exemple
592 690 label_display: Affichage
593 label_login_with_open_id_option: Authentification OpenID
594 691
595 692 button_login: Connexion
596 693 button_submit: Soumettre
@@ -640,33 +737,33 text_select_mail_notifications: Actions pour lesquelles une notification par e-m
640 737 text_regexp_info: ex. ^[A-Z0-9]+$
641 738 text_min_max_length_info: 0 pour aucune restriction
642 739 text_project_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce projet et toutes ses données ?
643 text_subprojects_destroy_warning: 'Ses sous-projets: %s seront également supprimés.'
740 text_subprojects_destroy_warning: "Ses sous-projets: {{value}} seront également supprimés.'"
644 741 text_workflow_edit: Sélectionner un tracker et un rôle pour éditer le workflow
645 742 text_are_you_sure: Etes-vous sûr ?
646 text_journal_changed: changé de %s à %s
647 text_journal_set_to: mis à %s
743 text_journal_changed: "changé de {{old}} à {{new}}"
744 text_journal_set_to: "mis à {{value}}"
648 745 text_journal_deleted: supprimé
649 746 text_tip_task_begin_day: tâche commençant ce jour
650 747 text_tip_task_end_day: tâche finissant ce jour
651 748 text_tip_task_begin_end_day: tâche commençant et finissant ce jour
652 749 text_project_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres et tirets sont autorisés.<br />Un fois sauvegardé, l''identifiant ne pourra plus être modifié.'
653 text_caracters_maximum: %d caractères maximum.
654 text_caracters_minimum: %d caractères minimum.
655 text_length_between: Longueur comprise entre %d et %d caractères.
750 text_caracters_maximum: "{{count}} caractères maximum."
751 text_caracters_minimum: "{{count}} caractères minimum."
752 text_length_between: "Longueur comprise entre {{min}} et {{max}} caractères."
656 753 text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
657 754 text_unallowed_characters: Caractères non autorisés
658 755 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
659 756 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
660 text_issue_added: La demande %s a été soumise par %s.
661 text_issue_updated: La demande %s a été mise à jour par %s.
757 text_issue_added: "La demande {{id}} a été soumise par {{author}}."
758 text_issue_updated: "La demande {{id}} a été mise à jour par {{author}}."
662 759 text_wiki_destroy_confirmation: Etes-vous sûr de vouloir supprimer ce wiki et tout son contenu ?
663 text_issue_category_destroy_question: %d demandes sont affectées à cette catégories. Que voulez-vous faire ?
760 text_issue_category_destroy_question: "{{count}} demandes sont affectées à cette catégories. Que voulez-vous faire ?"
664 761 text_issue_category_destroy_assignments: N'affecter les demandes à aucune autre catégorie
665 762 text_issue_category_reassign_to: Réaffecter les demandes à cette catégorie
666 763 text_user_mail_option: "Pour les projets non sélectionnés, vous recevrez seulement des notifications pour ce que vous surveillez ou à quoi vous participez (exemple: demandes dont vous êtes l'auteur ou la personne assignée)."
667 764 text_no_configuration_data: "Les rôles, trackers, statuts et le workflow ne sont pas encore paramétrés.\nIl est vivement recommandé de charger le paramétrage par defaut. Vous pourrez le modifier une fois chargé."
668 765 text_load_default_configuration: Charger le paramétrage par défaut
669 text_status_changed_by_changeset: Appliqué par commit %s.
766 text_status_changed_by_changeset: "Appliqué par commit {{value}}."
670 767 text_issues_destroy_confirmation: 'Etes-vous sûr de vouloir supprimer le(s) demandes(s) selectionnée(s) ?'
671 768 text_select_project_modules: 'Selectionner les modules à activer pour ce project:'
672 769 text_default_administrator_account_changed: Compte administrateur par défaut changé
@@ -677,8 +774,8 text_destroy_time_entries_question: %.02f heures ont été enregistrées sur les
677 774 text_destroy_time_entries: Supprimer les heures
678 775 text_assign_time_entries_to_project: Reporter les heures sur le projet
679 776 text_reassign_time_entries: 'Reporter les heures sur cette demande:'
680 text_user_wrote: '%s a écrit:'
681 text_enumeration_destroy_question: 'Cette valeur est affectée à %d objets.'
777 text_user_wrote: "{{value}} a écrit:'"
778 text_enumeration_destroy_question: "Cette valeur est affectée à {{count}} objets.'"
682 779 text_enumeration_category_reassign_to: 'Réaffecter les objets à cette valeur:'
683 780 text_email_delivery_not_configured: "L'envoi de mail n'est pas configuré, les notifications sont désactivées.\nConfigurez votre serveur SMTP dans config/email.yml et redémarrez l'application pour les activer."
684 781 text_repository_usernames_mapping: "Vous pouvez sélectionner ou modifier l'utilisateur Redmine associé à chaque nom d'utilisateur figurant dans l'historique du dépôt.\nLes utilisateurs avec le même identifiant ou la même adresse mail seront automatiquement associés."
@@ -1,47 +1,110
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Hebrew translations for Ruby on Rails
2 # by Dotan Nahum (dipidi@gmail.com)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: ינואר,פברואר,מרץ,אפריל,מאי,יוני,יולי,אוגוסט,ספטמבר,אוקטובר,נובמבר,דצבמבר
5 actionview_datehelper_select_month_names_abbr: ינו',פבו',מרץ,אפר',מאי,יונ',יול',אוג',ספט',אוקט',נוב',דצמ'
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: יום 1
9 actionview_datehelper_time_in_words_day_plural: %d ימים
10 actionview_datehelper_time_in_words_hour_about: כשעה
11 actionview_datehelper_time_in_words_hour_about_plural: כ-%d שעות
12 actionview_datehelper_time_in_words_hour_about_single: כשעה
13 actionview_datehelper_time_in_words_minute: דקה 1
14 actionview_datehelper_time_in_words_minute_half: חצי דקה
15 actionview_datehelper_time_in_words_minute_less_than: פחות מדקה
16 actionview_datehelper_time_in_words_minute_plural: %d דקות
17 actionview_datehelper_time_in_words_minute_single: דקה 1
18 actionview_datehelper_time_in_words_second_less_than: פחות משניה
19 actionview_datehelper_time_in_words_second_less_than_plural: פחות מ-%d שניות
20 actionview_instancetag_blank_option: בחר בבקשה
4 he:
5 date:
6 formats:
7 default: "%Y-%m-%d"
8 short: "%e %b"
9 long: "%B %e, %Y"
10 only_day: "%e"
11
12 day_names: [ראשון, שני, שלישי, רביעי, חמישי, שישי, שבת]
13 abbr_day_names: [רא, שנ, של, רב, חמ, שי, שב]
14 month_names: [~, ינואר, פברואר, מרץ, אפריל, מאי, יוני, יולי, אוגוסט, ספטמבר, אוקטובר, נובמבר, דצמבר]
15 abbr_month_names: [~, יאנ, פב, מרץ, אפר, מאי, יונ, יול, אוג, ספט, אוק, נוב, דצ]
16 order: [ :day, :month, :year ]
17
18 time:
19 formats:
20 default: "%a %b %d %H:%M:%S %Z %Y"
21 time: "%H:%M"
22 short: "%d %b %H:%M"
23 long: "%B %d, %Y %H:%M"
24 only_second: "%S"
25
26 datetime:
27 formats:
28 default: "%d-%m-%YT%H:%M:%S%Z"
29
30 am: 'am'
31 pm: 'pm'
21 32
22 activerecord_error_inclusion: לא כלול ברשימה
23 activerecord_error_exclusion: שמור
24 activerecord_error_invalid: לא קביל
25 activerecord_error_confirmation: לא מתאים לאישור
26 activerecord_error_accepted: חייב להסכים
27 activerecord_error_empty: לא יכול להיות ריק
28 activerecord_error_blank: לא יכול להיות חסר
29 activerecord_error_too_long: ארוך מדי
30 activerecord_error_too_short: קצר מדי
31 activerecord_error_wrong_length: בארוך שגוי
32 activerecord_error_taken: כבר נלקח
33 activerecord_error_not_a_number: אינו מספר
34 activerecord_error_not_a_date: אינו תאריך קביל
35 activerecord_error_greater_than_start_date: חייב להיות מאוחר יותר מתאריך ההתחלה
36 activerecord_error_not_same_project: לא שייך לאותו הפרויקט
37 activerecord_error_circular_dependency: הקשר הזה יצור תלות מעגלית
33 datetime:
34 distance_in_words:
35 half_a_minute: 'חצי דקה'
36 less_than_x_seconds:
37 zero: 'פחות משניה אחת'
38 one: 'פחות משניה אחת'
39 other: 'פחות מ- {{count}} שניות'
40 x_seconds:
41 one: 'שניה אחת'
42 other: '{{count}} שניות'
43 less_than_x_minutes:
44 zero: 'פחות מדקה אחת'
45 one: 'פחות מדקה אחת'
46 other: 'פחות מ- {{count}} דקות'
47 x_minutes:
48 one: 'דקה אחת'
49 other: '{{count}} דקות'
50 about_x_hours:
51 one: 'בערך שעה אחת'
52 other: 'בערך {{count}} שעות'
53 x_days:
54 one: 'יום אחד'
55 other: '{{count}} ימים'
56 about_x_months:
57 one: 'בערך חודש אחד'
58 other: 'בערך {{count}} חודשים'
59 x_months:
60 one: 'חודש אחד'
61 other: '{{count}} חודשים'
62 about_x_years:
63 one: 'בערך שנה אחת'
64 other: 'בערך {{count}} שנים'
65 over_x_years:
66 one: 'מעל שנה אחת'
67 other: 'מעל {{count}} שנים'
68
69 number:
70 format:
71 precision: 3
72 separator: '.'
73 delimiter: ','
74 currency:
75 format:
76 unit: 'שח'
77 precision: 2
78 format: '%u %n'
79
80 activerecord:
81 errors:
82 messages:
83 inclusion: "לא נכלל ברשימה"
84 exclusion: "לא זמין"
85 invalid: "לא ולידי"
86 confirmation: "לא תואם לאישורו"
87 accepted: "חייב באישור"
88 empty: "חייב להכלל"
89 blank: "חייב להכלל"
90 too_long: "יותר מדי ארוך (לא יותר מ- {{count}} תוים)"
91 too_short: "יותר מדי קצר (לא יותר מ- {{count}} תוים)"
92 wrong_length: "לא באורך הנכון (חייב להיות {{count}} תוים)"
93 taken: "לא זמין"
94 not_a_number: "הוא לא מספר"
95 greater_than: "חייב להיות גדול מ- {{count}}"
96 greater_than_or_equal_to: "חייב להיות גדול או שווה ל- {{count}}"
97 equal_to: "חייב להיות שווה ל- {{count}}"
98 less_than: "חייב להיות קטן מ- {{count}}"
99 less_than_or_equal_to: "חייב להיות קטן או שווה ל- {{count}}"
100 odd: "חייב להיות אי זוגי"
101 even: "חייב להיות זוגי"
102 greater_than_start_date: "חייב להיות מאוחר יותר מתאריך ההתחלה"
103 not_same_project: "לא שייך לאותו הפרויקט"
104 circular_dependency: "הקשר הזה יצור תלות מעגלית"
105
106 actionview_instancetag_blank_option: בחר בבקשה
38 107
39 general_fmt_age: שנה %d
40 general_fmt_age_plural: %d שנים
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 108 general_text_No: 'לא'
46 109 general_text_Yes: 'כן'
47 110 general_text_no: 'לא'
@@ -51,7 +114,6 general_csv_separator: ','
51 114 general_csv_decimal_separator: '.'
52 115 general_csv_encoding: ISO-8859-8-I
53 116 general_pdf_encoding: ISO-8859-8-I
54 general_day_names: שני,שלישי,רביעי,חמישי,שישי,שבת,ראשון
55 117 general_first_day_of_week: '7'
56 118
57 119 notice_account_updated: החשבון עודכן בהצלחה!
@@ -70,22 +132,22 notice_successful_connection: חיבור מוצלח.
70 132 notice_file_not_found: הדף שאת\ה מנסה לגשת אליו אינו קיים או שהוסר.
71 133 notice_locking_conflict: המידע עודכן על ידי משתמש אחר.
72 134 notice_not_authorized: אינך מורשה לראות דף זה.
73 notice_email_sent: דוא"ל נשלח לכתובת %s
74 notice_email_error: ארעה שגיאה בעט שליחת הדוא"ל (%s)
135 notice_email_sent: "דואל נשלח לכתובת {{value}}"
136 notice_email_error: "ארעה שגיאה בעט שליחת הדואל ({{value}})"
75 137 notice_feeds_access_key_reseted: מפתח ה-RSS שלך אופס.
76 notice_failed_to_save_issues: "נכשרת בשמירת %d נושא\ים ב %d נבחרו: %s."
138 notice_failed_to_save_issues: "נכשרת בשמירת {{count}} נושא\ים ב {{total}} נבחרו: {{ids}}."
77 139 notice_no_issue_selected: "לא נבחר אף נושא! בחר בבקשה את הנושאים שברצונך לערוך."
78 140
79 141 error_scm_not_found: כניסה ו\או גירסא אינם קיימים במאגר.
80 error_scm_command_failed: "ארעה שגיאה בעת ניסון גישה למאגר: %s"
142 error_scm_command_failed: "ארעה שגיאה בעת ניסון גישה למאגר: {{value}}"
81 143
82 mail_subject_lost_password: סיסמת ה-%s שלך
144 mail_subject_lost_password: "סיסמת ה-{{value}} שלך"
83 145 mail_body_lost_password: 'לשינו סיסמת ה-Redmine שלך,לחץ על הקישור הבא:'
84 mail_subject_register: הפעלת חשבון %s
146 mail_subject_register: "הפעלת חשבון {{value}}"
85 147 mail_body_register: 'להפעלת חשבון ה-Redmine שלך, לחץ על הקישור הבא:'
86 148
87 149 gui_validation_error: שגיאה 1
88 gui_validation_error_plural: %d שגיאות
150 gui_validation_error_plural: "{{count}} שגיאות"
89 151
90 152 field_name: שם
91 153 field_description: תיאור
@@ -198,6 +260,10 label_user_new: משתמש חדש
198 260 label_project: פרויקט
199 261 label_project_new: פרויקט חדש
200 262 label_project_plural: פרויקטים
263 label_x_projects:
264 zero: no projects
265 one: 1 project
266 other: "{{count}} projects"
201 267 label_project_all: כל הפרויקטים
202 268 label_project_latest: הפרויקטים החדשים ביותר
203 269 label_issue: נושא
@@ -245,8 +311,6 label_help: עזרה
245 311 label_reported_issues: נושאים שדווחו
246 312 label_assigned_to_me_issues: נושאים שהוצבו לי
247 313 label_last_login: חיבור אחרון
248 label_last_updates: עידכון אחרון
249 label_last_updates_plural: %d עידכונים אחרונים
250 314 label_registered_on: נרשם בתאריך
251 315 label_activity: פעילות
252 316 label_new: חדש
@@ -266,8 +330,8 label_string: טקסט
266 330 label_text: טקסט ארוך
267 331 label_attribute: תכונה
268 332 label_attribute_plural: תכונות
269 label_download: הורדה %d
270 label_download_plural: %d הורדות
333 label_download: "הורדה {{count}}"
334 label_download_plural: "{{count}} הורדות"
271 335 label_no_data: אין מידע להציג
272 336 label_change_status: שנה מצב
273 337 label_history: היסטוריה
@@ -296,6 +360,18 label_open_issues: פתוח
296 360 label_open_issues_plural: פתוחים
297 361 label_closed_issues: סגור
298 362 label_closed_issues_plural: סגורים
363 label_x_open_issues_abbr_on_total:
364 zero: 0 open / {{total}}
365 one: 1 open / {{total}}
366 other: "{{count}} open / {{total}}"
367 label_x_open_issues_abbr:
368 zero: 0 open
369 one: 1 open
370 other: "{{count}} open"
371 label_x_closed_issues_abbr:
372 zero: 0 closed
373 one: 1 closed
374 other: "{{count}} closed"
299 375 label_total: סה"כ
300 376 label_permissions: הרשאות
301 377 label_current_status: מצב נוכחי
@@ -312,11 +388,15 label_calendar: לוח שנה
312 388 label_months_from: חודשים מ
313 389 label_gantt: גאנט
314 390 label_internal: פנימי
315 label_last_changes: %d שינוים אחרונים
391 label_last_changes: "{{count}} שינוים אחרונים"
316 392 label_change_view_all: צפה בכל השינוים
317 393 label_personalize_page: הפוך דף זה לשלך
318 394 label_comment: תגובה
319 395 label_comment_plural: תגובות
396 label_x_comments:
397 zero: no comments
398 one: 1 comment
399 other: "{{count}} comments"
320 400 label_comment_add: הוסף תגובה
321 401 label_comment_added: תגובה הוספה
322 402 label_comment_delete: מחק תגובות
@@ -340,8 +420,8 label_not_contains: לא מכיל
340 420 label_day_plural: ימים
341 421 label_repository: מאגר
342 422 label_browse: סייר
343 label_modification: שינוי %d
344 label_modification_plural: %d שינויים
423 label_modification: "שינוי {{count}}"
424 label_modification_plural: "{{count}} שינויים"
345 425 label_revision: גירסא
346 426 label_revision_plural: גירסאות
347 427 label_added: הוסף
@@ -351,14 +431,13 label_latest_revision: גירסא אחרונה
351 431 label_latest_revision_plural: גירסאות אחרונות
352 432 label_view_revisions: צפה בגירסאות
353 433 label_max_size: גודל מקסימאלי
354 label_on: 'ב'
355 434 label_sort_highest: הזז לראשית
356 435 label_sort_higher: הזז למעלה
357 436 label_sort_lower: הזז למטה
358 437 label_sort_lowest: הזז לתחתית
359 438 label_roadmap: מפת הדרכים
360 label_roadmap_due_in: נגמר בעוד %s
361 label_roadmap_overdue: %s מאחר
439 label_roadmap_due_in: "נגמר בעוד {{value}}"
440 label_roadmap_overdue: "{{value}} מאחר"
362 441 label_roadmap_no_issues: אין נושאים לגירסא זו
363 442 label_search: חפש
364 443 label_result_plural: תוצאות
@@ -376,8 +455,8 label_feed_plural: הזנות
376 455 label_changes_details: פירוט כל השינויים
377 456 label_issue_tracking: מעקב אחר נושאים
378 457 label_spent_time: זמן שבוזבז
379 label_f_hour: %.2f שעה
380 label_f_hour_plural: %.2f שעות
458 label_f_hour: "{{value}} שעה"
459 label_f_hour_plural: "{{value}} שעות"
381 460 label_time_tracking: מעקב זמנים
382 461 label_change_plural: שינויים
383 462 label_statistics: סטטיסטיקות
@@ -424,12 +503,12 label_week: שבוע
424 503 label_date_from: מתאריך
425 504 label_date_to: עד
426 505 label_language_based: מבוסס שפה
427 label_sort_by: מין לפי %s
506 label_sort_by: "מין לפי {{value}}"
428 507 label_send_test_email: שלח דו"ל בדיקה
429 label_feeds_access_key_created_on: מפתח הזנת RSS נוצר לפני%s
508 label_feeds_access_key_created_on: "מפתח הזנת RSS נוצר לפני{{value}}"
430 509 label_module_plural: מודולים
431 label_added_time_by: הוסף על ידי %s לפני %s
432 label_updated_time: עודכן לפני %s
510 label_added_time_by: "הוסף על ידי {{author}} לפני {{age}} "
511 label_updated_time: "עודכן לפני {{value}} "
433 512 label_jump_to_a_project: קפוץ לפרויקט...
434 513 label_file_plural: קבצים
435 514 label_changeset_plural: אוסף שינוים
@@ -482,23 +561,23 text_min_max_length_info: 0 משמעו ללא הגבלות
482 561 text_project_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הפרויקט ואת כל המידע הקשור אליו ?
483 562 text_workflow_edit: בחר תפקיד ועוקב כדי לערות את זרימת העבודה
484 563 text_are_you_sure: האם אתה בטוח ?
485 text_journal_changed: שונה מ %s ל %s
486 text_journal_set_to: שונה ל %s
564 text_journal_changed: "שונה מ {{old}} ל {{new}}"
565 text_journal_set_to: "שונה ל {{value}}"
487 566 text_journal_deleted: נמחק
488 567 text_tip_task_begin_day: מטלה המתחילה היום
489 568 text_tip_task_end_day: מטלה המסתיימת היום
490 569 text_tip_task_begin_end_day: מטלה המתחילה ומסתיימת היום
491 570 text_project_identifier_info: 'אותיות לטיניות (a-z), מספרים ומקפים.<br />ברגע שנשמר, לא ניתן לשנות את המזהה.'
492 text_caracters_maximum: מקסימום %d תווים.
493 text_length_between: אורך בין %d ל %d תווים.
571 text_caracters_maximum: "מקסימום {{count}} תווים."
572 text_length_between: "אורך בין {{min}} ל {{max}} תווים."
494 573 text_tracker_no_workflow: זרימת עבודה לא הוגדרה עבור עוקב זה
495 574 text_unallowed_characters: תווים לא מורשים
496 575 text_comma_separated: הכנסת ערכים מרובים מותרת (מופרדים בפסיקים).
497 576 text_issues_ref_in_commit_messages: קישור ותיקום נושאים בהודעות הפקדות
498 text_issue_added: הנושא %s דווח (by %s).
499 text_issue_updated: הנושא %s עודכן (by %s).
577 text_issue_added: "הנושא {{id}} דווח (by {{author}})."
578 text_issue_updated: "הנושא {{id}} עודכן (by {{author}})."
500 579 text_wiki_destroy_confirmation: האם אתה בטוח שברצונך למחוק את הWIKI הזה ואת כל תוכנו?
501 text_issue_category_destroy_question: כמה נושאים (%d) מוצבים לקטגוריה הזו. מה ברצונך לעשות?
580 text_issue_category_destroy_question: "כמה נושאים ({{count}}) מוצבים לקטגוריה הזו. מה ברצונך לעשות?"
502 581 text_issue_category_destroy_assignments: הסר הצבת קטגוריה
503 582 text_issue_category_reassign_to: הצב מחדש את הקטגוריה לנושאים
504 583
@@ -537,37 +616,37 label_user_mail_option_none: "רק לנושאים שאני צופה או קשו
537 616 setting_emails_footer: תחתית דוא"ל
538 617 label_float: צף
539 618 button_copy: העתק
540 mail_body_account_information_external: אתה יכול להשתמש בחשבון "%s" כדי להתחבר
619 mail_body_account_information_external: "אתה יכול להשתמש בחשבון {{value}} כדי להתחבר"
541 620 mail_body_account_information: פרטי החשבון שלך
542 621 setting_protocol: פרוטוקול
543 622 label_user_mail_no_self_notified: "אני לא רוצה שיודיעו לי על שינויים שאני מבצע"
544 623 setting_time_format: פורמט זמן
545 624 label_registration_activation_by_email: הפעל חשבון באמצעות דוא"ל
546 mail_subject_account_activation_request: בקשת הפעלה לחשבון %s
547 mail_body_account_activation_request: 'משתמש חדש (%s) נרשם. החשבון שלו מחכה לאישור שלך:'
625 mail_subject_account_activation_request: "בקשת הפעלה לחשבון {{value}}"
626 mail_body_account_activation_request: "משתמש חדש ({{value}}) נרשם. החשבון שלו מחכה לאישור שלך:'"
548 627 label_registration_automatic_activation: הפעלת חשבון אוטומטית
549 628 label_registration_manual_activation: הפעלת חשבון ידנית
550 629 notice_account_pending: "החשבון שלך נוצר ועתה מחכה לאישור מנהל המערכת."
551 630 field_time_zone: איזור זמן
552 text_caracters_minimum: חייב להיות לפחות באורך של %d תווים.
631 text_caracters_minimum: "חייב להיות לפחות באורך של {{count}} תווים."
553 632 setting_bcc_recipients: מוסתר (bcc)
554 633 button_annotate: הוסף תיאור מסגרת
555 label_issues_by: נושאים של %s
634 label_issues_by: "נושאים של {{value}}"
556 635 field_searchable: ניתן לחיפוש
557 label_display_per_page: 'לכל דף: %s'
636 label_display_per_page: "לכל דף: {{value}}'"
558 637 setting_per_page_options: אפשרויות אוביקטים לפי דף
559 638 label_age: גיל
560 639 notice_default_data_loaded: אפשרויות ברירת מחדל מופעלות.
561 640 text_load_default_configuration: טען את אפשרויות ברירת המחדל
562 641 text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. יהיה באפשרותך לשנותו לאחר שיטען."
563 error_can_t_load_default_data: "אפשרויות ברירת המחדל לא הצליחו להיטען: %s"
642 error_can_t_load_default_data: "אפשרויות ברירת המחדל לא הצליחו להיטען: {{value}}"
564 643 button_update: עדכן
565 644 label_change_properties: שנה מאפיינים
566 645 label_general: כללי
567 646 label_repository_plural: מאגרים
568 647 label_associated_revisions: שינויים קשורים
569 648 setting_user_format: פורמט הצגת משתמשים
570 text_status_changed_by_changeset: הוחל בסדרת השינויים %s.
649 text_status_changed_by_changeset: "הוחל בסדרת השינויים {{value}}."
571 650 label_more: עוד
572 651 text_issues_destroy_confirmation: 'האם את\ה בטוח שברצונך למחוק את הנושא\ים ?'
573 652 label_scm: SCM
@@ -594,7 +673,7 label_plugins: פלאגינים
594 673 label_ldap_authentication: אימות LDAP
595 674 label_downloads_abbr: D/L
596 675 label_this_month: החודש
597 label_last_n_days: ב-%d ימים אחרונים
676 label_last_n_days: "ב-{{count}} ימים אחרונים"
598 677 label_all_time: תמיד
599 678 label_this_year: השנה
600 679 label_date_range: טווח תאריכים
@@ -618,15 +697,15 label_overall_activity: פעילות כוללת
618 697 setting_default_projects_public: פרויקטים חדשים הינם פומביים כברירת מחדל
619 698 error_scm_annotate: "הכניסה לא קיימת או שלא ניתן לתאר אותה."
620 699 label_planning: תכנון
621 text_subprojects_destroy_warning: 'תת הפרויקט\ים: %s ימחקו גם כן.'
622 label_and_its_subprojects: %s וכל תת הפרויקטים שלו
623 mail_body_reminder: "%d נושאים שמיועדים אליך מיועדים להגשה בתוך %d ימים:"
624 mail_subject_reminder: "%d נושאים מיעדים להגשה בימים הקרובים"
625 text_user_wrote: '%s כתב:'
700 text_subprojects_destroy_warning: "תת הפרויקט\ים: {{value}} ימחקו גם כן.'"
701 label_and_its_subprojects: "{{value}} וכל תת הפרויקטים שלו"
702 mail_body_reminder: "{{count}} נושאים שמיועדים אליך מיועדים להגשה בתוך {{days}} ימים:"
703 mail_subject_reminder: "{{count}} נושאים מיעדים להגשה בימים הקרובים"
704 text_user_wrote: "{{value}} כתב:'"
626 705 label_duplicated_by: שוכפל ע"י
627 706 setting_enabled_scm: אפשר SCM
628 707 text_enumeration_category_reassign_to: 'הצב מחדש לערך הזה:'
629 text_enumeration_destroy_question: '%d אוביקטים מוצבים לערך זה.'
708 text_enumeration_destroy_question: "{{count}} אוביקטים מוצבים לערך זה.'"
630 709 label_incoming_emails: דוא"ל נכנס
631 710 label_generate_key: יצר מפתח
632 711 setting_mail_handler_api_enabled: Enable WS for incoming emails
@@ -692,18 +771,14 label_example: דוגמא
692 771 text_repository_usernames_mapping: "Select ou update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped."
693 772 permission_edit_own_messages: ערוך הודעות של עצמך
694 773 permission_delete_own_messages: מחק הודעות של עצמך
695 label_user_activity: "הפעילות של %s"
696 label_updated_time_by: עודכן ע"י %s לפני %s
774 label_user_activity: "הפעילות של {{value}}"
775 label_updated_time_by: "עודכן ע'י {{author}} לפני {{age}}"
697 776 setting_diff_max_lines_displayed: Max number of diff lines displayed
698 777 text_plugin_assets_writable: Plugin assets directory writable
699 778 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
700 warning_attachments_not_saved: "%d file(s) could not be saved."
779 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
701 780 button_create_and_continue: Create and continue
702 781 text_custom_field_possible_values_info: 'One line for each value'
703 782 label_display: Display
704 783 field_editable: Editable
705 784 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
@@ -1,47 +1,136
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Hungarian translations for Ruby on Rails
2 # by Richard Abonyi (richard.abonyi@gmail.com)
3 # thanks to KKata, replaced and #hup.hu
4 # Cleaned up by László Bácsi (http://lackac.hu)
5 # updated by kfl62 kfl62g@gmail.com
2 6
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Január,Február,Március,Április,Május,Június,Július,Augusztus,Szeptember,Október,November,December
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Már,Ápr,Máj,Jún,Júl,Aug,Szept,Okt,Nov,Dec
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 nap
9 actionview_datehelper_time_in_words_day_plural: %d nap
10 actionview_datehelper_time_in_words_hour_about: kb. 1 óra
11 actionview_datehelper_time_in_words_hour_about_plural: kb. %d óra
12 actionview_datehelper_time_in_words_hour_about_single: kb. 1 óra
13 actionview_datehelper_time_in_words_minute: 1 perc
14 actionview_datehelper_time_in_words_minute_half: fél perc
15 actionview_datehelper_time_in_words_minute_less_than: kevesebb, mint 1 perc
16 actionview_datehelper_time_in_words_minute_plural: %d perc
17 actionview_datehelper_time_in_words_minute_single: 1 perc
18 actionview_datehelper_time_in_words_second_less_than: kevesebb, mint 1 másodperc
19 actionview_datehelper_time_in_words_second_less_than_plural: kevesebb, mint %d másodperc
20 actionview_instancetag_blank_option: Kérem válasszon
7 "hu":
8 date:
9 formats:
10 default: "%Y.%m.%d."
11 short: "%b %e."
12 long: "%Y. %B %e."
13 day_names: [vasárnap, hétfő, kedd, szerda, csütörtök, péntek, szombat]
14 abbr_day_names: [v., h., k., sze., cs., p., szo.]
15 month_names: [~, január, február, március, április, május, június, július, augusztus, szeptember, október, november, december]
16 abbr_month_names: [~, jan., febr., márc., ápr., máj., jún., júl., aug., szept., okt., nov., dec.]
17 order: [ :year, :month, :day ]
18
19 time:
20 formats:
21 default: "%Y. %b %e., %H:%M"
22 short: "%b %e., %H:%M"
23 long: "%Y. %B %e., %A, %H:%M"
24 am: "de."
25 pm: "du."
26
27 datetime:
28 distance_in_words:
29 half_a_minute: 'fél perc'
30 less_than_x_seconds:
31 # zero: 'kevesebb, mint 1 másodperc'
32 one: 'kevesebb, mint 1 másodperc'
33 other: 'kevesebb, mint {{count}} másodperc'
34 x_seconds:
35 one: '1 másodperc'
36 other: '{{count}} másodperc'
37 less_than_x_minutes:
38 # zero: 'kevesebb, mint 1 perc'
39 one: 'kevesebb, mint 1 perc'
40 other: 'kevesebb, mint {{count}} perc'
41 x_minutes:
42 one: '1 perc'
43 other: '{{count}} perc'
44 about_x_hours:
45 one: 'majdnem 1 óra'
46 other: 'majdnem {{count}} óra'
47 x_days:
48 one: '1 nap'
49 other: '{{count}} nap'
50 about_x_months:
51 one: 'majdnem 1 hónap'
52 other: 'majdnem {{count}} hónap'
53 x_months:
54 one: '1 hónap'
55 other: '{{count}} hónap'
56 about_x_years:
57 one: 'majdnem 1 év'
58 other: 'majdnem {{count}} év'
59 over_x_years:
60 one: 'több, mint 1 év'
61 other: 'több, mint {{count}} év'
62 prompts:
63 year: "Év"
64 month: "Hónap"
65 day: "Nap"
66 hour: "Óra"
67 minute: "Perc"
68 second: "Másodperc"
21 69
22 activerecord_error_inclusion: nem található a listában
23 activerecord_error_exclusion: foglalt
24 activerecord_error_invalid: érvénytelen
25 activerecord_error_confirmation: jóváhagyás szükséges
26 activerecord_error_accepted: ell kell fogadni
27 activerecord_error_empty: nem lehet üres
28 activerecord_error_blank: nem lehet üres
29 activerecord_error_too_long: túl hosszú
30 activerecord_error_too_short: túl rövid
31 activerecord_error_wrong_length: hibás a hossza
32 activerecord_error_taken: már foglalt
33 activerecord_error_not_a_number: nem egy szám
34 activerecord_error_not_a_date: nem érvényes dátum
35 activerecord_error_greater_than_start_date: nagyobbnak kell lennie, mint az indítás dátuma
36 activerecord_error_not_same_project: nem azonos projekthez tartozik
37 activerecord_error_circular_dependency: Ez a kapcsolat egy körkörös függőséget eredményez
70 number:
71 format:
72 precision: 2
73 separator: ','
74 delimiter: ' '
75 currency:
76 format:
77 unit: 'Ft'
78 precision: 0
79 format: '%n %u'
80 separator: ""
81 delimiter: ""
82 percentage:
83 format:
84 delimiter: ""
85 precision:
86 format:
87 delimiter: ""
88 human:
89 format:
90 delimiter: ""
91 precision: 1
92 storage_units: [bájt, KB, MB, GB, TB]
93
94 support:
95 array:
96 # sentence_connector: "és"
97 # skip_last_comma: true
98 words_connector: ", "
99 two_words_connector: " és "
100 last_word_connector: " és "
101 activerecord:
102 errors:
103 template:
104 header:
105 one: "1 hiba miatt nem menthető a következő: {{model}}"
106 other: "{{count}} hiba miatt nem menthető a következő: {{model}}"
107 body: "Problémás mezők:"
108 messages:
109 inclusion: "nincs a listában"
110 exclusion: "nem elérhető"
111 invalid: "nem megfelelő"
112 confirmation: "nem egyezik"
113 accepted: "nincs elfogadva"
114 empty: "nincs megadva"
115 blank: "nincs megadva"
116 too_long: "túl hosszú (nem lehet több {{count}} karakternél)"
117 too_short: "túl rövid (legalább {{count}} karakter kell legyen)"
118 wrong_length: "nem megfelelő hosszúságú ({{count}} karakter szükséges)"
119 taken: "már foglalt"
120 not_a_number: "nem szám"
121 greater_than: "nagyobb kell legyen, mint {{count}}"
122 greater_than_or_equal_to: "legalább {{count}} kell legyen"
123 equal_to: "pontosan {{count}} kell legyen"
124 less_than: "kevesebb, mint {{count}} kell legyen"
125 less_than_or_equal_to: "legfeljebb {{count}} lehet"
126 odd: "páratlan kell legyen"
127 even: "páros kell legyen"
128 greater_than_start_date: "nagyobbnak kell lennie, mint az indítás dátuma"
129 not_same_project: "nem azonos projekthez tartozik"
130 circular_dependency: "Ez a kapcsolat egy körkörös függőséget eredményez"
131
132 actionview_instancetag_blank_option: Kérem válasszon
38 133
39 general_fmt_age: %d év
40 general_fmt_age_plural: %d év
41 general_fmt_date: %%Y.%%m.%%d
42 general_fmt_datetime: %%Y.%%m.%%d %%H:%%M:%%S
43 general_fmt_datetime_short: %%b %%d, %%H:%%M:%%S
44 general_fmt_time: %%H:%%M:%%S
45 134 general_text_No: 'Nem'
46 135 general_text_Yes: 'Igen'
47 136 general_text_no: 'nem'
@@ -51,7 +140,6 general_csv_separator: ','
51 140 general_csv_decimal_separator: '.'
52 141 general_csv_encoding: ISO-8859-2
53 142 general_pdf_encoding: ISO-8859-2
54 general_day_names: Hétfő,Kedd,Szerda,Csütörtök,Péntek,Szombat,Vasárnap
55 143 general_first_day_of_week: '1'
56 144
57 145 notice_account_updated: A fiók adatai sikeresen frissítve.
@@ -70,17 +158,17 notice_successful_connection: Sikeres bejelentkezés.
70 158 notice_file_not_found: Az oldal, amit meg szeretne nézni nem található, vagy átkerült egy másik helyre.
71 159 notice_locking_conflict: Az adatot egy másik felhasználó idő közben módosította.
72 160 notice_not_authorized: Nincs hozzáférési engedélye ehhez az oldalhoz.
73 notice_email_sent: Egy e-mail üzenetet küldtünk a következő címre %s
74 notice_email_error: Hiba történt a levél küldése közben (%s)
161 notice_email_sent: "Egy e-mail üzenetet küldtünk a következő címre {{value}}"
162 notice_email_error: "Hiba történt a levél küldése közben ({{value}})"
75 163 notice_feeds_access_key_reseted: Az RSS hozzáférési kulcsát újra generáltuk.
76 notice_failed_to_save_issues: "Nem sikerült a %d feladat(ok) mentése a %d -ban kiválasztva: %s."
164 notice_failed_to_save_issues: "Nem sikerült a {{count}} feladat(ok) mentése a {{total}} -ban kiválasztva: {{ids}}."
77 165 notice_no_issue_selected: "Nincs feladat kiválasztva! Kérem jelölje meg melyik feladatot szeretné szerkeszteni!"
78 166 notice_account_pending: "A fiókja létrejött, és adminisztrátori jóváhagyásra vár."
79 167 notice_default_data_loaded: Az alapértelmezett konfiguráció betöltése sikeresen megtörtént.
80 168
81 error_can_t_load_default_data: "Az alapértelmezett konfiguráció betöltése nem lehetséges: %s"
169 error_can_t_load_default_data: "Az alapértelmezett konfiguráció betöltése nem lehetséges: {{value}}"
82 170 error_scm_not_found: "A bejegyzés, vagy revízió nem található a tárolóban."
83 error_scm_command_failed: "A tároló elérése közben hiba lépett fel: %s"
171 error_scm_command_failed: "A tároló elérése közben hiba lépett fel: {{value}}"
84 172 error_scm_annotate: "A bejegyzés nem létezik, vagy nics jegyzetekkel ellátva."
85 173 error_issue_not_found_in_project: 'A feladat nem található, vagy nem ehhez a projekthez tartozik'
86 174
@@ -88,13 +176,13 mail_subject_lost_password: Az Ön Redmine jelszava
88 176 mail_body_lost_password: 'A Redmine jelszó megváltoztatásához, kattintson a következő linkre:'
89 177 mail_subject_register: Redmine azonosító aktiválása
90 178 mail_body_register: 'A Redmine azonosítója aktiválásához, kattintson a következő linkre:'
91 mail_body_account_information_external: A "%s" azonosító használatával bejelentkezhet a Redmineba.
179 mail_body_account_information_external: "A {{value}} azonosító használatával bejelentkezhet a Redmineba."
92 180 mail_body_account_information: Az Ön Redmine azonosítójának információi
93 181 mail_subject_account_activation_request: Redmine azonosító aktiválási kérelem
94 mail_body_account_activation_request: 'Egy új felhasználó (%s) regisztrált, azonosítója jóváhasgyásra várakozik:'
182 mail_body_account_activation_request: "Egy új felhasználó ({{value}}) regisztrált, azonosítója jóváhasgyásra várakozik:'"
95 183
96 184 gui_validation_error: 1 hiba
97 gui_validation_error_plural: %d hiba
185 gui_validation_error_plural: "{{count}} hiba"
98 186
99 187 field_name: Név
100 188 field_description: Leírás
@@ -228,13 +316,17 label_user_new: Új felhasználó
228 316 label_project: Projekt
229 317 label_project_new: Új projekt
230 318 label_project_plural: Projektek
319 label_x_projects:
320 zero: no projects
321 one: 1 project
322 other: "{{count}} projects"
231 323 label_project_all: Az összes projekt
232 324 label_project_latest: Legutóbbi projektek
233 325 label_issue: Feladat
234 326 label_issue_new: Új feladat
235 327 label_issue_plural: Feladatok
236 328 label_issue_view_all: Minden feladat megtekintése
237 label_issues_by: %s feladatai
329 label_issues_by: "{{value}} feladatai"
238 330 label_issue_added: Feladat hozzáadva
239 331 label_issue_updated: Feladat frissítve
240 332 label_document: Dokumentum
@@ -279,8 +371,6 label_help: Súgó
279 371 label_reported_issues: Bejelentett feladatok
280 372 label_assigned_to_me_issues: A nekem kiosztott feladatok
281 373 label_last_login: Utolsó bejelentkezés
282 label_last_updates: Utoljára frissítve
283 label_last_updates_plural: Utoljára módosítva %d
284 374 label_registered_on: Regisztrált
285 375 label_activity: Tevékenységek
286 376 label_overall_activity: Teljes aktivitás
@@ -292,7 +382,7 label_auth_source: Azonosítás módja
292 382 label_auth_source_new: Új azonosítási mód
293 383 label_auth_source_plural: Azonosítási módok
294 384 label_subproject_plural: Alprojektek
295 label_and_its_subprojects: %s és alprojektjei
385 label_and_its_subprojects: "{{value}} és alprojektjei"
296 386 label_min_max_length: Min - Max hossz
297 387 label_list: Lista
298 388 label_date: Dátum
@@ -303,8 +393,8 label_string: Szöveg
303 393 label_text: Hosszú szöveg
304 394 label_attribute: Tulajdonság
305 395 label_attribute_plural: Tulajdonságok
306 label_download: %d Letöltés
307 label_download_plural: %d Letöltések
396 label_download: "{{count}} Letöltés"
397 label_download_plural: "{{count}} Letöltések"
308 398 label_no_data: Nincs megjeleníthető adat
309 399 label_change_status: Státusz módosítása
310 400 label_history: Történet
@@ -335,6 +425,18 label_open_issues: nyitott
335 425 label_open_issues_plural: nyitott
336 426 label_closed_issues: lezárt
337 427 label_closed_issues_plural: lezárt
428 label_x_open_issues_abbr_on_total:
429 zero: 0 open / {{total}}
430 one: 1 open / {{total}}
431 other: "{{count}} open / {{total}}"
432 label_x_open_issues_abbr:
433 zero: 0 open
434 one: 1 open
435 other: "{{count}} open"
436 label_x_closed_issues_abbr:
437 zero: 0 closed
438 one: 1 closed
439 other: "{{count}} closed"
338 440 label_total: Összesen
339 441 label_permissions: Jogosultságok
340 442 label_current_status: Jelenlegi státusz
@@ -352,11 +454,15 label_calendar: Naptár
352 454 label_months_from: hónap, kezdve
353 455 label_gantt: Gantt
354 456 label_internal: Belső
355 label_last_changes: utolsó %d változás
457 label_last_changes: "utolsó {{count}} változás"
356 458 label_change_view_all: Minden változás megtekintése
357 459 label_personalize_page: Az oldal testreszabása
358 460 label_comment: Megjegyzés
359 461 label_comment_plural: Megjegyzés
462 label_x_comments:
463 zero: no comments
464 one: 1 comment
465 other: "{{count}} comments"
360 466 label_comment_add: Megjegyzés hozzáadása
361 467 label_comment_added: Megjegyzés hozzáadva
362 468 label_comment_delete: Megjegyzések törlése
@@ -375,7 +481,7 label_all_time: mindenkor
375 481 label_yesterday: tegnap
376 482 label_this_week: aktuális hét
377 483 label_last_week: múlt hét
378 label_last_n_days: az elmúlt %d nap
484 label_last_n_days: "az elmúlt {{count}} nap"
379 485 label_this_month: aktuális hónap
380 486 label_last_month: múlt hónap
381 487 label_this_year: aktuális év
@@ -389,8 +495,8 label_day_plural: nap
389 495 label_repository: Tároló
390 496 label_repository_plural: Tárolók
391 497 label_browse: Tallóz
392 label_modification: %d változás
393 label_modification_plural: %d változások
498 label_modification: "{{count}} változás"
499 label_modification_plural: "{{count}} változások"
394 500 label_revision: Revízió
395 501 label_revision_plural: Revíziók
396 502 label_associated_revisions: Kapcsolt revíziók
@@ -401,14 +507,13 label_latest_revision: Legutolsó revízió
401 507 label_latest_revision_plural: Legutolsó revíziók
402 508 label_view_revisions: Revíziók megtekintése
403 509 label_max_size: Maximális méret
404 label_on: 'összesen'
405 510 label_sort_highest: Az elejére
406 511 label_sort_higher: Eggyel feljebb
407 512 label_sort_lower: Eggyel lejjebb
408 513 label_sort_lowest: Az aljára
409 514 label_roadmap: Életút
410 label_roadmap_due_in: Elkészültéig várhatóan még %s
411 label_roadmap_overdue: %s késésben
515 label_roadmap_due_in: "Elkészültéig várhatóan még {{value}}"
516 label_roadmap_overdue: "{{value}} késésben"
412 517 label_roadmap_no_issues: Nincsenek feladatok ehhez a verzióhoz
413 518 label_search: Keresés
414 519 label_result_plural: Találatok
@@ -426,8 +531,8 label_feed_plural: Visszajelzések
426 531 label_changes_details: Változások részletei
427 532 label_issue_tracking: Feladat követés
428 533 label_spent_time: Ráfordított idő
429 label_f_hour: %.2f óra
430 label_f_hour_plural: %.2f óra
534 label_f_hour: "{{value}} óra"
535 label_f_hour_plural: "{{value}} óra"
431 536 label_time_tracking: Idő követés
432 537 label_change_plural: Változások
433 538 label_statistics: Statisztikák
@@ -475,12 +580,12 label_week: Hét
475 580 label_date_from: 'Kezdet:'
476 581 label_date_to: 'Vége:'
477 582 label_language_based: A felhasználó nyelve alapján
478 label_sort_by: %s szerint rendezve
583 label_sort_by: "{{value}} szerint rendezve"
479 584 label_send_test_email: Teszt e-mail küldése
480 label_feeds_access_key_created_on: 'RSS hozzáférési kulcs létrehozva ennyivel ezelőtt: %s'
585 label_feeds_access_key_created_on: "RSS hozzáférési kulcs létrehozva ennyivel ezelőtt: {{value}}'"
481 586 label_module_plural: Modulok
482 label_added_time_by: '%s adta hozzá ennyivel ezelőtt: %s'
483 label_updated_time: 'Utolsó módosítás ennyivel ezelőtt: %s'
587 label_added_time_by: "'{{author}} adta hozzá ennyivel ezelőtt: {{age}}'"
588 label_updated_time: "Utolsó módosítás ennyivel ezelőtt: {{value}}'"
484 589 label_jump_to_a_project: Ugrás projekthez...
485 590 label_file_plural: Fájlok
486 591 label_changeset_plural: Changesets
@@ -497,7 +602,7 label_user_mail_no_self_notified: "Nem kérek értesítést az általam végzett
497 602 label_registration_activation_by_email: Fiók aktiválása e-mailben
498 603 label_registration_manual_activation: Manuális fiók aktiválás
499 604 label_registration_automatic_activation: Automatikus fiók aktiválás
500 label_display_per_page: 'Oldalanként: %s'
605 label_display_per_page: "Oldalanként: {{value}}'"
501 606 label_age: Kor
502 607 label_change_properties: Tulajdonságok változtatása
503 608 label_general: Általános
@@ -559,33 +664,33 text_select_mail_notifications: Válasszon eseményeket, amelyekről e-mail ért
559 664 text_regexp_info: eg. ^[A-Z0-9]+$
560 665 text_min_max_length_info: 0 = nincs korlátozás
561 666 text_project_destroy_confirmation: Biztosan törölni szeretné a projektet és vele együtt minden kapcsolódó adatot ?
562 text_subprojects_destroy_warning: 'Az alprojekt(ek): %s szintén törlésre kerülnek.'
667 text_subprojects_destroy_warning: "Az alprojekt(ek): {{value}} szintén törlésre kerülnek.'"
563 668 text_workflow_edit: Válasszon egy szerepkört, és egy trackert a workflow szerkesztéséhez
564 669 text_are_you_sure: Biztos benne ?
565 text_journal_changed: "változás: %s volt, %s lett"
566 text_journal_set_to: "beállítva: %s"
670 text_journal_changed: "változás: {{old}} volt, {{new}} lett"
671 text_journal_set_to: "beállítva: {{value}}"
567 672 text_journal_deleted: törölve
568 673 text_tip_task_begin_day: a feladat ezen a napon kezdődik
569 674 text_tip_task_end_day: a feladat ezen a napon ér véget
570 675 text_tip_task_begin_end_day: a feladat ezen a napon kezdődik és ér véget
571 676 text_project_identifier_info: 'Kis betűk (a-z), számok és kötőjel megengedett.<br />Mentés után az azonosítót megváltoztatni nem lehet.'
572 text_caracters_maximum: maximum %d karakter.
573 text_caracters_minimum: Legkevesebb %d karakter hosszúnek kell lennie.
574 text_length_between: Legalább %d és legfeljebb %d hosszú karakter.
677 text_caracters_maximum: "maximum {{count}} karakter."
678 text_caracters_minimum: "Legkevesebb {{count}} karakter hosszúnek kell lennie."
679 text_length_between: "Legalább {{min}} és legfeljebb {{max}} hosszú karakter."
575 680 text_tracker_no_workflow: Nincs workflow definiálva ehhez a tracker-hez
576 681 text_unallowed_characters: Tiltott karakterek
577 682 text_comma_separated: Több érték megengedett (vesszővel elválasztva)
578 683 text_issues_ref_in_commit_messages: Hivatkozás feladatokra, feladatok javítása a commit üzenetekben
579 text_issue_added: %s feladat bejelentve.
580 text_issue_updated: %s feladat frissítve.
684 text_issue_added: "Issue {{id}} has been reported by {{author}}."
685 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
581 686 text_wiki_destroy_confirmation: Biztosan törölni szeretné ezt a wiki-t minden tartalmával együtt ?
582 text_issue_category_destroy_question: Néhány feladat (%d) hozzá van rendelve ehhez a kategóriához. Mit szeretne tenni ?
687 text_issue_category_destroy_question: "Néhány feladat ({{count}}) hozzá van rendelve ehhez a kategóriához. Mit szeretne tenni ?"
583 688 text_issue_category_destroy_assignments: Kategória hozzárendelés megszűntetése
584 689 text_issue_category_reassign_to: Feladatok újra hozzárendelése a kategóriához
585 690 text_user_mail_option: "A nem kiválasztott projektekről csak akkor kap értesítést, ha figyelést kér rá, vagy részt vesz benne (pl. Ön a létrehozó, vagy a hozzárendelő)"
586 691 text_no_configuration_data: "Szerepkörök, trackerek, feladat státuszok, és workflow adatok még nincsenek konfigurálva.\nErősen ajánlott, az alapértelmezett konfiguráció betöltése, és utána módosíthatja azt."
587 692 text_load_default_configuration: Alapértelmezett konfiguráció betöltése
588 text_status_changed_by_changeset: Applied in changeset %s.
693 text_status_changed_by_changeset: "Applied in changeset {{value}}."
589 694 text_issues_destroy_confirmation: 'Biztos benne, hogy törölni szeretné a kijelölt feladato(ka)t ?'
590 695 text_select_project_modules: 'Válassza ki az engedélyezett modulokat ehhez a projekthez:'
591 696 text_default_administrator_account_changed: Alapértelmezett adminisztrátor fiók megváltoztatva
@@ -621,13 +726,13 default_activity_development: Fejlesztés
621 726 enumeration_issue_priorities: Feladat prioritások
622 727 enumeration_doc_categories: Dokumentum kategóriák
623 728 enumeration_activities: Tevékenységek (idő rögzítés)
624 mail_body_reminder: "%d neked kiosztott feladat határidős az elkövetkező %d napban:"
625 mail_subject_reminder: "%d feladat határidős az elkövetkező napokban"
626 text_user_wrote: '%s írta:'
729 mail_body_reminder: "{{count}} neked kiosztott feladat határidős az elkövetkező {{days}} napban:"
730 mail_subject_reminder: "{{count}} feladat határidős az elkövetkező napokban"
731 text_user_wrote: "{{value}} írta:'"
627 732 label_duplicated_by: duplikálta
628 733 setting_enabled_scm: Forráskódkezelő (SCM) engedélyezése
629 734 text_enumeration_category_reassign_to: 'Újra hozzárendelés ehhez:'
630 text_enumeration_destroy_question: '%d objektum van hozzárendelve ehhez az értékhez.'
735 text_enumeration_destroy_question: "{{count}} objektum van hozzárendelve ehhez az értékhez.'"
631 736 label_incoming_emails: Beérkezett levelek
632 737 label_generate_key: Kulcs generálása
633 738 setting_mail_handler_api_enabled: Web Service engedélyezése a beérkezett levelekhez
@@ -693,18 +798,14 label_example: Példa
693 798 text_repository_usernames_mapping: "Állítsd be a felhasználó összerendeléseket a Redmine, és a tároló logban található felhasználók között.\nAz azonos felhasználó nevek összerendelése automatikusan megtörténik."
694 799 permission_edit_own_messages: Saját üzenetek szerkesztése
695 800 permission_delete_own_messages: Saját üzenetek törlése
696 label_user_activity: "%s tevékenységei"
697 label_updated_time_by: "Módosította %s ennyivel ezelőtt: %s"
801 label_user_activity: "{{value}} tevékenységei"
802 label_updated_time_by: "Módosította {{author}} ennyivel ezelőtt: {{age}}"
698 803 text_diff_truncated: '... A diff fájl vége nem jelenik meg, mert hosszab, mint a megjeleníthető sorok száma.'
699 804 setting_diff_max_lines_displayed: A megjelenítendő sorok száma (maximum) a diff fájloknál
700 805 text_plugin_assets_writable: Plugin eszközök könyvtár írható
701 warning_attachments_not_saved: "%d fájl mentése nem sikerült."
806 warning_attachments_not_saved: "{{count}} fájl mentése nem sikerült."
702 807 button_create_and_continue: Létrehozás és folytatás
703 808 text_custom_field_possible_values_info: 'Értékenként egy sor'
704 809 label_display: Megmutat
705 810 field_editable: Szerkeszthető
706 setting_repository_log_display_limit: Maximum hány revízió jelenjen meg a fájl logban
707 field_identity_url: OpenID URL
708 setting_openid: OpenID bejelentkezés és regisztráció engedélyezése
709 label_login_with_open_id_option: vagy bejelentkezés OpenID használatával
710 field_watcher: Megfigyelő
811 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
@@ -1,47 +1,113
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Italian translations for Ruby on Rails
2 # by Claudio Poli (masterkain@gmail.com)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre
5 actionview_datehelper_select_month_names_abbr: Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 giorno
9 actionview_datehelper_time_in_words_day_plural: %d giorni
10 actionview_datehelper_time_in_words_hour_about: circa un'ora
11 actionview_datehelper_time_in_words_hour_about_plural: circa %d ore
12 actionview_datehelper_time_in_words_hour_about_single: circa un'ora
13 actionview_datehelper_time_in_words_minute: 1 minuto
14 actionview_datehelper_time_in_words_minute_half: mezzo minuto
15 actionview_datehelper_time_in_words_minute_less_than: meno di un minuto
16 actionview_datehelper_time_in_words_minute_plural: %d minuti
17 actionview_datehelper_time_in_words_minute_single: 1 minuto
18 actionview_datehelper_time_in_words_second_less_than: meno di un secondo
19 actionview_datehelper_time_in_words_second_less_than_plural: meno di %d secondi
20 actionview_instancetag_blank_option: Scegli
4 it:
5 date:
6 formats:
7 default: "%d-%m-%Y"
8 short: "%d %b"
9 long: "%d %B %Y"
10 only_day: "%e"
11
12 day_names: [Domenica, Lunedì, Martedì, Mercoledì, Giovedì, Venerdì, Sabato]
13 abbr_day_names: [Dom, Lun, Mar, Mer, Gio, Ven, Sab]
14 month_names: [~, Gennaio, Febbraio, Marzo, Aprile, Maggio, Giugno, Luglio, Agosto, Settembre, Ottobre, Novembre, Dicembre]
15 abbr_month_names: [~, Gen, Feb, Mar, Apr, Mag, Giu, Lug, Ago, Set, Ott, Nov, Dic]
16 order: [ :day, :month, :year ]
17
18 time:
19 formats:
20 default: "%a %d %b %Y, %H:%M:%S %z"
21 time: "%H:%M"
22 short: "%d %b %H:%M"
23 long: "%d %B %Y %H:%M"
24 only_second: "%S"
25
26 datetime:
27 formats:
28 default: "%d-%m-%YT%H:%M:%S%Z"
29
30 am: 'am'
31 pm: 'pm'
21 32
22 activerecord_error_inclusion: non è incluso nella lista
23 activerecord_error_exclusion: è riservato
24 activerecord_error_invalid: non è valido
25 activerecord_error_confirmation: non coincide con la conferma
26 activerecord_error_accepted: deve essere accettato
27 activerecord_error_empty: non può essere vuoto
28 activerecord_error_blank: non può essere lasciato in bianco
29 activerecord_error_too_long: è troppo lungo/a
30 activerecord_error_too_short: è troppo corto/a
31 activerecord_error_wrong_length: è della lunghezza sbagliata
32 activerecord_error_taken: è già stato/a preso/a
33 activerecord_error_not_a_number: non è un numero
34 activerecord_error_not_a_date: non è una data valida
35 activerecord_error_greater_than_start_date: deve essere maggiore della data di partenza
36 activerecord_error_not_same_project: non appartiene allo stesso progetto
37 activerecord_error_circular_dependency: Questa relazione creerebbe una dipendenza circolare
33 datetime:
34 distance_in_words:
35 half_a_minute: "mezzo minuto"
36 less_than_x_seconds:
37 one: "meno di un secondo"
38 other: "meno di {{count}} secondi"
39 x_seconds:
40 one: "1 secondo"
41 other: "{{count}} secondi"
42 less_than_x_minutes:
43 one: "meno di un minuto"
44 other: "meno di {{count}} minuti"
45 x_minutes:
46 one: "1 minuto"
47 other: "{{count}} minuti"
48 about_x_hours:
49 one: "circa un'ora"
50 other: "circa {{count}} ore"
51 x_days:
52 one: "1 giorno"
53 other: "{{count}} giorni"
54 about_x_months:
55 one: "circa un mese"
56 other: "circa {{count}} mesi"
57 x_months:
58 one: "1 mese"
59 other: "{{count}} mesi"
60 about_x_years:
61 one: "circa un anno"
62 other: "circa {{count}} anni"
63 over_x_years:
64 one: "oltre un anno"
65 other: "oltre {{count}} anni"
66
67 number:
68 format:
69 precision: 3
70 separator: ','
71 delimiter: '.'
72 currency:
73 format:
74 unit: '€'
75 precision: 2
76 format: '%n %u'
77
78 activerecord:
79 errors:
80 template:
81 header:
82 one: "Non posso salvare questo {{model}}: 1 errore"
83 other: "Non posso salvare questo {{model}}: {{count}} errori."
84 body: "Per favore ricontrolla i seguenti campi:"
85 messages:
86 inclusion: "non è incluso nella lista"
87 exclusion: riservato"
88 invalid: "non è valido"
89 confirmation: "non coincide con la conferma"
90 accepted: "deve essere accettata"
91 empty: "non può essere vuoto"
92 blank: "non può essere lasciato in bianco"
93 too_long: troppo lungo (il massimo è {{count}} lettere)"
94 too_short: troppo corto (il minimo è {{count}} lettere)"
95 wrong_length: della lunghezza sbagliata (deve essere di {{count}} lettere)"
96 taken: già in uso"
97 not_a_number: "non è un numero"
98 greater_than: "deve essere superiore a {{count}}"
99 greater_than_or_equal_to: "deve essere superiore o uguale a {{count}}"
100 equal_to: "deve essere uguale a {{count}}"
101 less_than: "deve essere meno di {{count}}"
102 less_than_or_equal_to: "deve essere meno o uguale a {{count}}"
103 odd: "deve essere dispari"
104 even: "deve essere pari"
105 greater_than_start_date: "deve essere maggiore della data di partenza"
106 not_same_project: "non appartiene allo stesso progetto"
107 circular_dependency: "Questa relazione creerebbe una dipendenza circolare"
108
109 actionview_instancetag_blank_option: Scegli
38 110
39 general_fmt_age: %d anno
40 general_fmt_age_plural: %d anni
41 general_fmt_date: %%d/%%m/%%Y
42 general_fmt_datetime: %%d/%%m/%%Y %%I:%%M %%p
43 general_fmt_datetime_short: %%b %%d, %%I:%%M %%p
44 general_fmt_time: %%I:%%M %%p
45 111 general_text_No: 'No'
46 112 general_text_Yes: 'Si'
47 113 general_text_no: 'no'
@@ -51,7 +117,6 general_csv_separator: ','
51 117 general_csv_decimal_separator: '.'
52 118 general_csv_encoding: ISO-8859-1
53 119 general_pdf_encoding: ISO-8859-1
54 general_day_names: Lunedì,Martedì,Mercoledì,Giovedì,Venerdì,Sabato,Domenica
55 120 general_first_day_of_week: '1'
56 121
57 122 notice_account_updated: L'utenza è stata aggiornata.
@@ -70,20 +135,20 notice_successful_connection: Connessione effettuata.
70 135 notice_file_not_found: La pagina desiderata non esiste o è stata rimossa.
71 136 notice_locking_conflict: Le informazioni sono state modificate da un altro utente.
72 137 notice_not_authorized: Non sei autorizzato ad accedere a questa pagina.
73 notice_email_sent: Una e-mail è stata spedita a %s
74 notice_email_error: Si è verificato un errore durante l'invio di una e-mail (%s)
138 notice_email_sent: "Una e-mail è stata spedita a {{value}}"
139 notice_email_error: "Si è verificato un errore durante l'invio di una e-mail ({{value}})"
75 140 notice_feeds_access_key_reseted: La tua chiave di accesso RSS è stata reimpostata.
76 141
77 142 error_scm_not_found: "La risorsa e/o la versione non esistono nel repository."
78 error_scm_command_failed: "Si è verificato un errore durante l'accesso al repository: %s"
143 error_scm_command_failed: "Si è verificato un errore durante l'accesso al repository: {{value}}"
79 144
80 mail_subject_lost_password: Password %s
145 mail_subject_lost_password: "Password {{value}}"
81 146 mail_body_lost_password: 'Per cambiare la password, usate il seguente collegamento:'
82 mail_subject_register: Attivazione utenza %s
147 mail_subject_register: "Attivazione utenza {{value}}"
83 148 mail_body_register: 'Per attivare la vostra utenza, usate il seguente collegamento:'
84 149
85 150 gui_validation_error: 1 errore
86 gui_validation_error_plural: %d errori
151 gui_validation_error_plural: "{{count}} errori"
87 152
88 153 field_name: Nome
89 154 field_description: Descrizione
@@ -193,6 +258,10 label_user_new: Nuovo utente
193 258 label_project: Progetto
194 259 label_project_new: Nuovo progetto
195 260 label_project_plural: Progetti
261 label_x_projects:
262 zero: no projects
263 one: 1 project
264 other: "{{count}} projects"
196 265 label_project_all: Tutti i progetti
197 266 label_project_latest: Ultimi progetti registrati
198 267 label_issue: Segnalazione
@@ -240,8 +309,6 label_help: Aiuto
240 309 label_reported_issues: Segnalazioni
241 310 label_assigned_to_me_issues: Le mie segnalazioni
242 311 label_last_login: Ultimo collegamento
243 label_last_updates: Ultimo aggiornamento
244 label_last_updates_plural: %d ultimo aggiornamento
245 312 label_registered_on: Registrato il
246 313 label_activity: Attività
247 314 label_new: Nuovo
@@ -261,8 +328,8 label_string: Testo
261 328 label_text: Testo esteso
262 329 label_attribute: Attributo
263 330 label_attribute_plural: Attributi
264 label_download: %d Download
265 label_download_plural: %d Download
331 label_download: "{{count}} Download"
332 label_download_plural: "{{count}} Download"
266 333 label_no_data: Nessun dato disponibile
267 334 label_change_status: Cambia stato
268 335 label_history: Cronologia
@@ -291,6 +358,18 label_open_issues: aperta
291 358 label_open_issues_plural: aperte
292 359 label_closed_issues: chiusa
293 360 label_closed_issues_plural: chiuse
361 label_x_open_issues_abbr_on_total:
362 zero: 0 open / {{total}}
363 one: 1 open / {{total}}
364 other: "{{count}} open / {{total}}"
365 label_x_open_issues_abbr:
366 zero: 0 open
367 one: 1 open
368 other: "{{count}} open"
369 label_x_closed_issues_abbr:
370 zero: 0 closed
371 one: 1 closed
372 other: "{{count}} closed"
294 373 label_total: Totale
295 374 label_permissions: Permessi
296 375 label_current_status: Stato attuale
@@ -307,11 +386,15 label_calendar: Calendario
307 386 label_months_from: mesi da
308 387 label_gantt: Gantt
309 388 label_internal: Interno
310 label_last_changes: ultime %d modifiche
389 label_last_changes: "ultime {{count}} modifiche"
311 390 label_change_view_all: Tutte le modifiche
312 391 label_personalize_page: Personalizza la pagina
313 392 label_comment: Commento
314 393 label_comment_plural: Commenti
394 label_x_comments:
395 zero: no comments
396 one: 1 comment
397 other: "{{count}} comments"
315 398 label_comment_add: Aggiungi un commento
316 399 label_comment_added: Commento aggiunto
317 400 label_comment_delete: Elimina commenti
@@ -335,8 +418,8 label_not_contains: non contiene
335 418 label_day_plural: giorni
336 419 label_repository: Repository
337 420 label_browse: Sfoglia
338 label_modification: %d modifica
339 label_modification_plural: %d modifiche
421 label_modification: "{{count}} modifica"
422 label_modification_plural: "{{count}} modifiche"
340 423 label_revision: Versione
341 424 label_revision_plural: Versioni
342 425 label_added: aggiunto
@@ -346,14 +429,13 label_latest_revision: Ultima versione
346 429 label_latest_revision_plural: Ultime versioni
347 430 label_view_revisions: Mostra versioni
348 431 label_max_size: Dimensione massima
349 label_on: su
350 432 label_sort_highest: Sposta in cima
351 433 label_sort_higher: Su
352 434 label_sort_lower: Giù
353 435 label_sort_lowest: Sposta in fondo
354 436 label_roadmap: Roadmap
355 label_roadmap_due_in: Da ultimare in %s
356 label_roadmap_overdue: %s di ritardo
437 label_roadmap_due_in: "Da ultimare in {{value}}"
438 label_roadmap_overdue: "{{value}} di ritardo"
357 439 label_roadmap_no_issues: Nessuna segnalazione per questa versione
358 440 label_search: Ricerca
359 441 label_result_plural: Risultati
@@ -371,8 +453,8 label_feed_plural: Feed
371 453 label_changes_details: Particolari di tutti i cambiamenti
372 454 label_issue_tracking: Tracking delle segnalazioni
373 455 label_spent_time: Tempo impiegato
374 label_f_hour: %.2f ora
375 label_f_hour_plural: %.2f ore
456 label_f_hour: "{{value}} ora"
457 label_f_hour_plural: "{{value}} ore"
376 458 label_time_tracking: Tracking del tempo
377 459 label_change_plural: Modifiche
378 460 label_statistics: Statistiche
@@ -419,12 +501,12 label_week: Settimana
419 501 label_date_from: Da
420 502 label_date_to: A
421 503 label_language_based: Basato sul linguaggio
422 label_sort_by: Ordina per %s
504 label_sort_by: "Ordina per {{value}}"
423 505 label_send_test_email: Invia una e-mail di test
424 label_feeds_access_key_created_on: chiave di accesso RSS creata %s fa
506 label_feeds_access_key_created_on: "chiave di accesso RSS creata {{value}} fa"
425 507 label_module_plural: Moduli
426 label_added_time_by: Aggiunto da %s %s fa
427 label_updated_time: Aggiornato %s fa
508 label_added_time_by: "Aggiunto da {{author}} {{age}} fa"
509 label_updated_time: "Aggiornato {{value}} fa"
428 510 label_jump_to_a_project: Vai al progetto...
429 511
430 512 button_login: Login
@@ -470,23 +552,23 text_min_max_length_info: 0 significa nessuna restrizione
470 552 text_project_destroy_confirmation: Sei sicuro di voler cancellare il progetti e tutti i dati ad esso collegati?
471 553 text_workflow_edit: Seleziona un ruolo ed un tracker per modificare il workflow
472 554 text_are_you_sure: Sei sicuro ?
473 text_journal_changed: cambiato da %s a %s
474 text_journal_set_to: impostato a %s
555 text_journal_changed: "cambiato da {{old}} a {{new}}"
556 text_journal_set_to: "impostato a {{value}}"
475 557 text_journal_deleted: cancellato
476 558 text_tip_task_begin_day: attività che iniziano in questa giornata
477 559 text_tip_task_end_day: attività che terminano in questa giornata
478 560 text_tip_task_begin_end_day: attività che iniziano e terminano in questa giornata
479 561 text_project_identifier_info: "Lettere minuscole (a-z), numeri e trattini permessi.<br />Una volta salvato, l'identificativo non può essere modificato."
480 text_caracters_maximum: massimo %d caratteri.
481 text_length_between: Lunghezza compresa tra %d e %d caratteri.
562 text_caracters_maximum: "massimo {{count}} caratteri."
563 text_length_between: "Lunghezza compresa tra {{min}} e {{max}} caratteri."
482 564 text_tracker_no_workflow: Nessun workflow definito per questo tracker
483 565 text_unallowed_characters: Caratteri non permessi
484 566 text_comma_separated: Valori multipli permessi (separati da virgola).
485 567 text_issues_ref_in_commit_messages: Segnalazioni di riferimento e chiusura nei messaggi di commit
486 text_issue_added: "E' stata segnalata l'anomalia %s da %s."
487 text_issue_updated: "L'anomalia %s e' stata aggiornata da %s."
568 text_issue_added: "E' stata segnalata l'anomalia {{id}} da {{author}}."
569 text_issue_updated: "L'anomalia {{id}} e' stata aggiornata da {{author}}."
488 570 text_wiki_destroy_confirmation: Sicuro di voler cancellare questo wiki e tutti i suoi contenuti?
489 text_issue_category_destroy_question: Alcune segnalazioni (%d) risultano assegnate a questa categoria. Cosa vuoi fare ?
571 text_issue_category_destroy_question: "Alcune segnalazioni ({{count}}) risultano assegnate a questa categoria. Cosa vuoi fare ?"
490 572 text_issue_category_destroy_assignments: Rimuovi gli assegnamenti a questa categoria
491 573 text_issue_category_reassign_to: Riassegna segnalazioni a questa categoria
492 574
@@ -524,7 +606,7 setting_repositories_encodings: Codifiche dei repository
524 606 notice_no_issue_selected: "Nessuna segnalazione selezionata! Seleziona le segnalazioni che intendi modificare."
525 607 label_bulk_edit_selected_issues: Modifica massiva delle segnalazioni selezionate
526 608 label_no_change_option: (Nessuna modifica)
527 notice_failed_to_save_issues: "Impossibile salvare %d segnalazioni su %d selezionate: %s."
609 notice_failed_to_save_issues: "Impossibile salvare {{count}} segnalazioni su {{total}} selezionate: {{ids}}."
528 610 label_theme: Tema
529 611 label_default: Predefinito
530 612 label_search_titles_only: Cerca solo nei titoli
@@ -537,37 +619,37 label_user_mail_option_none: "Solo per argomenti che osservo o che mi riguardano
537 619 setting_emails_footer: Piè di pagina e-mail
538 620 label_float: Decimale
539 621 button_copy: Copia
540 mail_body_account_information_external: Puoi utilizzare il tuo account "%s" per accedere al sistema.
622 mail_body_account_information_external: "Puoi utilizzare il tuo account {{value}} per accedere al sistema."
541 623 mail_body_account_information: Le informazioni riguardanti il tuo account
542 624 setting_protocol: Protocollo
543 625 label_user_mail_no_self_notified: "Non voglio notifiche riguardanti modifiche da me apportate"
544 626 setting_time_format: Formato ora
545 627 label_registration_activation_by_email: attivazione account via e-mail
546 mail_subject_account_activation_request: %s richiesta attivazione account
547 mail_body_account_activation_request: 'Un nuovo utente (%s) ha effettuato la registrazione. Il suo account è in attesa di abilitazione da parte tua:'
628 mail_subject_account_activation_request: "{{value}} richiesta attivazione account"
629 mail_body_account_activation_request: "Un nuovo utente ({{value}}) ha effettuato la registrazione. Il suo account è in attesa di abilitazione da parte tua:'"
548 630 label_registration_automatic_activation: attivazione account automatica
549 631 label_registration_manual_activation: attivazione account manuale
550 632 notice_account_pending: "Il tuo account è stato creato ed è in attesa di attivazione da parte dell'amministratore."
551 633 field_time_zone: Fuso orario
552 text_caracters_minimum: Deve essere lungo almeno %d caratteri.
634 text_caracters_minimum: "Deve essere lungo almeno {{count}} caratteri."
553 635 setting_bcc_recipients: Destinatari in copia nascosta (bcc)
554 636 button_annotate: Annota
555 label_issues_by: Segnalazioni di %s
637 label_issues_by: "Segnalazioni di {{value}}"
556 638 field_searchable: Ricercabile
557 label_display_per_page: 'Per pagina: %s'
639 label_display_per_page: "Per pagina: {{value}}'"
558 640 setting_per_page_options: Opzioni oggetti per pagina
559 641 label_age: Età
560 642 notice_default_data_loaded: Configurazione predefinita caricata con successo.
561 643 text_load_default_configuration: Carica la configurazione predefinita
562 644 text_no_configuration_data: "Ruoli, tracker, stati delle segnalazioni e workflow non sono stati ancora configurati.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded."
563 error_can_t_load_default_data: "Non è stato possibile caricare la configurazione predefinita : %s"
645 error_can_t_load_default_data: "Non è stato possibile caricare la configurazione predefinita : {{value}}"
564 646 button_update: Aggiorna
565 647 label_change_properties: Modifica le proprietà
566 648 label_general: Generale
567 649 label_repository_plural: Repository
568 650 label_associated_revisions: Revisioni associate
569 651 setting_user_format: Formato visualizzazione utenti
570 text_status_changed_by_changeset: Applicata nel changeset %s.
652 text_status_changed_by_changeset: "Applicata nel changeset {{value}}."
571 653 label_more: Altro
572 654 text_issues_destroy_confirmation: 'Sei sicuro di voler eliminare le segnalazioni selezionate?'
573 655 label_scm: SCM
@@ -594,7 +676,7 label_plugins: Plugin
594 676 label_ldap_authentication: Autenticazione LDAP
595 677 label_downloads_abbr: D/L
596 678 label_this_month: questo mese
597 label_last_n_days: ultimi %d giorni
679 label_last_n_days: "ultimi {{count}} giorni"
598 680 label_all_time: sempre
599 681 label_this_year: quest'anno
600 682 label_date_range: Intervallo di date
@@ -618,15 +700,15 label_overall_activity: Attività generale
618 700 setting_default_projects_public: I nuovi progetti sono pubblici per default
619 701 error_scm_annotate: "L'oggetto non esiste o non può essere annotato."
620 702 label_planning: Pianificazione
621 text_subprojects_destroy_warning: 'Anche i suoi sottoprogetti: %s verranno eliminati.'
622 label_and_its_subprojects: %s ed i suoi sottoprogetti
623 mail_body_reminder: "%d segnalazioni che ti sono state assegnate scadranno nei prossimi %d giorni:"
624 mail_subject_reminder: "%d segnalazioni in scadenza nei prossimi giorni"
625 text_user_wrote: '%s ha scritto:'
703 text_subprojects_destroy_warning: "Anche i suoi sottoprogetti: {{value}} verranno eliminati.'"
704 label_and_its_subprojects: "{{value}} ed i suoi sottoprogetti"
705 mail_body_reminder: "{{count}} segnalazioni che ti sono state assegnate scadranno nei prossimi {{days}} giorni:"
706 mail_subject_reminder: "{{count}} segnalazioni in scadenza nei prossimi giorni"
707 text_user_wrote: "{{value}} ha scritto:'"
626 708 label_duplicated_by: duplicato da
627 709 setting_enabled_scm: SCM abilitato
628 710 text_enumeration_category_reassign_to: 'Riassegnale a questo valore:'
629 text_enumeration_destroy_question: '%d oggetti hanno un assegnamento su questo valore.'
711 text_enumeration_destroy_question: "{{count}} oggetti hanno un assegnamento su questo valore.'"
630 712 label_incoming_emails: E-mail in arrivo
631 713 label_generate_key: Genera una chiave
632 714 setting_mail_handler_api_enabled: Abilita WS per le e-mail in arrivo
@@ -692,18 +774,14 label_example: Esempio
692 774 text_repository_usernames_mapping: "Seleziona per aggiornare la corrispondenza tra gli utenti Redmine e quelli presenti nel log del repository.\nGli utenti Redmine e repository con lo stesso username o email sono mappati automaticamente."
693 775 permission_edit_own_messages: Modifica propri messaggi
694 776 permission_delete_own_messages: Elimina propri messaggi
695 label_user_activity: "attività di %s"
696 label_updated_time_by: Aggiornato da %s %s fa
777 label_user_activity: "attività di {{value}}"
778 label_updated_time_by: "Aggiornato da {{author}} {{age}} fa"
697 779 text_diff_truncated: '... Le differenze sono state troncate perchè superano il limite massimo visualizzabile.'
698 780 setting_diff_max_lines_displayed: Limite massimo di differenze (linee) mostrate
699 781 text_plugin_assets_writable: Plugin assets directory writable
700 warning_attachments_not_saved: "%d file(s) could not be saved."
782 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
701 783 button_create_and_continue: Create and continue
702 784 text_custom_field_possible_values_info: 'One line for each value'
703 785 label_display: Display
704 786 field_editable: Editable
705 787 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
@@ -1,48 +1,130
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Japanese translations for Ruby on Rails
2 # by Akira Matsuda (ronnie@dio.jp)
3 # AR error messages are basically taken from Ruby-GetText-Package. Thanks to Masao Mutoh.
2 4
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
5 actionview_datehelper_select_month_names_abbr: 1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_select_year_suffix:
9 actionview_datehelper_time_in_words_day: 1日
10 actionview_datehelper_time_in_words_day_plural: %d日
11 actionview_datehelper_time_in_words_hour_about: 約1時間
12 actionview_datehelper_time_in_words_hour_about_plural: 約%d時間
13 actionview_datehelper_time_in_words_hour_about_single: 約1時間
14 actionview_datehelper_time_in_words_minute: 1分
15 actionview_datehelper_time_in_words_minute_half: 約30秒
16 actionview_datehelper_time_in_words_minute_less_than: 1分以内
17 actionview_datehelper_time_in_words_minute_plural: %d分
18 actionview_datehelper_time_in_words_minute_single: 1分
19 actionview_datehelper_time_in_words_second_less_than: 1秒以内
20 actionview_datehelper_time_in_words_second_less_than_plural: %d秒以内
21 actionview_instancetag_blank_option: 選んでください
5 ja:
6 date:
7 formats:
8 default: "%Y/%m/%d"
9 short: "%m/%d"
10 long: "%Y年%m月%d日(%a)"
11
12 day_names: [日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日]
13 abbr_day_names: [, , , , , , ]
14
15 month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
16 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
17
18 order: [:year, :month, :day]
19
20 time:
21 formats:
22 default: "%Y/%m/%d %H:%M:%S"
23 short: "%y/%m/%d %H:%M"
24 long: "%Y年%m月%d日(%a) %H時%M分%S秒 %Z"
25 am: "午前"
26 pm: "午後"
27
28 support:
29 array:
30 sentence_connector: "及び"
31 skip_last_comma: true
32
33 number:
34 format:
35 separator: "."
36 delimiter: ","
37 precision: 3
38
39 currency:
40 format:
41 format: "%n%u"
42 unit: "円"
43 separator: "."
44 delimiter: ","
45 precision: 0
22 46
23 activerecord_error_inclusion: がリストに含まれていません
24 activerecord_error_exclusion: が予約されています
25 activerecord_error_invalid: が無効です
26 activerecord_error_confirmation: 確認のパスワードと合っていません
27 activerecord_error_accepted: を承諾してください
28 activerecord_error_empty: が空です
29 activerecord_error_blank: が空白です
30 activerecord_error_too_long: が長すぎます
31 activerecord_error_too_short: が短かすぎます
32 activerecord_error_wrong_length: の長さが間違っています
33 activerecord_error_taken: はすでに登録されています
34 activerecord_error_not_a_number: が数字ではありません
35 activerecord_error_not_a_date: の日付が間違っています
36 activerecord_error_greater_than_start_date: を開始日より後にしてください
37 activerecord_error_not_same_project: 同じプロジェクトに属していません
38 activerecord_error_circular_dependency: この関係では、循環依存になります
47 percentage:
48 format:
49 delimiter: ""
50
51 precision:
52 format:
53 delimiter: ""
54
55 human:
56 format:
57 delimiter: ""
58 precision: 1
59
60 datetime:
61 distance_in_words:
62 half_a_minute: "30秒前後"
63 less_than_x_seconds:
64 one: "1秒以下"
65 other: "{{count}}秒以下"
66 x_seconds:
67 one: "1秒"
68 other: "{{count}}秒"
69 less_than_x_minutes:
70 one: "1分以下"
71 other: "{{count}}分以下"
72 x_minutes:
73 one: "1分"
74 other: "{{count}}分"
75 about_x_hours:
76 one: "約1時間"
77 other: "約{{count}}時間"
78 x_days:
79 one: "1日"
80 other: "{{count}}日"
81 about_x_months:
82 one: "約1ヶ月"
83 other: "約{{count}}ヶ月"
84 x_months:
85 one: "1ヶ月"
86 other: "{{count}}ヶ月"
87 about_x_years:
88 one: "約{{count}}年以上"
89 other: "約{{count}}年以上"
90 over_x_years:
91 one: "{{count}}年以上"
92 other: "{{count}}年以上"
93
94 activerecord:
95 errors:
96 template:
97 header:
98 one: "{{model}}にエラーが発生しました。"
99 other: "{{model}}に{{count}}つのエラーが発生しました。"
100 body: "次の項目を確認してください。"
101
102 messages:
103 inclusion: "は一覧にありません。"
104 exclusion: "は予約されています。"
105 invalid: "は不正な値です。"
106 confirmation: "が一致しません。"
107 accepted: "を受諾してください。"
108 empty: "を入力してください。"
109 blank: "を入力してください。"
110 too_long: "は{{count}}文字以内で入力してください。"
111 too_short: "は{{count}}文字以上で入力してください。"
112 wrong_length: "は{{count}}文字で入力してください。"
113 taken: "はすでに存在します。"
114 not_a_number: "は数値で入力してください。"
115 greater_than: "は{{count}}より大きい値にしてください。"
116 greater_than_or_equal_to: "は{{count}}以上の値にしてください。"
117 equal_to: "は{{count}}にしてください。"
118 less_than: "は{{count}}より小さい値にしてください。"
119 less_than_or_equal_to: "は{{count}}以下の値にしてください。"
120 odd: "は奇数にしてください。"
121 even: "は偶数にしてください。"
122 greater_than_start_date: "を開始日より後にしてください"
123 not_same_project: "同じプロジェクトに属していません"
124 circular_dependency: "この関係では、循環依存になります"
125
126 actionview_instancetag_blank_option: 選んでください
39 127
40 general_fmt_age: %d歳
41 general_fmt_age_plural: %d歳
42 general_fmt_date: %%Y年%%m月%%d日
43 general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p
44 general_fmt_datetime_short: %%b %%d, %%H:%%M %%p
45 general_fmt_time: %%H:%%M %%p
46 128 general_text_No: 'いいえ'
47 129 general_text_Yes: 'はい'
48 130 general_text_no: 'いいえ'
@@ -52,7 +134,6 general_csv_separator: ','
52 134 general_csv_decimal_separator: '.'
53 135 general_csv_encoding: SJIS
54 136 general_pdf_encoding: UTF-8
55 general_day_names: 月曜日,火曜日,水曜日,木曜日,金曜日,土曜日,日曜日
56 137 general_first_day_of_week: '7'
57 138
58 139 notice_account_updated: アカウントが更新されました。
@@ -71,20 +152,20 notice_successful_connection: 接続しました。
71 152 notice_file_not_found: アクセスしようとしたページは存在しないか削除されています。
72 153 notice_locking_conflict: 別のユーザがデータを更新しています。
73 154 notice_not_authorized: このページにアクセスするには認証が必要です。
74 notice_email_sent: %s宛にメールを送信しました。
75 notice_email_error: メール送信中にエラーが発生しました(%s)
155 notice_email_sent: "{{value}}宛にメールを送信しました。"
156 notice_email_error: "メール送信中にエラーが発生しました({{value}})"
76 157 notice_feeds_access_key_reseted: RSSアクセスキーを初期化しました。
77 158
78 159 error_scm_not_found: リポジトリに、エントリ/リビジョンが存在しません。
79 error_scm_command_failed: "リポジトリへアクセスしようとしてエラーになりました: %s"
160 error_scm_command_failed: "リポジトリへアクセスしようとしてエラーになりました: {{value}}"
80 161
81 mail_subject_lost_password: %sパスワード
162 mail_subject_lost_password: "{{value}}パスワード"
82 163 mail_body_lost_password: 'パスワードを変更するには、以下のリンクをたどってください:'
83 mail_subject_register: %sアカウントのアクティブ化
164 mail_subject_register: "{{value}}アカウントのアクティブ化"
84 165 mail_body_register: 'アカウントをアクティブにするには、以下のリンクをたどってください:'
85 166
86 167 gui_validation_error: 1件のエラー
87 gui_validation_error_plural: %d件のエラー
168 gui_validation_error_plural: "{{count}}件のエラー"
88 169
89 170 field_name: 名前
90 171 field_description: 説明
@@ -194,6 +275,10 label_user_new: 新しいユーザ
194 275 label_project: プロジェクト
195 276 label_project_new: 新しいプロジェクト
196 277 label_project_plural: プロジェクト
278 label_x_projects:
279 zero: no projects
280 one: 1 project
281 other: "{{count}} projects"
197 282 label_project_all: 全プロジェクト
198 283 label_project_latest: 最近のプロジェクト
199 284 label_issue: チケット
@@ -241,8 +326,6 label_help: ヘルプ
241 326 label_reported_issues: 報告したチケット
242 327 label_assigned_to_me_issues: 担当しているチケット
243 328 label_last_login: 最近の接続
244 label_last_updates: 最近の更新1件
245 label_last_updates_plural: 最近の更新%d件
246 329 label_registered_on: 登録日
247 330 label_activity: 活動
248 331 label_new: 新しく作成
@@ -262,8 +345,8 label_string: テキスト
262 345 label_text: 長いテキスト
263 346 label_attribute: 属性
264 347 label_attribute_plural: 属性
265 label_download: %d ダウンロード
266 label_download_plural: %d ダウンロード
348 label_download: "{{count}} ダウンロード"
349 label_download_plural: "{{count}} ダウンロード"
267 350 label_no_data: 表示するデータがありません
268 351 label_change_status: ステータスの変更
269 352 label_history: 履歴
@@ -292,6 +375,18 label_open_issues: 未完了
292 375 label_open_issues_plural: 未完了
293 376 label_closed_issues: 終了
294 377 label_closed_issues_plural: 終了
378 label_x_open_issues_abbr_on_total:
379 zero: 0 open / {{total}}
380 one: 1 open / {{total}}
381 other: "{{count}} open / {{total}}"
382 label_x_open_issues_abbr:
383 zero: 0 open
384 one: 1 open
385 other: "{{count}} open"
386 label_x_closed_issues_abbr:
387 zero: 0 closed
388 one: 1 closed
389 other: "{{count}} closed"
295 390 label_total: 合計
296 391 label_permissions: 権限
297 392 label_current_status: 現在のステータス
@@ -308,11 +403,15 label_calendar: カレンダー
308 403 label_months_from: ヶ月 from
309 404 label_gantt: ガントチャート
310 405 label_internal: Internal
311 label_last_changes: 最新の変更%d件
406 label_last_changes: "最新の変更{{count}}件"
312 407 label_change_view_all: 全ての変更を見る
313 408 label_personalize_page: このページをパーソナライズする
314 409 label_comment: コメント
315 410 label_comment_plural: コメント
411 label_x_comments:
412 zero: no comments
413 one: 1 comment
414 other: "{{count}} comments"
316 415 label_comment_add: コメント追加
317 416 label_comment_added: 追加されたコメント
318 417 label_comment_delete: コメント削除
@@ -336,8 +435,8 label_not_contains: 含まない
336 435 label_day_plural:
337 436 label_repository: リポジトリ
338 437 label_browse: ブラウズ
339 label_modification: %d点の変更
340 label_modification_plural: %d点の変更
438 label_modification: "{{count}}点の変更"
439 label_modification_plural: "{{count}}点の変更"
341 440 label_revision: リビジョン
342 441 label_revision_plural: リビジョン
343 442 label_added: 追加
@@ -347,14 +446,13 label_latest_revision: 最新リビジョン
347 446 label_latest_revision_plural: 最新リビジョン
348 447 label_view_revisions: リビジョンを見る
349 448 label_max_size: 最大サイズ
350 label_on: 合計
351 449 label_sort_highest: 一番上へ
352 450 label_sort_higher: 上へ
353 451 label_sort_lower: 下へ
354 452 label_sort_lowest: 一番下へ
355 453 label_roadmap: ロードマップ
356 label_roadmap_due_in: 期日まで %s
357 label_roadmap_overdue: %s遅れ
454 label_roadmap_due_in: "期日まで {{value}}"
455 label_roadmap_overdue: "{{value}}遅れ"
358 456 label_roadmap_no_issues: このバージョンに向けてのチケットはありません
359 457 label_search: 検索
360 458 label_result_plural: 結果
@@ -372,8 +470,8 label_feed_plural: フィード
372 470 label_changes_details: 全変更の詳細
373 471 label_issue_tracking: チケットトラッキング
374 472 label_spent_time: 経過時間
375 label_f_hour: %.2f 時間
376 label_f_hour_plural: %.2f 時間
473 label_f_hour: "{{value}} 時間"
474 label_f_hour_plural: "{{value}} 時間"
377 475 label_time_tracking: 時間トラッキング
378 476 label_change_plural: 変更
379 477 label_statistics: 統計
@@ -420,12 +518,12 label_week: 週
420 518 label_date_from: "日付指定: "
421 519 label_date_to: から
422 520 label_language_based: 既定の言語の設定に従う
423 label_sort_by: %sで並び替え
521 label_sort_by: "{{value}}で並び替え"
424 522 label_send_test_email: テストメールを送信
425 label_feeds_access_key_created_on: RSSアクセスキーは%s前に作成されました
523 label_feeds_access_key_created_on: "RSSアクセスキーは{{value}}前に作成されました"
426 524 label_module_plural: モジュール
427 label_added_time_by: %sが%s前に追加しました
428 label_updated_time: %s前に更新されました
525 label_added_time_by: "{{author}}が{{age}}前に追加しました"
526 label_updated_time: "{{value}}前に更新されました"
429 527 label_jump_to_a_project: プロジェクトへ移動...
430 528
431 529 button_login: ログイン
@@ -471,23 +569,23 text_min_max_length_info: 0だと無制限になります
471 569 text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?
472 570 text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください
473 571 text_are_you_sure: よろしいですか?
474 text_journal_changed: %sから%sに変更
475 text_journal_set_to: %sにセット
572 text_journal_changed: "{{old}}から{{new}}に変更"
573 text_journal_set_to: "{{value}}にセット"
476 574 text_journal_deleted: 削除
477 575 text_tip_task_begin_day: この日に開始するタスク
478 576 text_tip_task_end_day: この日に終了するタスク
479 577 text_tip_task_begin_end_day: この日のうちに開始して終了するタスク
480 578 text_project_identifier_info: '英小文字(a-z)と数字とダッシュ(-)が使えます。<br />一度保存すると、識別子は変更できません。'
481 text_caracters_maximum: 最大 %d 文字です。
482 text_length_between: 長さは %d から %d 文字までです。
579 text_caracters_maximum: "最大 {{count}} 文字です。"
580 text_length_between: "長さは {{min}} から {{max}} 文字までです。"
483 581 text_tracker_no_workflow: このトラッカーにワークフローが定義されていません
484 582 text_unallowed_characters: 使えない文字です
485 583 text_comma_separated: (カンマで区切った)複数の値が使えます
486 584 text_issues_ref_in_commit_messages: コミットメッセージ内でチケットの参照/修正
487 text_issue_added: チケット %s が報告されました。 (by %s)
488 text_issue_updated: チケット %s が更新されました。 (by %s)
585 text_issue_added: "チケット {{id}} が報告されました。 (by {{author}})"
586 text_issue_updated: "チケット {{id}} が更新されました。 (by {{author}})"
489 587 text_wiki_destroy_confirmation: 本当にこのwikiとその内容の全てを削除しますか?
490 text_issue_category_destroy_question: このカテゴリに割り当て済みのチケット(%d)があります。何をしようとしていますか?
588 text_issue_category_destroy_question: "このカテゴリに割り当て済みのチケット({{count}})があります。何をしようとしていますか?"
491 589 text_issue_category_destroy_assignments: カテゴリの割り当てを削除する
492 590 text_issue_category_reassign_to: チケットをこのカテゴリに再割り当てする
493 591
@@ -525,7 +623,7 setting_repositories_encodings: リポジトリのエンコーディング
525 623 notice_no_issue_selected: "チケットが選択されていません! 更新対象のチケットを選択してください。"
526 624 label_bulk_edit_selected_issues: チケットの一括編集
527 625 label_no_change_option: (変更無し)
528 notice_failed_to_save_issues: "%d件のチケットが保存できませんでした(%d件選択のうち) : %s."
626 notice_failed_to_save_issues: "{{count}}件のチケットが保存できませんでした({{total}}件選択のうち) : {{ids}}."
529 627 label_theme: テーマ
530 628 label_default: 既定
531 629 label_search_titles_only: タイトルのみ
@@ -538,38 +636,38 label_user_mail_option_none: "ウォッチまたは関係しているチケッ
538 636 setting_emails_footer: メールのフッタ
539 637 label_float: 小数
540 638 button_copy: コピー
541 mail_body_account_information_external: 「%s」アカウントを使ってにログインできます。
639 mail_body_account_information_external: "「{{value}}」アカウントを使ってにログインできます。"
542 640 mail_body_account_information: アカウント情報
543 641 setting_protocol: プロトコル
544 642 label_user_mail_no_self_notified: 自分自身による変更の通知は不要です
545 643 setting_time_format: 時刻の形式
546 644 label_registration_activation_by_email: メールでアカウントを有効化
547 mail_subject_account_activation_request: %sアカウントの有効化要求
548 mail_body_account_activation_request: 新しいユーザ(%s)が登録しています。このアカウントはあなたの承認待ちです:
645 mail_subject_account_activation_request: "{{value}}アカウントの有効化要求"
646 mail_body_account_activation_request: "新しいユーザ({{value}})が登録しています。このアカウントはあなたの承認待ちです:"
549 647 label_registration_automatic_activation: 自動でアカウントを有効化
550 648 label_registration_manual_activation: 手動でアカウントを有効化
551 649 notice_account_pending: アカウントは作成済みで、管理者の承認待ちです。
552 650 field_time_zone: タイムゾーン
553 text_caracters_minimum: 最低%d文字の長さが必要です
651 text_caracters_minimum: "最低{{count}}文字の長さが必要です"
554 652 setting_bcc_recipients: ブラインドカーボンコピーで受信(bcc)
555 653 setting_plain_text_mail: プレインテキストのみ(HTMLなし)
556 654 button_annotate: 注釈
557 label_issues_by: %s別のチケット
655 label_issues_by: "{{value}}別のチケット"
558 656 field_searchable: Searchable
559 label_display_per_page: '1ページに: %s'
657 label_display_per_page: "1ページに: {{value}}'"
560 658 setting_per_page_options: ページ毎の表示件数
561 659 label_age: 年齢
562 660 notice_default_data_loaded: デフォルト設定をロードしました。
563 661 text_load_default_configuration: デフォルト設定をロード
564 662 text_no_configuration_data: "ロール、トラッカー、チケットのステータス、ワークフローがまだ設定されていません。\nデフォルト設定のロードを強くお勧めします。ロードした後、それを修正することができます。"
565 error_can_t_load_default_data: "デフォルト設定がロードできませんでした: %s"
663 error_can_t_load_default_data: "デフォルト設定がロードできませんでした: {{value}}"
566 664 button_update: 更新
567 665 label_change_properties: プロパティの変更
568 666 label_general: 全般
569 667 label_repository_plural: リポジトリ
570 668 label_associated_revisions: 関係しているリビジョン
571 669 setting_user_format: ユーザ名の表示書式
572 text_status_changed_by_changeset: チェンジセット%sで適用されました。
670 text_status_changed_by_changeset: "チェンジセット{{value}}で適用されました。"
573 671 label_more: 続き
574 672 text_issues_destroy_confirmation: '本当に選択したチケットを削除しますか?'
575 673 label_scm: SCM
@@ -596,7 +694,7 label_plugins: プラグイン
596 694 label_ldap_authentication: LDAP認証
597 695 label_downloads_abbr: DL
598 696 label_this_month: 今月
599 label_last_n_days: 最後の%d日間
697 label_last_n_days: "最後の{{count}}日間"
600 698 label_all_time: 全期間
601 699 label_this_year: 今年
602 700 label_date_range: 日付の範囲
@@ -620,15 +718,15 label_overall_activity: 全ての活動
620 718 setting_default_projects_public: デフォルトで新しいプロジェクトは公開にする
621 719 error_scm_annotate: "エントリが存在しない、もしくはアノテートできません。"
622 720 label_planning: 計画
623 text_subprojects_destroy_warning: 'サブプロジェクト %s も削除されます。'
624 label_and_its_subprojects: %s とサブプロジェクト
625 mail_body_reminder: "%d件の担当チケットの期限が%d日以内に到来します:"
626 mail_subject_reminder: "%d件のチケットが期限間近です"
627 text_user_wrote: '%s wrote:'
721 text_subprojects_destroy_warning: "サブプロジェクト {{value}} も削除されます。'"
722 label_and_its_subprojects: "{{value}} とサブプロジェクト"
723 mail_body_reminder: "{{count}}件の担当チケットの期限が{{days}}日以内に到来します:"
724 mail_subject_reminder: "{{count}}件のチケットが期限間近です"
725 text_user_wrote: "{{value}} wrote:'"
628 726 label_duplicated_by: duplicated by
629 727 setting_enabled_scm: 使用するSCM
630 728 text_enumeration_category_reassign_to: '次の値に割り当て直す:'
631 text_enumeration_destroy_question: '%d個のオブジェクトがこの値に割り当てられています。'
729 text_enumeration_destroy_question: "{{count}}個のオブジェクトがこの値に割り当てられています。'"
632 730 label_incoming_emails: 受信メール
633 731 label_generate_key: キーの生成
634 732 setting_mail_handler_api_enabled: 受信メール用のWeb Serviceを有効にする
@@ -693,18 +791,14 label_example: 例
693 791 text_repository_usernames_mapping: "リポジトリのログから検出されたユーザー名をどのRedmineユーザーに関連づけるのか選択してください。\nログ上のユーザー名またはメールアドレスがRedmineのユーザーと一致する場合は自動的に関連づけられます。"
694 792 permission_edit_own_messages: Edit own messages
695 793 permission_delete_own_messages: Delete own messages
696 label_user_activity: "%sの活動"
697 label_updated_time_by: %sが%s前に更新
794 label_user_activity: "{{value}}の活動"
795 label_updated_time_by: "{{author}}が{{age}}前に更新"
698 796 text_diff_truncated: '... 差分の行数が表示可能な上限を超えました。超過分は表示しません。'
699 797 setting_diff_max_lines_displayed: 差分の表示行数の上限
700 798 text_plugin_assets_writable: Plugin assets directory writable
701 warning_attachments_not_saved: "%d個のファイルが保存できませんでした。"
799 warning_attachments_not_saved: "{{count}}個のファイルが保存できませんでした。"
702 800 button_create_and_continue: 連続作成
703 801 text_custom_field_possible_values_info: '選択肢の値は1行に1個ずつ記述してください。'
704 802 label_display: 表示
705 803 field_editable: Editable
706 804 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
@@ -1,47 +1,140
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Lithuanian translations for Ruby on Rails
2 # by Laurynas Butkus (laurynas.butkus@gmail.com)
2 3
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: sausis,vasaris,kovas,balandis,gegužė,birželis,liepa,rugpjūtis,rugsėjis,spalis,lapkritis,gruodis
5 actionview_datehelper_select_month_names_abbr: Sau,Vas,Kov,Bal,Geg,Brž,Lie,Rgp,Rgs,Spl,Lap,Grd
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 diena
9 actionview_datehelper_time_in_words_day_plural: %d dienų
10 actionview_datehelper_time_in_words_hour_about: apytiksliai valanda
11 actionview_datehelper_time_in_words_hour_about_plural: apie %d valandas
12 actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda
13 actionview_datehelper_time_in_words_minute: 1 minutė
14 actionview_datehelper_time_in_words_minute_half: pusė minutės
15 actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė
16 actionview_datehelper_time_in_words_minute_plural: %d minutės
17 actionview_datehelper_time_in_words_minute_single: 1 minutė
18 actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė
19 actionview_datehelper_time_in_words_second_less_than_plural: mažiau, negu %d sekundės
20 actionview_instancetag_blank_option: prašom išrinkti
4 lt:
5 number:
6 format:
7 separator: ","
8 delimiter: " "
9 precision: 3
10
11 currency:
12 format:
13 format: "%n %u"
14 unit: "Lt"
15 separator: ","
16 delimiter: " "
17 precision: 2
18
19 percentage:
20 format:
21 delimiter: ""
22
23 precision:
24 format:
25 delimiter: ""
26
27 human:
28 format:
29 delimiter: ""
30 precision: 1
31 storage_units: [baitai, KB, MB, GB, TB]
32
33 datetime:
34 distance_in_words:
35 half_a_minute: "pusė minutės"
36 less_than_x_seconds:
37 one: "mažiau nei 1 sekundė"
38 other: "mažiau nei {{count}} sekundės"
39 x_seconds:
40 one: "1 sekundė"
41 other: "{{count}} sekundės"
42 less_than_x_minutes:
43 one: "mažiau nei minutė"
44 other: "mažiau nei {{count}} minutės"
45 x_minutes:
46 one: "1 minutė"
47 other: "{{count}} minutės"
48 about_x_hours:
49 one: "apie 1 valanda"
50 other: "apie {{count}} valandų"
51 x_days:
52 one: "1 diena"
53 other: "{{count}} dienų"
54 about_x_months:
55 one: "apie 1 mėnuo"
56 other: "apie {{count}} mėnesiai"
57 x_months:
58 one: "1 mėnuo"
59 other: "{{count}} mėnesiai"
60 about_x_years:
61 one: "apie 1 metai"
62 other: "apie {{count}} metų"
63 over_x_years:
64 one: "virš 1 metų"
65 other: "virš {{count}} metų"
66 prompts:
67 year: "Metai"
68 month: "Mėnuo"
69 day: "Diena"
70 hour: "Valanda"
71 minute: "Minutė"
72 second: "Sekundės"
73
74 activerecord:
75 errors:
76 template:
77 header:
78 one: "Išsaugant objektą {{model}} rasta klaida"
79 other: "Išsaugant objektą {{model}} rastos {{count}} klaidos"
80 body: "Šiuose laukuose yra klaidų:"
81
82 messages:
83 inclusion: "nenumatyta reikšmė"
84 exclusion: "užimtas"
85 invalid: "neteisingas"
86 confirmation: "neteisingai pakartotas"
87 accepted: "turi būti patvirtintas"
88 empty: "negali būti tuščias"
89 blank: "negali būti tuščias"
90 too_long: "per ilgas (daugiausiai {{count}} simboliai)"
91 too_short: "per trumpas (mažiausiai {{count}} simboliai)"
92 wrong_length: "neteisingo ilgio (turi būti {{count}} simboliai)"
93 taken: "jau užimtas"
94 not_a_number: "ne skaičius"
95 greater_than: "turi būti didesnis {{count}}"
96 greater_than_or_equal_to: "turi būti didesnis arba lygus {{count}}"
97 equal_to: "turi būti lygus {{count}}"
98 less_than: "turi būti mažesnis {{count}}"
99 less_than_or_equal_to: "turi būti mažesnis arba lygus {{count}}"
100 odd: "turi būti nelyginis"
101 even: "turi būti lyginis"
102 greater_than_start_date: "turi būti didesnė negu pradžios data"
103 not_same_project: "nepriklauso tam pačiam projektui"
104 circular_dependency: "Šis ryšys sukurtų ciklinę priklausomybę"
21 105
22 activerecord_error_inclusion: nėra įtrauktas į sąrašą
23 activerecord_error_exclusion: yra rezervuota(as)
24 activerecord_error_invalid: yra negaliojanti(is)
25 activerecord_error_confirmation: neatitinka patvirtinimo
26 activerecord_error_accepted: turi būti priimtas
27 activerecord_error_empty: negali būti tuščiu
28 activerecord_error_blank: negali būti tuščiu
29 activerecord_error_too_long: yra per ilgas
30 activerecord_error_too_short: yra per trumpas
31 activerecord_error_wrong_length: neteisingas ilgis
32 activerecord_error_taken: buvo jau paimtas
33 activerecord_error_not_a_number: nėra skaičius
34 activerecord_error_not_a_date: data nėra galiojanti
35 activerecord_error_greater_than_start_date: turi būti didesnė negu pradžios data
36 activerecord_error_not_same_project: nepriklauso tam pačiam projektui
37 activerecord_error_circular_dependency: Šis ryšys sukurtų ciklinę priklausomybę
106 models:
107
108 date:
109 formats:
110 default: "%Y-%m-%d"
111 short: "%b %d"
112 long: "%B %d, %Y"
113
114 day_names: [sekmadienis, pirmadienis, antradienis, trečiadienis, ketvirtadienis, penktadienis, šeštadienis]
115 abbr_day_names: [Sek, Pir, Ant, Tre, Ket, Pen, Šeš]
116
117 month_names: [~, sausio, vasario, kovo, balandžio, gegužės, birželio, liepos, rugpjūčio, rugsėjo, spalio, lapkričio, gruodžio]
118 abbr_month_names: [~, Sau, Vas, Kov, Bal, Geg, Bir, Lie, Rgp, Rgs, Spa, Lap, Grd]
119 order: [ :year, :month, :day ]
120
121 time:
122 formats:
123 default: "%a, %d %b %Y %H:%M:%S %z"
124 short: "%d %b %H:%M"
125 long: "%B %d, %Y %H:%M"
126 am: "am"
127 pm: "pm"
128
129 support:
130 array:
131 words_connector: ", "
132 two_words_connector: " ir "
133 last_word_connector: " ir "
134
135
136 actionview_instancetag_blank_option: prašom išrinkti
38 137
39 general_fmt_age: %d m.
40 general_fmt_age_plural: %d metų(ai)
41 general_fmt_date: %%Y-%%m-%%d
42 general_fmt_datetime: %%Y-%%m-%%d %%H:%%M
43 general_fmt_datetime_short: %%b %%d, %%H:%%M
44 general_fmt_time: %%H:%%M
45 138 general_text_No: 'Ne'
46 139 general_text_Yes: 'Taip'
47 140 general_text_no: 'ne'
@@ -51,7 +144,6 general_csv_separator: ';'
51 144 general_csv_decimal_separator: '.'
52 145 general_csv_encoding: UTF-8
53 146 general_pdf_encoding: UTF-8
54 general_day_names: pirmadienis,antradienis,trečiadienis,ketvirtadienis,penktadienis,šeštadienis,sekmadienis
55 147 general_first_day_of_week: '1'
56 148
57 149 notice_account_updated: Paskyra buvo sėkmingai atnaujinta.
@@ -70,34 +162,34 notice_successful_connection: Sėkmingas susijungimas.
70 162 notice_file_not_found: Puslapis, į kurį ketinate įeiti, neegzistuoja arba pašalintas.
71 163 notice_locking_conflict: Duomenys atnaujinti kito vartotojo.
72 164 notice_not_authorized: Jūs neturite teisių gauti prieigą prie šio puslapio.
73 notice_email_sent: Laiškas išsiųstas %s
74 notice_email_error: Laiško siųntimo metu įvyko klaida (%s)
165 notice_email_sent: "Laiškas išsiųstas {{value}}"
166 notice_email_error: "Laiško siųntimo metu įvyko klaida ({{value}})"
75 167 notice_feeds_access_key_reseted: Jūsų RSS raktas buvo atnaujintas.
76 notice_failed_to_save_issues: "Nepavyko išsaugoti %d problemos(ų) %d pasirinkto: %s."
168 notice_failed_to_save_issues: "Nepavyko išsaugoti {{count}} problemos(ų) {{total}} pasirinkto: {{ids}}."
77 169 notice_no_issue_selected: "Nepasirinkta viena problema! Prašom pažymėti problemą, kurią norite redaguoti."
78 170 notice_account_pending: "Jūsų paskyra buvo sukūrta ir dabar laukiama administratoriaus patvirtinimo."
79 171 notice_default_data_loaded: Numatytoji konfiguracija sėkmingai užkrauta.
80 172 notice_unable_delete_version: Neimanoma panaikinti versiją
81 173
82 error_can_t_load_default_data: "Numatytoji konfiguracija negali būti užkrauta: %s"
174 error_can_t_load_default_data: "Numatytoji konfiguracija negali būti užkrauta: {{value}}"
83 175 error_scm_not_found: "Duomenys ir/ar pakeitimai saugykloje(repozitorojoje) neegzistuoja."
84 error_scm_command_failed: "Įvyko klaida jungiantis prie saugyklos: %s"
176 error_scm_command_failed: "Įvyko klaida jungiantis prie saugyklos: {{value}}"
85 177 error_scm_annotate: "Įrašas neegzituoja arba negalima jo atvaizduoti."
86 178 error_issue_not_found_in_project: 'Darbas nerastas arba nesurištas su šiuo projektu'
87 179
88 mail_subject_lost_password: Jūsų %s slaptažodis
180 mail_subject_lost_password: "Jūsų {{value}} slaptažodis"
89 181 mail_body_lost_password: 'Norėdami pakeisti slaptažodį, spauskite nuorodą:'
90 mail_subject_register: '%s paskyros aktyvavymas'
182 mail_subject_register: "{{value}} paskyros aktyvavymas'"
91 183 mail_body_register: 'Norėdami aktyvuoti paskyrą, spauskite nuorodą:'
92 mail_body_account_information_external: Jūs galite naudoti Jūsų "%s" paskyrą, norėdami prisijungti.
184 mail_body_account_information_external: "Jūs galite naudoti Jūsų {{value}} paskyrą, norėdami prisijungti."
93 185 mail_body_account_information: Informacija apie Jūsų paskyrą
94 mail_subject_account_activation_request: %s paskyros aktyvavimo prašymas
95 mail_body_account_activation_request: 'Užsiregistravo naujas vartotojas (%s). Jo paskyra laukia jūsų patvirtinimo:'
96 mail_subject_reminder: "%d darbas(ai) po kelių dienų"
97 mail_body_reminder: "%d darbas(ai), kurie yra jums priskirti, baigiasi po %d dienų(os):"
186 mail_subject_account_activation_request: "{{value}} paskyros aktyvavimo prašymas"
187 mail_body_account_activation_request: "Užsiregistravo naujas vartotojas ({{value}}). Jo paskyra laukia jūsų patvirtinimo:'"
188 mail_subject_reminder: "{{count}} darbas(ai) po kelių dienų"
189 mail_body_reminder: "{{count}} darbas(ai), kurie yra jums priskirti, baigiasi po {{days}} dienų(os):"
98 190
99 191 gui_validation_error: 1 klaida
100 gui_validation_error_plural: %d klaidų(os)
192 gui_validation_error_plural: "{{count}} klaidų(os)"
101 193
102 194 field_name: Pavadinimas
103 195 field_description: Aprašas
@@ -289,13 +381,17 label_user_new: Naujas vartotojas
289 381 label_project: Projektas
290 382 label_project_new: Naujas projektas
291 383 label_project_plural: Projektai
384 label_x_projects:
385 zero: no projects
386 one: 1 project
387 other: "{{count}} projects"
292 388 label_project_all: Visi Projektai
293 389 label_project_latest: Paskutiniai projektai
294 390 label_issue: Darbas
295 391 label_issue_new: Naujas darbas
296 392 label_issue_plural: Darbai
297 393 label_issue_view_all: Peržiūrėti visus darbus
298 label_issues_by: Darbai pagal %s
394 label_issues_by: "Darbai pagal {{value}}"
299 395 label_issue_added: Darbas pridėtas
300 396 label_issue_updated: Darbas atnaujintas
301 397 label_document: Dokumentas
@@ -340,12 +436,10 label_help: Pagalba
340 436 label_reported_issues: Pranešti darbai
341 437 label_assigned_to_me_issues: Darbai, priskirti man
342 438 label_last_login: Paskutinis ryšys
343 label_last_updates: Paskutinis atnaujinimas
344 label_last_updates_plural: %d paskutinis atnaujinimas
345 439 label_registered_on: Užregistruota
346 440 label_activity: Veikla
347 441 label_overall_activity: Visa veikla
348 label_user_activity: "%so veiksmai"
442 label_user_activity: "{{value}}o veiksmai"
349 443 label_new: Naujas
350 444 label_logged_as: Prisijungęs kaip
351 445 label_environment: Aplinka
@@ -354,7 +448,7 label_auth_source: Autentiškumo nustatymo būdas
354 448 label_auth_source_new: Naujas autentiškumo nustatymo būdas
355 449 label_auth_source_plural: Autentiškumo nustatymo būdai
356 450 label_subproject_plural: Subprojektai
357 label_and_its_subprojects: %s projektas ir jo subprojektai
451 label_and_its_subprojects: "{{value}} projektas ir jo subprojektai"
358 452 label_min_max_length: Min - Maks ilgis
359 453 label_list: Sąrašas
360 454 label_date: Data
@@ -365,8 +459,8 label_string: Tekstas
365 459 label_text: Ilgas tekstas
366 460 label_attribute: Požymis
367 461 label_attribute_plural: Požymiai
368 label_download: %d Persiuntimas
369 label_download_plural: %d Persiuntimai
462 label_download: "{{count}} Persiuntimas"
463 label_download_plural: "{{count}} Persiuntimai"
370 464 label_no_data: Nėra ką atvaizduoti
371 465 label_change_status: Pakeitimo padėtis
372 466 label_history: Istorija
@@ -397,6 +491,18 label_open_issues: atidaryta
397 491 label_open_issues_plural: atidarytos
398 492 label_closed_issues: uždaryta
399 493 label_closed_issues_plural: uždarytos
494 label_x_open_issues_abbr_on_total:
495 zero: 0 open / {{total}}
496 one: 1 open / {{total}}
497 other: "{{count}} open / {{total}}"
498 label_x_open_issues_abbr:
499 zero: 0 open
500 one: 1 open
501 other: "{{count}} open"
502 label_x_closed_issues_abbr:
503 zero: 0 closed
504 one: 1 closed
505 other: "{{count}} closed"
400 506 label_total: Bendra suma
401 507 label_permissions: Leidimai
402 508 label_current_status: Einamoji padėtis
@@ -414,11 +520,15 label_calendar: Kalendorius
414 520 label_months_from: mėnesiai nuo
415 521 label_gantt: Gantt
416 522 label_internal: Vidinis
417 label_last_changes: paskutiniai %d, pokyčiai
523 label_last_changes: "paskutiniai {{count}}, pokyčiai"
418 524 label_change_view_all: Peržiūrėti visus pakeitimus
419 525 label_personalize_page: Suasmeninti šį puslapį
420 526 label_comment: Komentaras
421 527 label_comment_plural: Komentarai
528 label_x_comments:
529 zero: no comments
530 one: 1 comment
531 other: "{{count}} comments"
422 532 label_comment_add: Pridėkite komentarą
423 533 label_comment_added: Komentaras pridėtas
424 534 label_comment_delete: Pašalinkite komentarus
@@ -437,7 +547,7 label_all_time: visas laikas
437 547 label_yesterday: vakar
438 548 label_this_week: šią savaitę
439 549 label_last_week: paskutinė savaitė
440 label_last_n_days: paskutinių %d dienų
550 label_last_n_days: "paskutinių {{count}} dienų"
441 551 label_this_month: šis menuo
442 552 label_last_month: paskutinis menuo
443 553 label_this_year: šiemet
@@ -451,8 +561,8 label_day_plural: dienos
451 561 label_repository: Saugykla
452 562 label_repository_plural: Saugiklos
453 563 label_browse: Naršyti
454 label_modification: %d pakeitimas
455 label_modification_plural: %d pakeitimai
564 label_modification: "{{count}} pakeitimas"
565 label_modification_plural: "{{count}} pakeitimai"
456 566 label_revision: Revizija
457 567 label_revision_plural: Revizijos
458 568 label_associated_revisions: susijusios revizijos
@@ -465,14 +575,13 label_latest_revision: Paskutinė revizija
465 575 label_latest_revision_plural: Paskutinės revizijos
466 576 label_view_revisions: Pežiūrėti revizijas
467 577 label_max_size: Maksimalus dydis
468 label_on: 'iš'
469 578 label_sort_highest: Perkelti į viršūnę
470 579 label_sort_higher: Perkelti į viršų
471 580 label_sort_lower: Perkelti žemyn
472 581 label_sort_lowest: Perkelti į apačią
473 582 label_roadmap: Veiklos grafikas
474 label_roadmap_due_in: Baigiasi po %s
475 label_roadmap_overdue: %s vėluojama
583 label_roadmap_due_in: "Baigiasi po {{value}}"
584 label_roadmap_overdue: "{{value}} vėluojama"
476 585 label_roadmap_no_issues: Jokio darbo šiai versijai nėra
477 586 label_search: Ieškoti
478 587 label_result_plural: Rezultatai
@@ -490,8 +599,8 label_feed_plural: Įeitys(Feeds)
490 599 label_changes_details: Visų pakeitimų detalės
491 600 label_issue_tracking: Darbų sekimas
492 601 label_spent_time: Sugaištas laikas
493 label_f_hour: %.2f valanda
494 label_f_hour_plural: %.2f valandų
602 label_f_hour: "{{value}} valanda"
603 label_f_hour_plural: "{{value}} valandų"
495 604 label_time_tracking: Laiko sekimas
496 605 label_change_plural: Pakeitimai
497 606 label_statistics: Statistika
@@ -540,13 +649,13 label_week: Savaitė
540 649 label_date_from: Nuo
541 650 label_date_to: Iki
542 651 label_language_based: Pagrįsta vartotojo kalba
543 label_sort_by: Rūšiuoti pagal %s
652 label_sort_by: "Rūšiuoti pagal {{value}}"
544 653 label_send_test_email: Nusiųsti bandomąjį elektroninį laišką
545 label_feeds_access_key_created_on: RSS prieigos raktas sukūrtas prieš %s
654 label_feeds_access_key_created_on: "RSS prieigos raktas sukūrtas prieš {{value}}"
546 655 label_module_plural: Moduliai
547 label_added_time_by: Pridėjo %s prieš %s
548 label_updated_time_by: Atnaujino %s %s atgal
549 label_updated_time: Atnaujinta prieš %s
656 label_added_time_by: "Pridėjo {{author}} prieš {{age}}"
657 label_updated_time_by: "Atnaujino {{author}} {{age}} atgal"
658 label_updated_time: "Atnaujinta prieš {{value}}"
550 659 label_jump_to_a_project: Šuolis į projektą...
551 660 label_file_plural: Bylos
552 661 label_changeset_plural: Changesets
@@ -563,7 +672,7 label_user_mail_no_self_notified: "Nenoriu būti informuotas apie pakeitimus, ku
563 672 label_registration_activation_by_email: "paskyros aktyvacija per e-paštą"
564 673 label_registration_manual_activation: "rankinė paskyros aktyvacija"
565 674 label_registration_automatic_activation: "automatinė paskyros aktyvacija"
566 label_display_per_page: '%s įrašų puslapyje'
675 label_display_per_page: "{{value}} įrašų puslapyje'"
567 676 label_age: Amžius
568 677 label_change_properties: Pakeisti nustatymus
569 678 label_general: Bendri
@@ -630,33 +739,33 text_select_mail_notifications: Išrinkite veiksmus, apie kuriuos būtų praneš
630 739 text_regexp_info: pvz. ^[A-Z0-9]+$
631 740 text_min_max_length_info: 0 reiškia jokių apribojimų
632 741 text_project_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti šį projektą ir visus susijusius duomenis?
633 text_subprojects_destroy_warning: 'Šis(ie) subprojektas(ai): %s taip pat bus ištrintas(i).'
742 text_subprojects_destroy_warning: "Šis(ie) subprojektas(ai): {{value}} taip pat bus ištrintas(i).'"
634 743 text_workflow_edit: Išrinkite vaidmenį ir pėdsekį, kad redaguotumėte darbų eigą
635 744 text_are_you_sure: Ar esate įsitikinęs?
636 text_journal_changed: pakeistas iš %s į %s
637 text_journal_set_to: nustatyta į %s
745 text_journal_changed: "pakeistas {{old}} į {{new}}"
746 text_journal_set_to: "nustatyta į {{value}}"
638 747 text_journal_deleted: ištrintas
639 748 text_tip_task_begin_day: užduotis, prasidedanti šią dieną
640 749 text_tip_task_end_day: užduotis, pasibaigianti šią dieną
641 750 text_tip_task_begin_end_day: užduotis, prasidedanti ir pasibaigianti šią dieną
642 751 text_project_identifier_info: 'Mažosios raidės (a-z), skaičiai ir brūkšniai galimi.<br/>Išsaugojus, identifikuotojas negali būti keičiamas.'
643 text_caracters_maximum: %d simbolių maksimumas.
644 text_caracters_minimum: Turi būti mažiausiai %d simbolių ilgio.
645 text_length_between: Ilgis tarp %d ir %d simbolių.
752 text_caracters_maximum: "{{count}} simbolių maksimumas."
753 text_caracters_minimum: "Turi būti mažiausiai {{count}} simbolių ilgio."
754 text_length_between: "Ilgis tarp {{min}} ir {{max}} simbolių."
646 755 text_tracker_no_workflow: Jokia darbų eiga neapibrėžta šiam pėdsekiui
647 756 text_unallowed_characters: Neleistini simboliai
648 757 text_comma_separated: Leistinos kelios reikšmės (atskirtos kableliu).
649 758 text_issues_ref_in_commit_messages: Darbų pavedimų(commit) nurodymas ir fiksavimas pranešimuose
650 text_issue_added: Darbas %s buvo praneštas (by %s).
651 text_issue_updated: Darbas %s buvo atnaujintas (by %s).
759 text_issue_added: "Darbas {{id}} buvo praneštas (by {{author}})."
760 text_issue_updated: "Darbas {{id}} buvo atnaujintas (by {{author}})."
652 761 text_wiki_destroy_confirmation: Ar esate įsitikinęs, kad jūs norite pašalinti wiki ir visą jos turinį?
653 text_issue_category_destroy_question: Kai kurie darbai (%d) yra paskirti šiai kategorijai. Ką jūs norite daryti?
762 text_issue_category_destroy_question: "Kai kurie darbai ({{count}}) yra paskirti šiai kategorijai. jūs norite daryti?"
654 763 text_issue_category_destroy_assignments: Pašalinti kategorijos užduotis
655 764 text_issue_category_reassign_to: Iš naujo priskirti darbus šiai kategorijai
656 765 text_user_mail_option: "neišrinktiems projektams, jūs tiktai gausite pranešimus apie įvykius, kuriuos jūs stebite, arba į kuriuos esate įtrauktas (pvz. darbai, jūs esate autorius ar įgaliotinis)."
657 766 text_no_configuration_data: "Vaidmenys, pėdsekiai, darbų būsenos ir darbų eiga dar nebuvo konfigūruoti.\nGriežtai rekomenduojam užkrauti numatytąją(default)konfiguraciją. Užkrovus, galėsite modifikuoti."
658 767 text_load_default_configuration: Užkrauti numatytąj konfiguraciją
659 text_status_changed_by_changeset: Pakeista %s revizijoi.
768 text_status_changed_by_changeset: "Pakeista {{value}} revizijoi."
660 769 text_issues_destroy_confirmation: 'Ar jūs tikrai norite panaikinti pažimėtą(us) darbą(us)?'
661 770 text_select_project_modules: 'Parinkite modulius, kuriuos norite naudoti šiame projekte:'
662 771 text_default_administrator_account_changed: Administratoriaus numatyta paskyra pakeista
@@ -666,8 +775,8 text_destroy_time_entries_question: Naikinamam darbui paskelbta %.02f valandų.
666 775 text_destroy_time_entries: Ištrinti paskelbtas valandas
667 776 text_assign_time_entries_to_project: Priskirti valandas prie projekto
668 777 text_reassign_time_entries: 'Priskirti paskelbtas valandas šiam darbui:'
669 text_user_wrote: '%s parašė:'
670 text_enumeration_destroy_question: '%d objektai priskirti šiai reikšmei.'
778 text_user_wrote: "{{value}} parašė:'"
779 text_enumeration_destroy_question: "{{count}} objektai priskirti šiai reikšmei.'"
671 780 text_enumeration_category_reassign_to: 'Priskirti juos šiai reikšmei:'
672 781 text_email_delivery_not_configured: "Email pristatymas nesukonfigūruotas , ir perspėjimai neaktyvus.\nSukonfigūruokyte savo SMTP serverį byloje config/email.yml ir perleiskyte programą kad pritaikyti pakeitymus."
673 782 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."
@@ -699,13 +808,9 enumeration_issue_priorities: Darbo prioritetai
699 808 enumeration_doc_categories: Dokumento kategorijos
700 809 enumeration_activities: Veiklos (laiko sekimas)
701 810 text_plugin_assets_writable: Plugin assets directory writable
702 warning_attachments_not_saved: "%d file(s) could not be saved."
811 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
703 812 button_create_and_continue: Create and continue
704 813 text_custom_field_possible_values_info: 'One line for each value'
705 814 label_display: Display
706 815 field_editable: Editable
707 816 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
708 field_identity_url: OpenID URL
709 setting_openid: Allow OpenID login and registration
710 label_login_with_open_id_option: or login with OpenID
711 field_watcher: Watcher
@@ -1,38 +1,99
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
2 actionview_datehelper_select_day_prefix:
3 actionview_datehelper_select_month_names: Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December
4 actionview_datehelper_select_month_names_abbr: Jan,Feb,Maa,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec
5 actionview_datehelper_select_month_prefix:
6 actionview_datehelper_select_year_prefix:
7 actionview_datehelper_time_in_words_day: 1 dag
8 actionview_datehelper_time_in_words_day_plural: %d dagen
9 actionview_datehelper_time_in_words_hour_about: ongeveer een uur
10 actionview_datehelper_time_in_words_hour_about_plural: ongeveer %d uur
11 actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur
12 actionview_datehelper_time_in_words_minute: 1 minuut
13 actionview_datehelper_time_in_words_minute_half: een halve minuut
14 actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut
15 actionview_datehelper_time_in_words_minute_plural: %d minuten
16 actionview_datehelper_time_in_words_minute_single: 1 minuut
17 actionview_datehelper_time_in_words_second_less_than: minder dan een seconde
18 actionview_datehelper_time_in_words_second_less_than_plural: minder dan %d seconden
1 nl:
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 ]
19
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: "staat niet in de lijst"
72 exclusion: "is gereserveerd"
73 invalid: "is ongeldig"
74 confirmation: "komt niet overeen met bevestiging"
75 accepted: "moet geaccepteerd worden"
76 empty: "mag niet leeg zijn"
77 blank: "mag niet blanco zijn"
78 too_long: "is te lang"
79 too_short: "is te kort"
80 wrong_length: "heeft een onjuiste lengte"
81 taken: "is al in gebruik"
82 not_a_number: "is geen getal"
83 not_a_date: "is geen valide 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: "moet na de startdatum liggen"
92 not_same_project: "hoort niet bij hetzelfde project"
93 circular_dependency: "Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben"
94
19 95 actionview_instancetag_blank_option: Selecteer
20 activerecord_error_accepted: moet geaccepteerd worden
21 activerecord_error_blank: mag niet blanco zijn
22 activerecord_error_circular_dependency: Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben
23 activerecord_error_confirmation: komt niet overeen met bevestiging
24 activerecord_error_empty: mag niet leeg zijn
25 activerecord_error_exclusion: is gereserveerd
26 activerecord_error_greater_than_start_date: moet na de startdatum liggen
27 activerecord_error_inclusion: staat niet in de lijst
28 activerecord_error_invalid: is ongeldig
29 activerecord_error_not_a_date: is geen valide datum
30 activerecord_error_not_a_number: is geen getal
31 activerecord_error_not_same_project: hoort niet bij hetzelfde project
32 activerecord_error_taken: is al in gebruik
33 activerecord_error_too_long: is te lang
34 activerecord_error_too_short: is te kort
35 activerecord_error_wrong_length: heeft een onjuiste lengte
96
36 97 button_activate: Activeer
37 98 button_add: Voeg toe
38 99 button_annotate: Annoteer
@@ -95,10 +156,10 default_tracker_support: Support
95 156 enumeration_activities: Activiteiten (tijdtracking)
96 157 enumeration_doc_categories: Documentcategorieën
97 158 enumeration_issue_priorities: Issueprioriteiten
98 error_can_t_load_default_data: "De standaard configuratie kon niet worden geladen: %s"
159 error_can_t_load_default_data: "De standaard configuratie kon niet worden geladen: {{value}}"
99 160 error_issue_not_found_in_project: 'Deze issue is niet gevonden of behoort niet toe tot dit project.'
100 161 error_scm_annotate: "Er kan geen commentaar toegevoegd worden."
101 error_scm_command_failed: "Er trad een fout op tijdens de poging om verbinding te maken met de repository: %s"
162 error_scm_command_failed: "Er trad een fout op tijdens de poging om verbinding te maken met de repository: {{value}}"
102 163 error_scm_not_found: "Deze ingang of revisie bestaat niet in de repository."
103 164 field_account: Account
104 165 field_activity: Activiteit
@@ -188,14 +249,7 field_version: Versie
188 249 general_csv_decimal_separator: '.'
189 250 general_csv_encoding: ISO-8859-1
190 251 general_csv_separator: ','
191 general_day_names: Maandag, Dinsdag, Woensdag, Donderdag, Vrijdag, Zaterdag, Zondag
192 252 general_first_day_of_week: '7'
193 general_fmt_age: %d jr
194 general_fmt_age_plural: %d jr
195 general_fmt_date: %%d/%%m/%%Y
196 general_fmt_datetime: %%d/%%m/%%Y %%H:%%M
197 general_fmt_datetime_short: %%d %%b, %%H:%%M
198 general_fmt_time: %%H:%%M
199 253 general_lang_name: 'Nederlands'
200 254 general_pdf_encoding: ISO-8859-1
201 255 general_text_No: 'Nee'
@@ -203,19 +257,19 general_text_Yes: 'Ja'
203 257 general_text_no: 'nee'
204 258 general_text_yes: 'ja'
205 259 gui_validation_error: 1 fout
206 gui_validation_error_plural: %d fouten
260 gui_validation_error_plural: "{{count}} fouten"
207 261 label_activity: Activiteit
208 262 label_add_another_file: Ander bestand toevoegen
209 263 label_add_note: Voeg een notitie toe
210 264 label_added: toegevoegd
211 label_added_time_by: Toegevoegd door %s %s geleden
265 label_added_time_by: "Toegevoegd door {{author}} {{age}} geleden"
212 266 label_administration: Administratie
213 267 label_age: Leeftijd
214 268 label_ago: dagen geleden
215 269 label_all: alle
216 270 label_all_time: alles
217 271 label_all_words: Alle woorden
218 label_and_its_subprojects: %s en zijn subprojecten.
272 label_and_its_subprojects: "{{value}} en zijn subprojecten."
219 273 label_applied_status: Toegekende status
220 274 label_assigned_to_me_issues: Aan mij toegewezen issues
221 275 label_associated_revisions: Geassociëerde revisies
@@ -248,11 +302,27 label_changeset_plural: Changesets
248 302 label_chronological_order: In chronologische volgorde
249 303 label_closed_issues: gesloten
250 304 label_closed_issues_plural: gesloten
305 label_x_open_issues_abbr_on_total:
306 zero: 0 open / {{total}}
307 one: 1 open / {{total}}
308 other: "{{count}} open / {{total}}"
309 label_x_open_issues_abbr:
310 zero: 0 open
311 one: 1 open
312 other: "{{count}} open"
313 label_x_closed_issues_abbr:
314 zero: 0 closed
315 one: 1 closed
316 other: "{{count}} closed"
251 317 label_comment: Commentaar
252 318 label_comment_add: Voeg commentaar toe
253 319 label_comment_added: Commentaar toegevoegd
254 320 label_comment_delete: Verwijder commentaar
255 321 label_comment_plural: Commentaar
322 label_x_comments:
323 zero: no comments
324 one: 1 comment
325 other: "{{count}} comments"
256 326 label_commits_per_author: Commits per auteur
257 327 label_commits_per_month: Commits per maand
258 328 label_confirmation: Bevestiging
@@ -276,13 +346,13 label_details: Details
276 346 label_diff_inline: inline
277 347 label_diff_side_by_side: naast elkaar
278 348 label_disabled: uitgeschakeld
279 label_display_per_page: 'Per pagina: %s'
349 label_display_per_page: "Per pagina: {{value}}'"
280 350 label_document: Document
281 351 label_document_added: Document toegevoegd
282 352 label_document_new: Nieuw document
283 353 label_document_plural: Documenten
284 label_download: %d Download
285 label_download_plural: %d Downloads
354 label_download: "{{count}} Download"
355 label_download_plural: "{{count}} Downloads"
286 356 label_downloads_abbr: D/L
287 357 label_duplicated_by: gedupliceerd door
288 358 label_duplicates: dupliceert
@@ -294,10 +364,10 label_environment: Omgeving
294 364 label_equals: is gelijk
295 365 label_example: Voorbeeld
296 366 label_export_to: Exporteer naar
297 label_f_hour: %.2f uur
298 label_f_hour_plural: %.2f uren
367 label_f_hour: "{{value}} uur"
368 label_f_hour_plural: "{{value}} uren"
299 369 label_feed_plural: Feeds
300 label_feeds_access_key_created_on: RSS toegangssleutel %s geleden gemaakt.
370 label_feeds_access_key_created_on: "RSS toegangssleutel {{value}} geleden gemaakt."
301 371 label_file_added: Bericht toegevoegd
302 372 label_file_plural: Bestanden
303 373 label_filter_add: Voeg filter toe
@@ -334,15 +404,13 label_issue_tracking: Issue-tracking
334 404 label_issue_updated: Issue bijgewerkt
335 405 label_issue_view_all: Bekijk alle issues
336 406 label_issue_watchers: Monitoren
337 label_issues_by: Issues door %s
407 label_issues_by: "Issues door {{value}}"
338 408 label_jump_to_a_project: Ga naar een project...
339 409 label_language_based: Taal gebaseerd
340 label_last_changes: laatste %d wijzigingen
410 label_last_changes: "laatste {{count}} wijzigingen"
341 411 label_last_login: Laatste bezoek
342 412 label_last_month: laatste maand
343 label_last_n_days: %d dagen geleden
344 label_last_updates: Laatste wijziging
345 label_last_updates_plural: %d laatste wijziging
413 label_last_n_days: "{{count}} dagen geleden"
346 414 label_last_week: vorige week
347 415 label_latest_revision: Meest recente revisie
348 416 label_latest_revision_plural: Meest recente revisies
@@ -363,8 +431,8 label_message_new: Nieuw bericht
363 431 label_message_plural: Berichten
364 432 label_message_posted: Bericht toegevoegd
365 433 label_min_max_length: Min-max lengte
366 label_modification: %d wijziging
367 label_modification_plural: %d wijzigingen
434 label_modification: "{{count}} wijziging"
435 label_modification_plural: "{{count}} wijzigingen"
368 436 label_modified: gewijzigd
369 437 label_module_plural: Modules
370 438 label_month: Maand
@@ -389,7 +457,6 label_nobody: niemand
389 457 label_none: geen
390 458 label_not_contains: bevat niet
391 459 label_not_equals: is niet gelijk
392 label_on: 'van'
393 460 label_open_issues: open
394 461 label_open_issues_plural: open
395 462 label_optional_description: Optionele beschrijving
@@ -413,6 +480,10 label_project_all: Alle projecten
413 480 label_project_latest: Nieuwste projecten
414 481 label_project_new: Nieuw project
415 482 label_project_plural: Projecten
483 label_x_projects:
484 zero: no projects
485 one: 1 project
486 other: "{{count}} projects"
416 487 label_public_projects: Publieke projecten
417 488 label_query: Eigen zoekvraag
418 489 label_query_new: Nieuwe zoekvraag
@@ -439,9 +510,9 label_reverse_chronological_order: In omgekeerde chronologische volgorde
439 510 label_revision: Revisie
440 511 label_revision_plural: Revisies
441 512 label_roadmap: Roadmap
442 label_roadmap_due_in: Voldaan in %s
513 label_roadmap_due_in: "Voldaan in {{value}}"
443 514 label_roadmap_no_issues: Geen issues voor deze versie
444 label_roadmap_overdue: %s over tijd
515 label_roadmap_overdue: "{{value}} over tijd"
445 516 label_role: Rol
446 517 label_role_and_permissions: Rollen en permissies
447 518 label_role_new: Nieuwe rol
@@ -453,7 +524,7 label_send_information: Stuur accountinformatie naar de gebruiker
453 524 label_send_test_email: Stuur een test e-mail
454 525 label_settings: Instellingen
455 526 label_show_completed_versions: Toon afgeronde versies
456 label_sort_by: Sorteer op %s
527 label_sort_by: "Sorteer op {{value}}"
457 528 label_sort_higher: Verplaats naar boven
458 529 label_sort_highest: Verplaats naar begin
459 530 label_sort_lower: Verplaats naar beneden
@@ -477,11 +548,11 label_total: Totaal
477 548 label_tracker: Tracker
478 549 label_tracker_new: Nieuwe tracker
479 550 label_tracker_plural: Trackers
480 label_updated_time: %s geleden bijgewerkt
551 label_updated_time: "{{value}} geleden bijgewerkt"
481 552 label_updated_time_by: %2$s geleden bijgewerkt door %1$s
482 553 label_used_by: Gebruikt door
483 554 label_user: Gebruiker
484 label_user_activity: "%s's activiteit"
555 label_user_activity: "{{value}}'s activiteit"
485 556 label_user_mail_no_self_notified: "Ik wil niet verwittigd worden van wijzigingen die ik zelf maak."
486 557 label_user_mail_option_all: "Bij elk gebeurtenis in al mijn projecten..."
487 558 label_user_mail_option_none: "Alleen in de dingen die ik monitor of in betrokken ben"
@@ -503,16 +574,16 label_wiki_page_plural: Wikipagina's
503 574 label_workflow: Workflow
504 575 label_year: Jaar
505 576 label_yesterday: gisteren
506 mail_body_account_activation_request: 'Een nieuwe gebruiker (%s) is geregistreerd. Zijn account wacht op uw akkoord:'
577 mail_body_account_activation_request: "Een nieuwe gebruiker ({{value}}) is geregistreerd. Zijn account wacht op uw akkoord:'"
507 578 mail_body_account_information: Uw account gegevens
508 mail_body_account_information_external: U kunt uw account (%s) gebruiken om in te loggen.
579 mail_body_account_information_external: "U kunt uw account ({{value}}) gebruiken om in te loggen."
509 580 mail_body_lost_password: 'Gebruik de volgende link om uw wachtwoord te wijzigen:'
510 581 mail_body_register: 'Gebruik de volgende link om uw account te activeren:'
511 mail_body_reminder: "%d issue(s) die aan u toegewezen zijn en voldaan moeten zijn in de komende %d dagen:"
512 mail_subject_account_activation_request: %s accountactivatieverzoek
513 mail_subject_lost_password: uw %s wachtwoord
514 mail_subject_register: uw %s accountactivatie
515 mail_subject_reminder: "%d issue(s) die voldaan moeten zijn in de komende dagen."
582 mail_body_reminder: "{{count}} issue(s) die aan u toegewezen zijn en voldaan moeten zijn in de komende {{days}} dagen:"
583 mail_subject_account_activation_request: "{{value}} accountactivatieverzoek"
584 mail_subject_lost_password: "uw {{value}} wachtwoord"
585 mail_subject_register: "uw {{value}} accountactivatie"
586 mail_subject_reminder: "{{count}} issue(s) die voldaan moeten zijn in de komende dagen."
516 587 notice_account_activated: uw account is geactiveerd. u kunt nu inloggen.
517 588 notice_account_invalid_creditentials: Incorrecte gebruikersnaam of wachtwoord
518 589 notice_account_lost_email_sent: Er is een e-mail naar u verstuurd met instructies over het kiezen van een nieuw wachtwoord.
@@ -524,9 +595,9 notice_account_updated: Account is met succes gewijzigd
524 595 notice_account_wrong_password: Incorrect wachtwoord
525 596 notice_can_t_change_password: Dit account gebruikt een externe bron voor authenticatie. Het is niet mogelijk om het wachtwoord te veranderen.
526 597 notice_default_data_loaded: Standaard configuratie succesvol geladen.
527 notice_email_error: Er is een fout opgetreden tijdens het versturen van (%s)
528 notice_email_sent: Een e-mail werd verstuurd naar %s
529 notice_failed_to_save_issues: "Fout bij bewaren van %d issue(s) (%d geselecteerd): %s."
598 notice_email_error: "Er is een fout opgetreden tijdens het versturen van ({{value}})"
599 notice_email_sent: "Een e-mail werd verstuurd naar {{value}}"
600 notice_failed_to_save_issues: "Fout bij bewaren van {{count}} issue(s) ({{total}} geselecteerd): {{ids}}."
530 601 notice_feeds_access_key_reseted: Je RSS toegangssleutel werd gereset.
531 602 notice_file_not_found: De pagina die u probeerde te benaderen bestaat niet of is verwijderd.
532 603 notice_locking_conflict: De gegevens zijn gewijzigd door een andere gebruiker.
@@ -637,8 +708,8 status_locked: gelockt
637 708 status_registered: geregistreerd
638 709 text_are_you_sure: Weet u het zeker?
639 710 text_assign_time_entries_to_project: Gerapporteerde uren toevoegen aan dit project
640 text_caracters_maximum: %d van maximum aantal tekens.
641 text_caracters_minimum: Moet minstens %d karakters lang zijn.
711 text_caracters_maximum: "{{count}} van maximum aantal tekens."
712 text_caracters_minimum: "Moet minstens {{count}} karakters lang zijn."
642 713 text_comma_separated: Meerdere waarden toegestaan (kommagescheiden).
643 714 text_default_administrator_account_changed: Standaard beheerderaccount gewijzigd
644 715 text_destroy_time_entries: Verwijder gerapporteerde uren
@@ -646,19 +717,19 text_destroy_time_entries_question: %.02f uren werden gerapporteerd op de issue(
646 717 text_diff_truncated: '... Deze diff werd afgekort omdat het de maximale weer te geven karakters overschreed.'
647 718 text_email_delivery_not_configured: "E-mailbezorging is niet geconfigureerd. Notificaties zijn uitgeschakeld.\nConfigureer uw SMTP server in config/email.yml en herstart de applicatie om dit te activeren."
648 719 text_enumeration_category_reassign_to: 'Wijs de volgende waarde toe:'
649 text_enumeration_destroy_question: '%d objecten zijn toegewezen aan deze waarde.'
720 text_enumeration_destroy_question: "{{count}} objecten zijn toegewezen aan deze waarde.'"
650 721 text_file_repository_writable: Bestandsrepository beschrijfbaar
651 text_issue_added: Issue %s is gerapporteerd (door %s).
722 text_issue_added: "Issue {{id}} is gerapporteerd (door {{author}})."
652 723 text_issue_category_destroy_assignments: Verwijder toewijzingen aan deze categorie
653 text_issue_category_destroy_question: Er zijn issues (%d) aan deze categorie toegewezen. Wat wilt u hiermee doen ?
724 text_issue_category_destroy_question: "Er zijn issues ({{count}}) aan deze categorie toegewezen. Wat wilt u hiermee doen ?"
654 725 text_issue_category_reassign_to: Issues opnieuw toewijzen aan deze categorie
655 text_issue_updated: Issue %s is gewijzigd (door %s).
726 text_issue_updated: "Issue {{id}} is gewijzigd (door {{author}})."
656 727 text_issues_destroy_confirmation: 'Weet u zeker dat u deze issue(s) wil verwijderen?'
657 728 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commitberichten
658 text_journal_changed: gewijzigd van %s naar %s
729 text_journal_changed: "gewijzigd van {{old}} naar {{new}}"
659 730 text_journal_deleted: verwijderd
660 text_journal_set_to: ingesteld op %s
661 text_length_between: Lengte tussen %d en %d tekens.
731 text_journal_set_to: "ingesteld op {{value}}"
732 text_length_between: "Lengte tussen {{min}} en {{max}} tekens."
662 733 text_load_default_configuration: Laad de standaardconfiguratie
663 734 text_min_max_length_info: 0 betekent geen restrictie
664 735 text_no_configuration_data: "Rollen, trackers, issue statussen en workflows zijn nog niet geconfigureerd.\nHet is ten zeerste aangeraden om de standaard configuratie in te laden. U kunt deze aanpassen nadat deze is ingeladen."
@@ -671,24 +742,20 text_repository_usernames_mapping: "Koppel de Redminegebruikers aan gebruikers i
671 742 text_rmagick_available: RMagick beschikbaar (optioneel)
672 743 text_select_mail_notifications: Selecteer acties waarvoor mededelingen via mail moeten worden verstuurd.
673 744 text_select_project_modules: 'Selecteer de modules die u wilt gebruiken voor dit project:'
674 text_status_changed_by_changeset: Toegepast in changeset %s.
675 text_subprojects_destroy_warning: 'De subprojecten: %s zullen ook verwijderd worden.'
745 text_status_changed_by_changeset: "Toegepast in changeset {{value}}."
746 text_subprojects_destroy_warning: "De subprojecten: {{value}} zullen ook verwijderd worden.'"
676 747 text_tip_task_begin_day: taak die op deze dag begint
677 748 text_tip_task_begin_end_day: taak die op deze dag begint en eindigt
678 749 text_tip_task_end_day: taak die op deze dag eindigt
679 750 text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
680 751 text_unallowed_characters: Niet toegestane tekens
681 752 text_user_mail_option: "Bij niet-geselecteerde projecten zult u enkel notificaties ontvangen voor issues die u monitort of waar u bij betrokken bent (als auteur of toegewezen persoon)."
682 text_user_wrote: '%s schreef:'
753 text_user_wrote: "{{value}} schreef:'"
683 754 text_wiki_destroy_confirmation: Weet u zeker dat u deze wiki en zijn inhoud wenst te verwijderen?
684 755 text_workflow_edit: Selecteer een rol en een tracker om de workflow te wijzigen
685 warning_attachments_not_saved: "%d bestand(en) konden niet opgeslagen worden."
756 warning_attachments_not_saved: "{{count}} bestand(en) konden niet opgeslagen worden."
686 757 button_create_and_continue: Create and continue
687 758 text_custom_field_possible_values_info: 'One line for each value'
688 759 label_display: Display
689 760 field_editable: Editable
690 761 setting_repository_log_display_limit: Maximum number of revisions displayed on file log
691 field_identity_url: OpenID URL
692 setting_openid: Allow OpenID login and registration
693 label_login_with_open_id_option: or login with OpenID
694 field_watcher: Watcher
@@ -1,47 +1,104
1 _gloc_rule_default: '|n| n==1 ? "" : "_plural" '
1 # Norwegian, norsk bokmål, by irb.no
2 "no":
3 support:
4 array:
5 sentence_connector: "og"
6 date:
7 formats:
8 default: "%d.%m.%Y"
9 short: "%e. %b"
10 long: "%e. %B %Y"
11 day_names: [søndag, mandag, tirsdag, onsdag, torsdag, fredag, lørdag]
12 abbr_day_names: [søn, man, tir, ons, tor, fre, lør]
13 month_names: [~, januar, februar, mars, april, mai, juni, juli, august, september, oktober, november, desember]
14 abbr_month_names: [~, jan, feb, mar, apr, mai, jun, jul, aug, sep, okt, nov, des]
15 order: [:day, :month, :year]
16 time:
17 formats:
18 default: "%A, %e. %B %Y, %H:%M"
19 time: "%H:%M"
20 short: "%e. %B, %H:%M"
21 long: "%A, %e. %B %Y, %H:%M"
22 am: ""
23 pm: ""
24 datetime:
25 distance_in_words:
26 half_a_minute: "et halvt minutt"
27 less_than_x_seconds:
28 one: "mindre enn 1 sekund"
29 other: "mindre enn {{count}} sekunder"
30 x_seconds:
31 one: "1 sekund"
32 other: "{{count}} sekunder"
33 less_than_x_minutes:
34 one: "mindre enn 1 minutt"
35 other: "mindre enn {{count}} minutter"
36 x_minutes:
37 one: "1 minutt"
38 other: "{{count}} minutter"
39 about_x_hours:
40 one: "rundt 1 time"
41 other: "rundt {{count}} timer"
42 x_days:
43 one: "1 dag"
44 other: "{{count}} dager"
45 about_x_months:
46 one: "rundt 1 måned"
47 other: "rundt {{count}} måneder"
48 x_months:
49 one: "1 måned"
50 other: "{{count}} måneder"
51 about_x_years:
52 one: "rundt 1 år"
53 other: "rundt {{count}} år"
54 over_x_years:
55 one: "over 1 år"
56 other: "over {{count}} år"
57 number:
58 format:
59 precision: 2
60 separator: "."
61 delimiter: ","
62 currency:
63 format:
64 unit: "kr"
65 format: "%n %u"
66 precision:
67 format:
68 delimiter: ""
69 precision: 4
70 activerecord:
71 errors:
72 template:
73 header: "kunne ikke lagre {{model}} grunn av {{count}} feil."
74 body: "det oppstod problemer i følgende felt:"
75 messages:
76 inclusion: "er ikke inkludert i listen"
77 exclusion: "er reservert"
78 invalid: "er ugyldig"
79 confirmation: "passer ikke bekreftelsen"
80 accepted: "må være akseptert"
81 empty: "kan ikke være tom"
82 blank: "kan ikke være blank"
83 too_long: "er for lang (maksimum {{count}} tegn)"
84 too_short: "er for kort (minimum {{count}} tegn)"
85 wrong_length: "er av feil lengde (maksimum {{count}} tegn)"
86 taken: "er allerede i bruk"
87 not_a_number: "er ikke et tall"
88 greater_than: "må være større enn {{count}}"
89 greater_than_or_equal_to: "må være større enn eller lik {{count}}"
90 equal_to: "må være lik {{count}}"
91 less_than: "må være mindre enn {{count}}"
92 less_than_or_equal_to: "må være mindre enn eller lik {{count}}"
93 odd: "må være oddetall"
94 even: "må være partall"
95 greater_than_start_date: "må være større enn startdato"
96 not_same_project: "hører ikke til samme prosjekt"
97 circular_dependency: "Denne relasjonen ville lagd en sirkulær avhengighet"
2 98
3 actionview_datehelper_select_day_prefix:
4 actionview_datehelper_select_month_names: Januar,Februar,Mars,April,Mai,Juni,Juli,August,September,Oktober,November,Desember
5 actionview_datehelper_select_month_names_abbr: Jan,Feb,Mar,Apr,Mai,Jun,Jul,Aug,Sep,Okt,Nov,Des
6 actionview_datehelper_select_month_prefix:
7 actionview_datehelper_select_year_prefix:
8 actionview_datehelper_time_in_words_day: 1 dag
9 actionview_datehelper_time_in_words_day_plural: %d dager
10 actionview_datehelper_time_in_words_hour_about: ca. en time
11 actionview_datehelper_time_in_words_hour_about_plural: ca. %d timer
12 actionview_datehelper_time_in_words_hour_about_single: ca. en time
13 actionview_datehelper_time_in_words_minute: 1 minutt
14 actionview_datehelper_time_in_words_minute_half: et halvt minutt
15 actionview_datehelper_time_in_words_minute_less_than: mindre enn et minutt
16 actionview_datehelper_time_in_words_minute_plural: %d minutter
17 actionview_datehelper_time_in_words_minute_single: 1 minutt
18 actionview_datehelper_time_in_words_second_less_than: mindre enn et sekund
19 actionview_datehelper_time_in_words_second_less_than_plural: mindre enn %d sekunder
20 actionview_instancetag_blank_option: Vennligst velg
21 99
22 activerecord_error_inclusion: finnes ikke i listen
23 activerecord_error_exclusion: er reservert
24 activerecord_error_invalid: er ugyldig
25 activerecord_error_confirmation: stemmer ikke med bekreftelsen
26 activerecord_error_accepted: må aksepteres
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 langt
30 activerecord_error_too_short: er for kort
31 activerecord_error_wrong_length: har feil lengde
32 activerecord_error_taken: er opptatt
33 activerecord_error_not_a_number: er ikke et nummer
34 activerecord_error_not_a_date: er ikke en gyldig dato
35 activerecord_error_greater_than_start_date: må være større enn startdato
36 activerecord_error_not_same_project: hører ikke til samme prosjekt
37 activerecord_error_circular_dependency: Denne relasjonen ville lagd en sirkulær avhengighet
100 actionview_instancetag_blank_option: Vennligst velg
38 101
39 general_fmt_age: %d år
40 general_fmt_age_plural: %d år
41 general_fmt_date: %%d. %%B %%Y
42 general_fmt_datetime: %%d. %%B %%H:%%M
43 general_fmt_datetime_short: %%d.%%m.%%Y, %%H:%%M
44 general_fmt_time: %%H:%%M
45 102 general_text_No: 'Nei'
46 103 general_text_Yes: 'Ja'
47 104 general_text_no: 'nei'
@@ -51,7 +108,6 general_csv_separator: ','
51 108 general_csv_decimal_separator: '.'
52 109 general_csv_encoding: ISO-8859-1
53 110 general_pdf_encoding: ISO-8859-1
54 general_day_names: Mandag,Tirsdag,Onsdag,Torsdag,Fredag,Lørdag,Søndag
55 111 general_first_day_of_week: '1'
56 112
57 113 notice_account_updated: Kontoen er oppdatert.
@@ -70,33 +126,33 notice_successful_connection: Koblet opp.
70 126 notice_file_not_found: Siden du forsøkte å vise eksisterer ikke, eller er slettet.
71 127 notice_locking_conflict: Data har blitt oppdatert av en annen bruker.
72 128 notice_not_authorized: Du har ikke adgang til denne siden.
73 notice_email_sent: En e-post er sendt til %s
74 notice_email_error: En feil oppstod under sending av e-post (%s)
129 notice_email_sent: "En e-post er sendt til {{value}}"
130 notice_email_error: "En feil oppstod under sending av e-post ({{value}})"
75 131 notice_feeds_access_key_reseted: Din RSS-tilgangsnøkkel er nullstilt.
76 notice_failed_to_save_issues: "Lykkes ikke å lagre %d sak(er) %d valgt: %s."
132 notice_failed_to_save_issues: "Lykkes ikke å lagre {{count}} sak(er) {{total}} valgt: {{ids}}."
77 133 notice_no_issue_selected: "Ingen sak valgt! Vennligst merk sakene du vil endre."
78 134 notice_account_pending: "Din konto ble opprettet og avventer administrativ godkjenning."
79 135 notice_default_data_loaded: Standardkonfigurasjonen lastet inn.
80 136
81 error_can_t_load_default_data: "Standardkonfigurasjonen kunne ikke lastes inn: %s"
137 error_can_t_load_default_data: "Standardkonfigurasjonen kunne ikke lastes inn: {{value}}"
82 138 error_scm_not_found: "Elementet og/eller revisjonen eksisterer ikke i depoet."
83 error_scm_command_failed: "En feil oppstod under tilkobling til depoet: %s"
139 error_scm_command_failed: "En feil oppstod under tilkobling til depoet: {{value}}"
84 140 error_scm_annotate: "Elementet eksisterer ikke, eller kan ikke noteres."
85 141 error_issue_not_found_in_project: 'Saken eksisterer ikke, eller hører ikke til dette prosjektet'
86 142
87 mail_subject_lost_password: Ditt %s passord
143 mail_subject_lost_password: "Ditt {{value}} passord"
88 144 mail_body_lost_password: 'Klikk følgende lenke for å endre ditt passord:'
89 mail_subject_register: %s kontoaktivering
145 mail_subject_register: "{{value}} kontoaktivering"
90 146 mail_body_register: 'Klikk følgende lenke for å aktivere din konto:'
91 mail_body_account_information_external: Du kan bruke din "%s"-konto for å logge inn.
147 mail_body_account_information_external: "Du kan bruke din {{value}}-konto for å logge inn."
92 148 mail_body_account_information: Informasjon om din konto
93 mail_subject_account_activation_request: %s kontoaktivering
94 mail_body_account_activation_request: 'En ny bruker (%s) er registrert, og avventer din godkjenning:'
95 mail_subject_reminder: "%d sak(er) har frist de kommende dagene"
96 mail_body_reminder: "%d sak(er) som er tildelt deg har frist de kommende %d dager:"
149 mail_subject_account_activation_request: "{{value}} kontoaktivering"
150 mail_body_account_activation_request: "En ny bruker ({{value}}) er registrert, og avventer din godkjenning:'"
151 mail_subject_reminder: "{{count}} sak(er) har frist de kommende dagene"
152 mail_body_reminder: "{{count}} sak(er) som er tildelt deg har frist de kommende {{days}} dager:"
97 153
98 154 gui_validation_error: 1 feil
99 gui_validation_error_plural: %d feil
155 gui_validation_error_plural: "{{count}} feil"
100 156
101 157 field_name: Navn
102 158 field_description: Beskrivelse
@@ -231,13 +287,17 label_user_new: Ny bruker
231 287 label_project: Prosjekt
232 288 label_project_new: Nytt prosjekt
233 289 label_project_plural: Prosjekter
290 label_x_projects:
291 zero: no projects
292 one: 1 project
293 other: "{{count}} projects"
234 294 label_project_all: Alle prosjekter
235 295 label_project_latest: Siste prosjekter
236 296 label_issue: Sak
237 297 label_issue_new: Ny sak
238 298 label_issue_plural: Saker
239 299 label_issue_view_all: Vis alle saker
240 label_issues_by: Saker etter %s
300 label_issues_by: "Saker etter {{value}}"
241 301 label_issue_added: Sak lagt til
242 302 label_issue_updated: Sak oppdatert
243 303 label_document: Dokument
@@ -282,8 +342,6 label_help: Hjelp
282 342 label_reported_issues: Rapporterte saker
283 343 label_assigned_to_me_issues: Saker tildelt meg
284 344 label_last_login: Sist innlogget
285 label_last_updates: Sist oppdatert
286 label_last_updates_plural: %d siste oppdaterte
287 345 label_registered_on: Registrert
288 346 label_activity: Aktivitet
289 347 label_overall_activity: All aktivitet
@@ -295,7 +353,7 label_auth_source: Autentifikasjonsmodus
295 353 label_auth_source_new: Ny autentifikasjonmodus
296 354 label_auth_source_plural: Autentifikasjonsmoduser
297 355 label_subproject_plural: Underprosjekter
298 label_and_its_subprojects: %s og dets underprosjekter
356 label_and_its_subprojects: "{{value}} og dets underprosjekter"
299 357 label_min_max_length: Min.-maks. lengde
300 358 label_list: Liste
301 359 label_date: Dato
@@ -306,8 +364,8 label_string: Tekst
306 364 label_text: Lang tekst
307 365 label_attribute: Attributt
308 366 label_attribute_plural: Attributter
309 label_download: %d Nedlasting
310 label_download_plural: %d Nedlastinger
367 label_download: "{{count}} Nedlasting"
368 label_download_plural: "{{count}} Nedlastinger"
311 369 label_no_data: Ingen data å vise
312 370 label_change_status: Endre status
313 371 label_history: Historikk
@@ -338,6 +396,18 label_open_issues: åpen
338 396 label_open_issues_plural: åpne
339 397 label_closed_issues: lukket
340 398 label_closed_issues_plural: lukkede
399 label_x_open_issues_abbr_on_total:
400 zero: 0 open / {{total}}
401 one: 1 open / {{total}}
402 other: "{{count}} open / {{total}}"
403 label_x_open_issues_abbr:
404 zero: 0 open
405 one: 1 open
406 other: "{{count}} open"
407 label_x_closed_issues_abbr:
408 zero: 0 closed
409 one: 1 closed
410 other: "{{count}} closed"
341 411 label_total: Total
342 412 label_permissions: Godkjenninger
343 413 label_current_status: Nåværende status
@@ -355,11 +425,15 label_calendar: Kalender
355 425 label_months_from: måneder fra
356 426 label_gantt: Gantt
357 427 label_internal: Intern
358 label_last_changes: siste %d endringer
428 label_last_changes: "siste {{count}} endringer"
359 429 label_change_view_all: Vis alle endringer
360 430 label_personalize_page: Tilpass denne siden
361 431 label_comment: Kommentar
362 432 label_comment_plural: Kommentarer
433 label_x_comments:
434 zero: no comments
435 one: 1 comment
436 other: "{{count}} comments"
363 437 label_comment_add: Legg til kommentar
364 438 label_comment_added: Kommentar lagt til
365 439 label_comment_delete: Slett kommentar
@@ -378,7 +452,7 label_all_time: all tid
378 452 label_yesterday: i går
379 453 label_this_week: denne uken
380 454 label_last_week: sist uke
381 label_last_n_days: siste %d dager
455 label_last_n_days: "siste {{count}} dager"
382 456 label_this_month: denne måneden
383 457 label_last_month: siste måned
384 458 label_this_year: dette året
@@ -392,8 +466,8 label_day_plural: dager
392 466 label_repository: Depot
393 467 label_repository_plural: Depoter
394 468 label_browse: Utforsk
395 label_modification: %d endring
396 label_modification_plural: %d endringer
469 label_modification: "{{count}} endring"
470 label_modification_plural: "{{count}} endringer"
397 471 label_revision: Revisjon
398 472 label_revision_plural: Revisjoner
399 473 label_associated_revisions: Assosierte revisjoner
@@ -404,14 +478,13 label_latest_revision: Siste revisjon
404 478 label_latest_revision_plural: Siste revisjoner
405 479 label_view_revisions: Vis revisjoner
406 480 label_max_size: Maksimum størrelse
407 label_on: 'av'
408 481 label_sort_highest: Flytt til toppen
409 482 label_sort_higher: Flytt opp
410 483 label_sort_lower: Flytt ned
411 484 label_sort_lowest: Flytt til bunnen
412 485 label_roadmap: Veikart
413 label_roadmap_due_in: Frist om %s
414 label_roadmap_overdue: %s over fristen
486 label_roadmap_due_in: "Frist om {{value}}"
487 label_roadmap_overdue: "{{value}} over fristen"
415 488 label_roadmap_no_issues: Ingen saker for denne versjonen
416 489 label_search: Søk
417 490 label_result_plural: Resultater
@@ -429,8 +502,8 label_feed_plural: Feeder
429 502 label_changes_details: Detaljer om alle endringer
430 503 label_issue_tracking: Sakssporing
431 504 label_spent_time: Brukt tid
432 label_f_hour: %.2f time
433 label_f_hour_plural: %.2f timer
505 label_f_hour: "{{value}} time"
506 label_f_hour_plural: "{{value}} timer"
434 507 label_time_tracking: Tidssporing
435 508 label_change_plural: Endringer
436 509 label_statistics: Statistikk
@@ -479,12 +552,12 label_week: Uke
479 552 label_date_from: Fra
480 553 label_date_to: Til
481 554 label_language_based: Basert på brukerens språk
482 label_sort_by: Sorter etter %s
555 label_sort_by: "Sorter etter {{value}}"
483 556 label_send_test_email: Send en e-post-test
484 label_feeds_access_key_created_on: RSS tilgangsnøkkel opprettet for %s siden
557 label_feeds_access_key_created_on: "RSS tilgangsnøkkel opprettet for {{value}} siden"
485 558 label_module_plural: Moduler
486 label_added_time_by: Lagt til av %s for %s siden
487 label_updated_time: Oppdatert for %s siden
559 label_added_time_by: "Lagt til av {{author}} for {{age}} siden"
560 label_updated_time: "Oppdatert for {{value}} siden"
488 561 label_jump_to_a_project: Gå til et prosjekt...
489 562 label_file_plural: Filer
490 563 label_changeset_plural: Endringssett
@@ -501,7 +574,7 label_user_mail_no_self_notified: "Jeg vil ikke bli varslet om endringer jeg sel
501 574 label_registration_activation_by_email: kontoaktivering pr. e-post
502 575 label_registration_manual_activation: manuell kontoaktivering
503 576 label_registration_automatic_activation: automatisk kontoaktivering
504 label_display_per_page: 'Pr. side: %s'
577 label_display_per_page: "Pr. side: {{value}}'"
505 578 label_age: Alder
506 579 label_change_properties: Endre egenskaper
507 580 label_general: Generell
@@ -563,33 +636,33 text_select_mail_notifications: Velg hendelser som skal varsles med e-post.
563 636 text_regexp_info: eg. ^[A-Z0-9]+$
564 637 text_min_max_length_info: 0 betyr ingen begrensning
565 638 text_project_destroy_confirmation: Er du sikker på at du vil slette dette prosjekter og alle relatert data ?
566 text_subprojects_destroy_warning: 'Underprojekt(ene): %s vil også bli slettet.'
639 text_subprojects_destroy_warning: "Underprojekt(ene): {{value}} vil også bli slettet.'"
567 640 text_workflow_edit: Velg en rolle og en sakstype for å endre arbeidsflyten
568 641 text_are_you_sure: Er du sikker ?
569 text_journal_changed: endret fra %s til %s
570 text_journal_set_to: satt til %s
642 text_journal_changed: "endret fra {{old}} til {{new}}"
643 text_journal_set_to: "satt til {{value}}"
571 644 text_journal_deleted: slettet
572 645 text_tip_task_begin_day: oppgaven starter denne dagen
573 646 text_tip_task_end_day: oppgaven avsluttes denne dagen
574 647 text_tip_task_begin_end_day: oppgaven starter og avsluttes denne dagen
575 648 text_project_identifier_info: 'Små bokstaver (a-z), nummer og bindestrek tillatt.<br />Identifikatoren kan ikke endres etter den er lagret.'
576 text_caracters_maximum: %d tegn maksimum.
577 text_caracters_minimum: Må være minst %d tegn langt.
578 text_length_between: Lengde mellom %d og %d tegn.
649 text_caracters_maximum: "{{count}} tegn maksimum."
650 text_caracters_minimum: " være minst {{count}} tegn langt."
651 text_length_between: "Lengde mellom {{min}} og {{max}} tegn."
579 652 text_tracker_no_workflow: Ingen arbeidsflyt definert for denne sakstypen
580 653 text_unallowed_characters: Ugyldige tegn
581 654 text_comma_separated: Flere verdier tillat (kommaseparert).
582 655 text_issues_ref_in_commit_messages: Referering og retting av saker i innsendingsmelding
583 text_issue_added: Sak %s er rapportert.
584 text_issue_updated: Sak %s er oppdatert.
656 text_issue_added: "Issue {{id}} has been reported by {{author}}."
657 text_issue_updated: "Issue {{id}} has been updated by {{author}}."
585 658 text_wiki_destroy_confirmation: Er du sikker på at du vil slette denne wikien og alt innholdet ?
586 text_issue_category_destroy_question: Noen saker (%d) er lagt til i denne kategorien. Hva vil du gjøre ?
659 text_issue_category_destroy_question: "Noen saker ({{count}}) er lagt til i denne kategorien. Hva vil du gjøre ?"
587 660 text_issue_category_destroy_assignments: Fjern bruk av kategorier
588 661 text_issue_category_reassign_to: Overfør sakene til denne kategorien
589 662 text_user_mail_option: "For ikke-valgte prosjekter vil du bare motta varsling om ting du overvåker eller er involveret i (eks. saker du er forfatter av eller er tildelt)."
590 663 text_no_configuration_data: "Roller, arbeidsflyt, sakstyper og -statuser er ikke konfigurert enda.\nDet anbefales sterkt å laste inn standardkonfigurasjonen. Du vil kunne endre denne etter den er innlastet."
591 664 text_load_default_configuration: Last inn standardkonfigurasjonen
592 text_status_changed_by_changeset: Brukt i endringssett %s.
665 text_status_changed_by_changeset: "Brukt i endringssett {{value}}."
593 666 text_issues_destroy_confirmation: 'Er du sikker at du vil slette valgte sak(er) ?'
594 667 text_select_project_modules: 'Velg moduler du vil aktivere for dette prosjektet:'
595 668 text_default_administrator_account_changed: Standard administrator-konto er endret
@@ -599,7 +672,7 text_destroy_time_entries_question: %.02f timer er ført på sakene du er i ferd
599 672 text_destroy_time_entries: Slett førte timer
600 673 text_assign_time_entries_to_project: Overfør førte timer til prosjektet
601 674 text_reassign_time_entries: 'Overfør førte timer til denne saken:'
602 text_user_wrote: '%s skrev:'
675 text_user_wrote: "{{value}} skrev:'"
603 676
604 677 default_role_manager: Leder
605 678 default_role_developper: Utvikler
@@ -627,7 +700,7 enumeration_issue_priorities: Sakssprioriteringer
627 700 enumeration_doc_categories: Dokument-kategorier
628 701 enumeration_activities: Aktiviteter (tidssporing)
629 702 text_enumeration_category_reassign_to: 'Reassign them to this value:'
630 text_enumeration_destroy_question: '%d objects are assigned to this value.'
703 text_enumeration_destroy_question: "{{count}} objects are assigned to this value.'"
631 704 label_incoming_emails: Incoming emails
632 705 label_generate_key: Generate a key
633 706 setting_mail_handler_api_enabled: Enable WS for incoming emails
@@ -693,18 +766,14 label_example: Example
693 766 text_repository_usernames_mapping: "Select ou update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped."
694 767 permission_edit_own_messages: Edit own messages
695 768 permission_delete_own_messages: Delete own messages
696 label_user_activity: "%s's activity"
697 label_updated_time_by: Updated by %s %s ago
769 label_user_activity: "{{value}}'s activity"
770 label_updated_time_by: "Updated by {{author}} {{age}} ago"
698 771 text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
699 772 setting_diff_max_lines_displayed: Max number of diff lines displayed
700 773 text_plugin_assets_writable: Plugin assets directory writable
701 warning_attachments_not_saved: "%d file(s) could not be saved."
774 warning_attachments_not_saved: "{{count}} file(s) could not be saved."
702 775 button_create_and_continue: Create and continue
703 776 text_custom_field_possible_values_info: 'One line for each value'
704 777 label_display: Display
705 778 field_editable: Editable
706 779 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
1 NO CONTENT: file renamed from lang/pl.yml to config/locales/pl.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/pt-br.yml to config/locales/pt-BR.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/pt.yml to config/locales/pt.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/ro.yml to config/locales/ro.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/ru.yml to config/locales/ru.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/sk.yml to config/locales/sk.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/sl.yml to config/locales/sl.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/sr.yml to config/locales/sr.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/th.yml to config/locales/th.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/tr.yml to config/locales/tr.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/zh-tw.yml to config/locales/zh-TW.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from lang/zh.yml to config/locales/zh.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from extra/sample_plugin/lang/en.yml to extra/sample_plugin/config/locales/en.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from extra/sample_plugin/lang/fr.yml to extra/sample_plugin/config/locales/fr.yml
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from public/javascripts/calendar/lang/calendar-vn.js to public/javascripts/calendar/lang/calendar-vi.js
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from public/javascripts/jstoolbar/lang/jstoolbar-vn.js to public/javascripts/jstoolbar/lang/jstoolbar-vi.js
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now