1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215
|
# --
# Kernel/Language/es.pm - provides es language translation
# Copyright (C) 2003-2004 Jorge Becerra <jorge at icc-cuba.com>
# --
# $Id: es.pm,v 1.35 2005/10/15 12:08:12 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::Language::es;
use strict;
use vars qw($VERSION);
$VERSION = '$Revision: 1.35 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
# --
sub Data {
my $Self = shift;
my %Param = @_;
# $$START$$
# Last translation file sync: Thu Jul 28 22:14:13 2005
# possible charsets
$Self->{Charset} = ['iso-8859-1', 'iso-8859-15', ];
# date formats (%A=WeekDay;%B=LongMonth;%T=Time;%D=Day;%M=Month;%Y=Jear;)
$Self->{DateFormat} = '%D.%M.%Y %T';
$Self->{DateFormatLong} = '%A %D %B %T %Y';
$Self->{DateInputFormat} = '%D.%M.%Y';
$Self->{DateInputFormatLong} = '%D.%M.%Y - %T';
$Self->{Translation} = {
# Template: AAABase
'Yes' => 'Si',
'No' => '',
'yes' => 'si',
'no' => '',
'Off' => '',
'off' => '',
'On' => '',
'on' => '',
'top' => 'inicio',
'end' => 'fin',
'Done' => 'Hecho',
'Cancel' => 'Cancelar',
'Reset' => 'Resetear',
'last' => 'ltimo',
'before' => 'antes',
'day' => 'dia',
'days' => 'dias',
'day(s)' => 'dias(s)',
'hour' => 'hora',
'hours' => 'horas',
'hour(s)' => 'hora(s)',
'minute' => 'minuto',
'minutes' => 'minutos',
'minute(s)' => 'minuto(s)',
'month' => 'mes',
'months' => 'meses',
'month(s)' => 'mes(es)',
'week' => 'semana',
'week(s)' => 'semana(s)',
'year' => 'ao',
'years' => 'aos',
'year(s)' => 'ao(s)',
'wrote' => 'escribi',
'Message' => 'Mensaje',
'Error' => '',
'Bug Report' => 'Reporte de errores',
'Attention' => 'Atencin',
'Warning' => 'Atencin',
'Module' => 'Mdulo',
'Modulefile' => 'Archivo de mdulo',
'Subfunction' => 'Subfunciones',
'Line' => 'Linea',
'Example' => 'Ejemplo',
'Examples' => 'Ejemplos',
'valid' => 'valido',
'invalid' => 'invlido',
'invalid-temporarily' => 'invalido-temporalmente',
' 2 minutes' => ' 2 minutos',
' 5 minutes' => ' 5 minutos',
' 7 minutes' => ' 7 minutos',
'10 minutes' => '10 minutos',
'15 minutes' => '15 minutos',
'Mr.' => 'Sr.',
'Mrs.' => 'Sra.',
'Next' => 'Siguiente',
'Back' => 'Regresar',
'Next...' => 'Siguiente...',
'...Back' => '..Regresar',
'-none-' => '-nada-',
'none' => 'nada',
'none!' => 'nada!',
'none - answered' => 'nada - respondido',
'please do not edit!' => 'Por favor no lo edite!',
'AddLink' => 'Adicionar enlace',
'Link' => 'Vinculo',
'Linked' => 'Enlazado',
'Link (Normal)' => 'Enlace (Normal)',
'Link (Parent)' => 'Enlace (Padre)',
'Link (Child)' => 'Enlace (Hijo)',
'Normal' => '',
'Parent' => 'Padre',
'Child' => 'Hijo',
'Hit' => '',
'Hits' => '',
'Text' => 'Texto',
'Lite' => 'Chica',
'User' => 'Usuario',
'Username' => 'Nombre de Usuario',
'Language' => 'Idioma',
'Languages' => 'Idiomas',
'Password' => 'Contrasea',
'Salutation' => 'Saludo',
'Signature' => 'Firmas',
'Customer' => 'Cliente',
'CustomerID' => 'Nmero de cliente',
'CustomerIDs' => '',
'customer' => 'cliente',
'agent' => 'agente',
'system' => 'Sistema',
'Customer Info' => 'Informacin del cliente',
'go!' => 'ir!',
'go' => 'ir',
'All' => 'Todo',
'all' => 'todo',
'Sorry' => 'Disculpe',
'update!' => 'Actualizar!',
'update' => 'actualizar',
'Update' => 'Actualizar',
'submit!' => 'enviar!',
'submit' => 'enviar',
'Submit' => 'Enviar',
'change!' => 'cambiar!',
'Change' => 'Cambiar',
'change' => 'cambiar',
'click here' => 'haga click aqu',
'Comment' => 'Comentario',
'Valid' => 'Vlido',
'Invalid Option!' => 'Opcion no valida',
'Invalid time!' => 'Hora no valida',
'Invalid date!' => 'Fecha no valida',
'Name' => 'Nombre',
'Group' => 'Grupo',
'Description' => 'Descripcin',
'description' => 'descripcin',
'Theme' => 'Tema',
'Created' => 'Creado',
'Created by' => 'Creado por',
'Changed' => 'Modificado',
'Changed by' => 'Modificado por',
'Search' => 'Buscar',
'and' => 'y',
'between' => 'entre',
'Fulltext Search' => 'Busqueda de texto completo',
'Data' => 'Datos',
'Options' => 'Opciones',
'Title' => 'Titulo',
'Item' => 'Articulo',
'Delete' => 'Borrar',
'Edit' => 'Editar',
'View' => 'Ver',
'Number' => 'Numero',
'System' => 'Sistema',
'Contact' => 'Contacto',
'Contacts' => 'Contactos',
'Export' => 'Exportar',
'Up' => 'Arriba',
'Down' => 'Abajo',
'Add' => 'Adicionar',
'Category' => 'Categoria',
'Viewer' => 'Visor',
'New message' => 'Nuevo mensaje',
'New message!' => 'Nuevo mensaje!',
'Please answer this ticket(s) to get back to the normal queue view!' => 'Por favor responda el ticket para regresar a la vista normal de la cola.',
'You got new message!' => 'Ud tiene un nuevo mensaje',
'You have %s new message(s)!' => 'Ud tiene %s nuevos mensaje(s)!',
'You have %s reminder ticket(s)!' => 'Ud tiene %s tickets recordatorios',
'The recommended charset for your language is %s!' => 'EL juego de caracteres recomendado para su idioma es %s!',
'Passwords dosn\'t match! Please try it again!' => 'Las contraseas no coinciden. Por favor Reintente!',
'Password is already in use! Please use an other password!' => 'La contrasea ya se esta utilizando! Por Favor utilice otra!',
'Password is already used! Please use an other password!' => 'La contrasea ya fue usada! Por favor use otra!',
'You need to activate %s first to use it!' => 'Necesita activar %s primero para usarlo!',
'No suggestions' => 'Sin sugerencias',
'Word' => 'Palabra',
'Ignore' => 'Ignorar',
'replace with' => 'reemplazar con',
'Welcome to OTRS' => 'Bienvenido a OTRS',
'There is no account with that login name.' => 'No existe una cuenta con ese login',
'Login failed! Your username or password was entered incorrectly.' => 'Identificacin incorrecta. Su nombre de usuario o contrasea fue introducido incorrectamente',
'Please contact your admin' => 'Por favor contace su administrador',
'Logout successful. Thank you for using OTRS!' => 'Desconexin exitosa. Gracias por utilizar OTRS!',
'Invalid SessionID!' => 'Sesin no vlida',
'Feature not active!' => 'Caracterstica no activa',
'Take this Customer' => 'Tomar este cliente',
'Take this User' => 'Tomar este usuario',
'possible' => 'posible',
'reject' => 'rechazar',
'Facility' => 'Instalacin',
'Timeover' => '',
'Pending till' => 'Pendiente hasta',
'Don\'t work with UserID 1 (System account)! Create new users!' => 'No trabaje con el Identificador 1 (cuenta de sistema)! Cree nuevos usuarios! ',
'Dispatching by email To: field.' => 'Despachar por correo del campo To:',
'Dispatching by selected Queue.' => 'Despachar por la cola seleccionada',
'No entry found!' => 'No se encontr!',
'Session has timed out. Please log in again.' => 'La sesin ha expirado. Por favor conectese nuevamente.',
'No Permission!' => 'No tiene Permiso!',
'To: (%s) replaced with database email!' => 'To: (%s) sustituido con email de la base de datos!',
'Cc: (%s) added database email!' => 'Cc: (%s) Aadido a la base de correo!',
'(Click here to add)' => '(Haga click aqui para agregar)',
'Preview' => 'Vista Previa',
'Added User "%s"' => 'Aadido Usuario "%s"',
'Contract' => 'Contrato',
'Online Customer: %s' => 'Cliente Conectado: %s',
'Online Agent: %s' => 'Agente Conectado: %s',
'Calendar' => 'Calendario',
'File' => 'Archivo',
'Filename' => 'Nombre del archivo',
'Type' => 'Tipo',
'Size' => 'Tamao',
'Upload' => 'Subir',
'Directory' => 'Directorio',
'Signed' => 'Firmado',
'Sign' => 'Firma',
'Crypted' => 'Encriptado',
'Crypt' => 'Encriptar',
# Template: AAAMonth
'Jan' => 'Ene',
'Feb' => '',
'Mar' => '',
'Apr' => 'Abr',
'May' => '',
'Jun' => '',
'Jul' => '',
'Aug' => 'Ago',
'Sep' => '',
'Oct' => '',
'Nov' => '',
'Dec' => 'Dic',
# Template: AAANavBar
'Admin-Area' => 'Area de administracin',
'Agent-Area' => 'Area-Agente',
'Ticket-Area' => 'Area-Ticket',
'Logout' => 'Desconectarse',
'Agent Preferences' => 'Preferencias de Agente',
'Preferences' => 'Preferencias',
'Agent Mailbox' => 'Buzn de Agente',
'Stats' => 'Estadisticas',
'Stats-Area' => 'Area-Estadisticas',
'FAQ-Area' => 'Area-FAQ',
'FAQ' => '',
'FAQ-Search' => 'FAQ-Buscar',
'FAQ-Article' => 'FAQ-Articulo',
'New Article' => 'Nuevo Articulo',
'FAQ-State' => 'FAQ-Estado',
'Admin' => '',
'A web calendar' => 'Calendario Web',
'WebMail' => '',
'A web mail client' => 'Un cliente de correo Web',
'FileManager' => 'Administrador de Archivos',
'A web file manager' => 'Administrador web de archivos',
'Artefact' => 'Artefacto',
'Incident' => 'Incidente',
'Advisory' => 'Advertencia',
'WebWatcher' => '',
'Customer Users' => 'Clientes',
'Customer Users <-> Groups' => 'Clientes <-> Grupos',
'Users <-> Groups' => 'Usuarios <-> Grupos',
'Roles' => '',
'Roles <-> Users' => 'Roles <-> Usuarios',
'Roles <-> Groups' => 'Roles <-> Grupos',
'Salutations' => 'Saludos',
'Signatures' => 'Firmas',
'Email Addresses' => 'Direcciones de Correo',
'Notifications' => 'Notificaciones',
'Category Tree' => 'Arbol de categorias',
'Admin Notification' => 'Notificacion al Administrador',
# Template: AAAPreferences
'Preferences updated successfully!' => 'Las preferencia fueron actualizadas!',
'Mail Management' => 'Gestin de Correos',
'Frontend' => 'Frontal',
'Other Options' => 'Otras Opciones',
'Change Password' => 'Cambiar contrasea',
'New password' => 'Nueva contrasea',
'New password again' => 'Repetir Contrasea',
'Select your QueueView refresh time.' => 'Seleccione su tiempo de actualizacin de la vista de colas',
'Select your frontend language.' => 'Seleccione su idioma de trabajo',
'Select your frontend Charset.' => 'Seleccione su juego de caracteres',
'Select your frontend Theme.' => 'Seleccione su tema',
'Select your frontend QueueView.' => 'Seleccione su Vista de cola de trabajo',
'Spelling Dictionary' => 'Diccionario Ortogrfico',
'Select your default spelling dictionary.' => 'Seleccione su diccionario por defecto',
'Max. shown Tickets a page in Overview.' => 'Cantidad de Tickets a mostrar en Resumen',
'Can\'t update password, passwords dosn\'t match! Please try it again!' => 'No se puede actualizar la contrasea, no coinciden! Por favor reintentelo!',
'Can\'t update password, invalid characters!' => 'No se puede actualizar la contrasea, caracteres no validos!',
'Can\'t update password, need min. 8 characters!' => 'No se puede actualizar la contrasea, se necesitan al menos 8 caracteres',
'Can\'t update password, need 2 lower and 2 upper characters!' => 'No se puede actualizar la contrasea, se necesitan al menos 2 en minuscula y 2 en mayuscula!',
'Can\'t update password, need min. 1 digit!' => 'No se puede actualizar la contrasea, se necesita al menos 1 digito!',
'Can\'t update password, need min. 2 characters!' => 'No se puede actualizar la contrasea, se necesitan al menos 2 caracteres!',
'Password is needed!' => 'Falta la contrasea!',
# Template: AAATicket
'Lock' => 'Bloquear',
'Unlock' => 'Desbloquear',
'History' => 'Historia',
'Zoom' => 'Detalle',
'Age' => 'Antiguedad',
'Bounce' => 'Rebotar',
'Forward' => 'Reenviar',
'From' => 'De',
'To' => 'Para',
'Cc' => 'Copia ',
'Bcc' => 'Copia Invisible',
'Subject' => 'Asunto',
'Move' => 'Mover',
'Queue' => 'Colas',
'Priority' => 'Prioridad',
'State' => 'Estado',
'Compose' => 'Redactar',
'Pending' => 'Pendiente',
'Owner' => 'Propietario',
'Owner Update' => 'Actualizar Propietario',
'Sender' => 'Emisor',
'Article' => 'Artculo',
'Ticket' => '',
'Createtime' => 'Fecha de creacin ',
'plain' => 'texto',
'eMail' => 'Correo',
'email' => 'correo',
'Close' => 'Cerrar',
'Action' => 'Accin',
'Attachment' => 'Anexo',
'Attachments' => 'Anexos',
'This message was written in a character set other than your own.' => 'Este mensaje fue escrito usando un juego de caracteres distinto al suyo',
'If it is not displayed correctly,' => 'Si no se muestra correctamente',
'This is a' => 'Este es un',
'to open it in a new window.' => 'Para abrir en una nueva ventana',
'This is a HTML email. Click here to show it.' => 'Este es un mensaje HTML. Haga click aqu para mostrarlo.',
'Free Fields' => 'Campos Libres',
'Merge' => 'Mezclar',
'closed successful' => 'cerrado exitosamente',
'closed unsuccessful' => 'cerrado sin xito',
'new' => 'nuevo',
'open' => 'abierto',
'closed' => 'cerrado',
'removed' => 'eliminado',
'pending reminder' => 'recordatorio pendiente',
'pending auto close+' => 'pendiente auto close+',
'pending auto close-' => 'pendiente auto close-',
'email-external' => 'correo-externo',
'email-internal' => 'correo-interno',
'note-external' => 'nota-externa',
'note-internal' => 'nota-interna',
'note-report' => 'nota-reporte',
'phone' => 'telfono',
'sms' => '',
'webrequest' => 'Solicitud via web',
'lock' => 'bloqueado',
'unlock' => 'desbloqueado',
'very low' => 'muy bajo',
'low' => 'bajo',
'normal' => '',
'high' => 'alto',
'very high' => 'muy alto',
'1 very low' => '1 muy bajo',
'2 low' => '2 bajo',
'3 normal' => '',
'4 high' => '4 alto',
'5 very high' => '5 muy alto',
'Ticket "%s" created!' => 'Ticket "%s" creado!',
'Ticket Number' => 'Ticket Nmero',
'Ticket Object' => 'Objeto Ticket',
'No such Ticket Number "%s"! Can\'t link it!' => 'No existe el Ticket Numero "%s"! No puede vincularlo!',
'Don\'t show closed Tickets' => 'No mostrar los tickets cerrados',
'Show closed Tickets' => 'Mostrar Tickets cerrados',
'Email-Ticket' => 'Ticket-Correo',
'Create new Email Ticket' => '',
'Phone-Ticket' => 'Ticket-Telefonico',
'Create new Phone Ticket' => 'Crear un nuevo Ticket Telefonico',
'Search Tickets' => 'Buscar Tickets',
'Edit Customer Users' => 'Editar Clientes',
'Bulk-Action' => 'Accion Multiple',
'Bulk Actions on Tickets' => 'Accion Multiple en Tickets',
'Send Email and create a new Ticket' => 'Enviar un correo y crear un nuevo ticket',
'Overview of all open Tickets' => 'Resumen de todos los tickets abiertos',
'Locked Tickets' => 'Tickets Bloqueados',
'Lock it to work on it!' => 'Bloquearlo para trabajar en el!',
'Unlock to give it back to the queue!' => 'Desbloquearlo para regresarlo a la cola!',
'Shows the ticket history!' => 'Mostrar la historia del ticket!',
'Print this ticket!' => 'Imprimir este ticket!',
'Change the ticket priority!' => 'Cambiar la prioridad del ticket!',
'Change the ticket free fields!' => 'Cambiar los campos libres del ticket!',
'Link this ticket to an other objects!' => 'Enlazar este ticket a otros objetos',
'Change the ticket owner!' => 'Cambiar el propietario del ticket!',
'Change the ticket customer!' => 'Cambiar el cliente del ticket!',
'Add a note to this ticket!' => 'Adicionar una nota a este ticket!',
'Merge this ticket!' => 'Unir este ticket!',
'Set this ticket to pending!' => 'Colocar este ticket como pendiente!',
'Close this ticket!' => 'Cerrar este ticket!',
'Look into a ticket!' => 'Revisar un ticket',
'Delete this ticket!' => 'Eliminar este ticket!',
'Mark as Spam!' => 'Parcar como correo no deseado!',
'My Queues' => 'Mis Colas',
'Shown Tickets' => 'Mostrar Tickets',
'New ticket notification' => 'Notificacin de nuevos tickets',
'Send me a notification if there is a new ticket in "My Queues".' => 'Notifqueme si hay un nuevo ticket en "Mis Colas".',
'Follow up notification' => 'Seguimiento a notificaciones',
'Send me a notification if a customer sends a follow up and I\'m the owner of this ticket.' => 'Notifqueme si un cliente env un seguimiento y yo soy el dueo del ticket.',
'Ticket lock timeout notification' => 'Notificacin de bloqueo de tickets por tiempo',
'Send me a notification if a ticket is unlocked by the system.' => 'Notifqueme si un ticket es desbloqueado por el sistema',
'Move notification' => 'Notificacin de movimientos',
'Send me a notification if a ticket is moved into one of "My Queues".' => 'Notifqueme si un ticket es colocado en una de "Mis Colas".',
'Your queue selection of your favorite queues. You also get notified about this queues via email if enabled.' => '',
'Custom Queue' => 'Cola personal',
'QueueView refresh time' => 'Tiempo de actualizacin de la vista de colas',
'Screen after new ticket' => 'Pantalla posterior a nuevo ticket',
'Select your screen after creating a new ticket.' => 'Seleccione la pantalla a mostrar despues de crear un ticket',
'Closed Tickets' => 'Tickets Cerrados',
'Show closed tickets.' => 'Mostrar Tickets cerrados',
'Max. shown Tickets a page in QueueView.' => 'Cantidad de Tickets a mostrar en la Vista de Cola',
'Responses' => 'Respuestas',
'Responses <-> Queue' => 'Respuestas <-> Colas',
'Auto Responses' => 'Respuestas Automaticas',
'Auto Responses <-> Queue' => 'Respuestas Automaticas <-> Colas',
'Attachments <-> Responses' => 'Anexos <-> Respuestas',
'History::Move' => 'Ticket movido a la cola "%s" (%s) de la cola "%s" (%s).',
'History::NewTicket' => 'Nuevo Ticket [%s] createdo (Q=%s;P=%s;S=%s).',
'History::FollowUp' => 'Seguimiento para [%s]. %s',
'History::SendAutoReject' => 'Rechazo automtico enviado a "%s".',
'History::SendAutoReply' => 'Respuesta automtica enviada a "%s".',
'History::SendAutoFollowUp' => 'Seguimiento automtico enviado a "%s".',
'History::Forward' => 'Reenviado a "%s".',
'History::Bounce' => 'Reenviado a "%s".',
'History::SendAnswer' => 'Correo enviado a "%s".',
'History::SendAgentNotification' => '"%s"-notificacin enviada a "%s".',
'History::SendCustomerNotification' => 'Notificación; enviada a "%s".',
'History::EmailAgent' => 'Correo enviado al cliente.',
'History::EmailCustomer' => 'Adicionado correo. %s',
'History::PhoneCallAgent' => 'El agente llam al cliente.',
'History::PhoneCallCustomer' => 'El cliente llam.',
'History::AddNote' => 'Adicionada nota (%s)',
'History::Lock' => 'Ticket bloqueado.',
'History::Unlock' => 'Ticket desbloqueado.',
'History::TimeAccounting' => '%s unidad(es) de tiempo contabilizadas. Nuevo total : %s uniodad(es) de tiempo.',
'History::Remove' => '%s',
'History::CustomerUpdate' => 'Actualizado: %s',
'History::PriorityUpdate' => 'Cambiar prioridad de "%s" (%s) a "%s" (%s).',
'History::OwnerUpdate' => 'El nuevo propietario es "%s" (ID=%s).',
'History::LoopProtection' => 'Proteccin de lazo! NO se envio auto-respuesta a "%s".',
'History::Misc' => '%s',
'History::SetPendingTime' => 'Actualizado: %s',
'History::StateUpdate' => 'Antiguo: "%s" Nuevo: "%s"',
'History::TicketFreeTextUpdate' => 'Actualizado: %s=%s;%s=%s;',
'History::WebRequestCustomer' => 'Solicitud de cliente via web.',
'History::TicketLinkAdd' => 'Adicionado enlace al ticket "%s".',
'History::TicketLinkDelete' => 'Eliminado enlace al ticket "%s".',
# Template: AAAWeekDay
'Sun' => 'Dom',
'Mon' => 'Lun',
'Tue' => 'Mar',
'Wed' => 'Mie',
'Thu' => 'Jue',
'Fri' => 'Vie',
'Sat' => 'Sab',
# Template: AdminAttachmentForm
'Attachment Management' => 'Gestin de Anexos',
# Template: AdminAutoResponseForm
'Auto Response Management' => 'Gestin de respuestas automticas',
'Response' => 'Respuesta',
'Auto Response From' => 'Respuesta automtica de ',
'Note' => 'Nota',
'Useable options' => 'Opciones accesibles',
'to get the first 20 character of the subject' => 'para obtener los primeros 20 caracteres del asunto ',
'to get the first 5 lines of the email' => 'para obtener las primeras 5 lneas del correo',
'to get the from line of the email' => 'para obtener la linea from del correo',
'to get the realname of the sender (if given)' => 'para obtener el nombre del emisor (si lo proporcion)',
'Options of the ticket data (e. g. <OTRS_TICKET_Number>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)' => '',
# Template: AdminCustomerUserForm
'The message being composed has been closed. Exiting.' => 'El mensaje que se estaba redactando ha sido cerrado. Saliendo.!',
'This window must be called from compose window' => 'Esta ventana debe ser llamada desde la ventana de redaccin',
'Customer User Management' => 'Gestin de clientes',
'Search for' => 'Buscar por',
'Result' => 'Resultado',
'Select Source (for add)' => 'Seleccionar Fuente (para adicionar)',
'Source' => 'Origen',
'This values are read only.' => 'Estos valores son solo-lectura',
'This values are required.' => 'Estos valores son obligatorios',
'Customer user will be needed to have an customer histor and to to login via customer panels.' => 'El cliente necesita tener una historia y conectarse via panel de clientes',
# Template: AdminCustomerUserGroupChangeForm
'Customer Users <-> Groups Management' => 'Clientes <-> Gestion de Grupos',
'Change %s settings' => 'Cambiar %s especificaciones',
'Select the user:group permissions.' => 'Seleccionar los permisos de usuario:grupo',
'If nothing is selected, then there are no permissions in this group (tickets will not be available for the user).' => 'Si no se selecciona algo, no habrn permisos en este grupo (Los tickets no estarn disponibles para este cliente).',
'Permission' => 'Permisos',
'ro' => '',
'Read only access to the ticket in this group/queue.' => 'Acceso de solo lectura a los tickets en este grupo/cola.',
'rw' => '',
'Full read and write access to the tickets in this group/queue.' => 'Acceso completo de lectura y escritura a los tickets en este grupo/cola.',
# Template: AdminCustomerUserGroupForm
# Template: AdminEmail
'Message sent to' => 'Mensaje enviado a',
'Recipents' => 'Destinatarios',
'Body' => 'Cuerpo',
'send' => 'enviar',
# Template: AdminGenericAgent
'GenericAgent' => '',
'Job-List' => 'Lista de Tareas',
'Last run' => 'ltima corrida',
'Run Now!' => 'Ejecutar ahora',
'x' => '',
'Save Job as?' => 'Guardar Tarea como?',
'Is Job Valid?' => 'Es la tarea Valida?',
'Is Job Valid' => 'Es una tarea valida',
'Schedule' => 'Horario',
'Fulltext-Search in Article (e. g. "Mar*in" or "Baue*")' => 'Bsqueda de texto en Articulo (ej. "Mar*in" or "Baue*")',
'(e. g. 10*5155 or 105658*)' => '',
'(e. g. 234321)' => '',
'Customer User Login' => 'Identificador del cliente',
'(e. g. U5150)' => '',
'Agent' => 'Agente',
'TicketFreeText' => '',
'Ticket Lock' => 'Ticket Bloqueado',
'Times' => 'Veces',
'No time settings.' => 'Sin especificacin de fecha',
'Ticket created' => 'Ticket creado',
'Ticket created between' => 'Ticket creado entre',
'New Priority' => 'Nueva prioridad',
'New Queue' => 'Nueva Cola',
'New State' => 'Nuevo estado',
'New Agent' => 'Nuevo Agente',
'New Owner' => 'Nuevo Propietario',
'New Customer' => 'Nuevo Cliente',
'New Ticket Lock' => 'Nuevo bloqueo de ticket!',
'CustomerUser' => 'Usuario Cliente',
'Add Note' => 'Adicionar Nota',
'CMD' => '',
'This command will be executed. ARG[0] will be the ticket number. ARG[1] the ticket id.' => 'Se ejecutar el comando. ARG[0] el nmero del ticket. ARG[0] el id del ticket.',
'Delete tickets' => 'Eliminar tickets',
'Warning! This tickets will be removed from the database! This tickets are lost!' => 'Aviso! Estos tickets sern eliminados de la base de datos! Los mismos se perdern!',
'Modules' => 'Mdulos',
'Param 1' => 'Parmetro 1',
'Param 2' => 'Parmetro 2',
'Param 3' => 'Parmetro 3',
'Param 4' => 'Parmetro 4',
'Param 5' => 'Parmetro 5',
'Param 6' => 'Parmetro 6',
'Save' => 'Guardar',
# Template: AdminGroupForm
'Group Management' => 'Administracin de grupos',
'The admin group is to get in the admin area and the stats group to get stats area.' => 'El grupo admin es para usar el rea de administracin y el grupo stats para usar el rea estadisticas.',
'Create new groups to handle access permissions for different groups of agent (e. g. purchasing department, support department, sales department, ...).' => 'Crear nuevos grupos para manipular los permisos de acceso por distintos grupos de agente (ejemplo: departamento de compra, departamento de soporte, departamento de ventas,...).',
'It\'s useful for ASP solutions.' => 'Esto es til para soluciones ASP.',
# Template: AdminLog
'System Log' => 'Trazas del Sistema',
'Time' => 'Tiempo',
# Template: AdminNavigationBar
'Users' => 'Usuarios',
'Groups' => 'Grupos',
'Misc' => 'Miscelaneas',
# Template: AdminNotificationForm
'Notification Management' => 'Gestin de Notificaciones',
'Notification' => 'Notificacion',
'Notifications are sent to an agent or a customer.' => 'Las notificacin se le envian a un agente o cliente',
'Config options (e. g. <OTRS_CONFIG_HttpType>)' => 'Opciones de configuracin (ej: <OTRS_CONFIG_HttpType>)',
'Ticket owner options (e. g. <OTRS_OWNER_USERFIRSTNAME>)' => 'Opciones de propietario del ticket (ej. <OTRS_OWNER_USERFIRSTNAME>)',
'Options of the current user who requested this action (e. g. <OTRS_CURRENT_USERFIRSTNAME>)' => 'Opciones del usuario activo que solicita esta accin (ej. <OTRS_CURRENT_USERFIRSTNAME>)',
'Options of the current customer user data (e. g. <OTRS_CUSTOMER_DATA_USERFIRSTNAME>)' => 'Opciones del usuario activo',
# Template: AdminPackageManager
'Package Manager' => 'Gestor de paquete',
'Uninstall' => 'Desinstalar',
'Verion' => '',
'Do you really want to uninstall this package?' => 'Seguro que desea desinstalar este paquete?',
'Install' => 'Instalar',
'Package' => 'Paquete',
'Online Repository' => 'Reporsitorio Online',
'Version' => '',
'Vendor' => 'Vendedor',
'Upgrade' => 'Actualizar',
'Local Repository' => 'Repositorio Local',
'Status' => 'Estado',
'Overview' => 'Resumen',
'Download' => 'Descargar',
'Rebuild' => 'Reconstruir',
'Reinstall' => 'Reinstalar',
# Template: AdminPGPForm
'PGP Management' => 'Administracion PGP',
'Identifier' => 'Identificador',
'Bit' => '',
'Key' => 'Llave',
'Fingerprint' => '',
'Expires' => 'Expira',
'In this way you can directly edit the keyring configured in SysConfig.' => 'De esta forma puede editar directamente el anillo de Llaves configurado en Sysconfig',
# Template: AdminPOP3Form
'POP3 Account Management' => 'Gestin de cuenta POP3',
'Host' => '',
'Trusted' => 'Confiable',
'Dispatching' => 'Remitiendo',
'All incoming emails with one account will be dispatched in the selected queue!' => 'Todos los correos de entrada sern enviados a la cola seleccionada',
'If your account is trusted, the already existing x-otrs header at arrival time (for priority, ...) will be used! PostMaster filter will be used anyway.' => 'Si su cuenta es confiable, los headers ya existentes x-otrs en la llegada se utilizarn para la prioridad! El filtro Postmaster se usa de todas formas.',
# Template: AdminPostMasterFilter
'PostMaster Filter Management' => 'Gestin del filtro maestro',
'Filtername' => '',
'Match' => 'Coincidir',
'Header' => 'Encabezado',
'Value' => 'Valor',
'Set' => '',
'Do dispatch or filter incoming emails based on email X-Headers! RegExp is also possible.' => 'Clasificar o filtrar correos entrantes basado en el encabezamiento X-Headers del correo! Puede utilizar expresiones regulares.',
'If you use RegExp, you also can use the matched value in () as [***] in \'Set\'.' => 'Si utilza expresion regular, puede tambien usar el valor encontrado en () as [***] en \'Set\'.',
# Template: AdminQueueAutoResponseForm
'Queue <-> Auto Responses Management' => 'Cola <-> Gestion de respuestas automaticas',
# Template: AdminQueueAutoResponseTable
# Template: AdminQueueForm
'Queue Management' => 'Gestin de Colas',
'Sub-Queue of' => 'Subcola de',
'Unlock timeout' => 'Tiempo para desbloqueo automtico',
'0 = no unlock' => '0 = sin bloqueo',
'Escalation time' => 'Tiempo de escalado',
'0 = no escalation' => '0 = sin escalado',
'Follow up Option' => 'Opcin de seguimiento',
'Ticket lock after a follow up' => 'Bloquear un ticket despus del seguimiento',
'Systemaddress' => 'Direcciones de correo del sistema',
'Customer Move Notify' => 'Notificar al Cliente al Mover',
'Customer State Notify' => 'Notificacin de estado al Cliente',
'Customer Owner Notify' => 'Notificar al Dueo al Mover',
'If an agent locks a ticket and he/she will not send an answer within this time, the ticket will be unlock automatically. So the ticket is viewable for all other agents.' => 'Si un agente bloquea un ticket y el/ella no env una respuesta en este tiempo, el ticket sera desbloqueado automticamente',
'If a ticket will not be answered in thos time, just only this ticket will be shown.' => 'Si un ticket no ha sido respondido es este tiempo, solo este ticket se mostrar',
'If a ticket is closed and the customer sends a follow up the ticket will be locked for the old owner.' => 'Si el tickes esta cerrado y el cliente env un seguimiento al mismo este ser bloqueado para el antiguo propietario',
'Will be the sender address of this queue for email answers.' => 'Ser la direccin del emisor en esta cola para respuestas por correo.',
'The salutation for email answers.' => 'Saludo para las respuestas por correo.',
'The signature for email answers.' => 'Firma para respuestas por correo.',
'OTRS sends an notification email to the customer if the ticket is moved.' => 'OTRS enva una notificacin por correo si el ticket se mueve',
'OTRS sends an notification email to the customer if the ticket state has changed.' => 'OTRS enva una notificacin por correo al cliente si el estado del ticket cambia',
'OTRS sends an notification email to the customer if the ticket owner has changed.' => 'OTRS enva una notificacin por correo al cliente si el dueño; del ticket cambia',
# Template: AdminQueueResponsesChangeForm
'Responses <-> Queue Management' => 'Respuestas <-> Gestion de Colas',
# Template: AdminQueueResponsesForm
'Answer' => 'Responder',
# Template: AdminResponseAttachmentChangeForm
'Responses <-> Attachments Management' => 'respuestas <-> Gestion de Anexos',
# Template: AdminResponseAttachmentForm
# Template: AdminResponseForm
'Response Management' => 'Gestin de respuestas',
'A response is default text to write faster answer (with default text) to customers.' => 'Una respuesta es el texto por defecto para escribir respuestas ms rapido (con el texto por defecto) a los clientes.',
'Don\'t forget to add a new response a queue!' => 'No olvide incluir una nueva respuesta en la cola!',
'Next state' => 'Siguiente estado',
'All Customer variables like defined in config option CustomerUser.' => 'Todas las variables de cliente como aparecen declaradas en la opcion de configuracion del cliente',
'The current ticket state is' => 'El estado actual del ticket es',
'Your email address is new' => 'Su direccin de correo es nueva',
# Template: AdminRoleForm
'Role Management' => 'Gestin de Roles',
'Create a role and put groups in it. Then add the role to the users.' => 'Crea un rol y coloca grupos en el mismo. Luego adiciona el rol a los usuarios.',
'It\'s useful for a lot of users and groups.' => 'Es til para gestionar muchos usuarios y grupos.',
# Template: AdminRoleGroupChangeForm
'Roles <-> Groups Management' => 'Roles <-> Gestion de grupos',
'move_into' => 'mover_a',
'Permissions to move tickets into this group/queue.' => 'Permiso para mover tickets a este grupo/cola',
'create' => 'crear',
'Permissions to create tickets in this group/queue.' => 'Permiso para crear tickets en este grupo/cola',
'owner' => 'propietario',
'Permissions to change the ticket owner in this group/queue.' => 'Permiso para cambiar el propietario del ticket en este grupo/cola',
'priority' => 'prioridad',
'Permissions to change the ticket priority in this group/queue.' => 'Permiso para cambiar la prioridad del ticket en este grupo/cola',
# Template: AdminRoleGroupForm
'Role' => 'Rol',
# Template: AdminRoleUserChangeForm
'Roles <-> Users Management' => 'Roles <-> Gestion de Usuarios',
'Active' => 'Activo',
'Select the role:user relations.' => 'Seleccionar las relaciones Rol-Cliente',
# Template: AdminRoleUserForm
# Template: AdminSalutationForm
'Salutation Management' => 'Gestin de saludos',
'customer realname' => 'Nombre del cliente',
'for agent firstname' => 'nombre del agente',
'for agent lastname' => 'apellido del agente',
'for agent user id' => 'id del agente',
'for agent login' => 'login del agente',
# Template: AdminSelectBoxForm
'Select Box' => 'Ventana de seleccin',
'SQL' => '',
'Limit' => 'Lmite',
'Select Box Result' => 'Seleccione tipo de resultado',
# Template: AdminSession
'Session Management' => 'Gestin de sesiones',
'Sessions' => 'Sesiones',
'Uniq' => '',
'kill all sessions' => 'Finalizar todas las sesiones',
'Session' => 'Sesin',
'kill session' => 'Finalizar una sesin',
# Template: AdminSignatureForm
'Signature Management' => 'Gestin de firmas',
# Template: AdminSMIMEForm
'SMIME Management' => 'Gestion SMIME',
'Add Certificate' => 'Adicionar un certificado',
'Add Private Key' => 'Adicionar una Llave privada',
'Secret' => 'Secreto',
'Hash' => '',
'In this way you can directly edit the certification and private keys in file system.' => 'De esta fomra Ud puede editar directamente la certificacion y llaves privadas el el sistema de archivos.',
# Template: AdminStateForm
'System State Management' => 'Gestin de estados del Sistema',
'State Type' => 'Tipo de estado',
'Take care that you also updated the default states in you Kernel/Config.pm!' => 'Recuerde tambien actualizar los estados en su archivo Kernel/Config.pm! ',
'See also' => 'Vea tambien',
# Template: AdminSysConfig
'SysConfig' => '',
'Group selection' => 'Seleccion de Grupo',
'Show' => 'Mostrar',
'Download Settings' => 'Descargar Configuracion',
'Download all system config changes.' => 'Descargar todos los cambios de configuracion',
'Load Settings' => 'Cargar Configuracion',
'Subgroup' => 'Subgrupo',
'Elements' => 'Elementos',
# Template: AdminSysConfigEdit
'Config Options' => 'Opciones de Configuracion',
'Default' => '',
'Content' => 'Contenido',
'New' => 'Nuevo',
'New Group' => 'Nuevo grupo',
'Group Ro' => 'Grupo Ro',
'New Group Ro' => 'Nuevo Grupo Ro',
'NavBarName' => '',
'Image' => 'Imagen',
'Prio' => '',
'Block' => '',
'NavBar' => '',
'AccessKey' => '',
# Template: AdminSystemAddressForm
'System Email Addresses Management' => 'Gestin de direcciones de correo del sistema',
'Email' => 'Correo',
'Realname' => 'Nombre real',
'All incoming emails with this "Email" (To:) will be dispatched in the selected queue!' => 'Todos los mensajes entrantes con este correo(To:) sern enviados a la cola seleccionada!',
# Template: AdminUserForm
'User Management' => 'Administracin de usuarios',
'Firstname' => 'Nombre',
'Lastname' => 'Apellido',
'User will be needed to handle tickets.' => 'Se necesita un usuario para manipular los tickets.',
'Don\'t forget to add a new user to groups and/or roles!' => 'No olvide adicionar los nuevos usuario a los grupos y/o roles',
# Template: AdminUserGroupChangeForm
'Users <-> Groups Management' => 'Usuarios <-> Gestion de Grupos',
# Template: AdminUserGroupForm
# Template: AgentBook
'Address Book' => 'Libreta de Direcciones',
'Return to the compose screen' => 'Regresar a la pantalla de redaccin',
'Discard all changes and return to the compose screen' => 'Descartar todos los cambios y regresar a la pantalla de redaccin',
# Template: AgentCalendarSmall
# Template: AgentCalendarSmallIcon
# Template: AgentCustomerTableView
# Template: AgentInfo
'Info' => 'Informacin',
# Template: AgentLinkObject
'Link Object' => 'Enlazar Objeto',
'Select' => 'Seleccionar',
'Results' => 'Resultados',
'Total hits' => 'Total de coincidencias',
'Site' => 'Sitio',
'Detail' => 'Detalle',
# Template: AgentLookup
'Lookup' => '',
# Template: AgentNavigationBar
'Ticket selected for bulk action!' => 'Ticket seleccionado para accin mltiple!',
'You need min. one selected Ticket!' => 'Necesita al menos seleccionar un Ticket!',
# Template: AgentPreferencesForm
# Template: AgentSpelling
'Spell Checker' => 'Chequeo Ortogrfico',
'spelling error(s)' => 'errores gramaticales',
'or' => 'o',
'Apply these changes' => 'Aplicar los cambios',
# Template: AgentTicketBounce
'A message should have a To: recipient!' => 'El mensaje debe tenes el destinatario To: !',
'You need a email address (e. g. customer@example.com) in To:!' => 'Necesita una direccin de correo (ejemplo: cliente@ejemplo.com) en To:!',
'Bounce ticket' => 'Ticket rebotado',
'Bounce to' => 'Rebotar a',
'Next ticket state' => 'Nuevo estado del ticket',
'Inform sender' => 'Informar al emisor',
'Your email with ticket number "<OTRS_TICKET>" is bounced to "<OTRS_BOUNCE_TO>". Contact this address for further informations.' => 'Su correo con el ticket nmero "<OTRS_TICKET>" fue rebotado a "<OTRS_BOUNCE_TO>". Contacte dicha direccin para mas informacin',
'Send mail!' => 'Enviar correo!',
# Template: AgentTicketBulk
'A message should have a subject!' => 'Los mensajes deben tener asunto!',
'Ticket Bulk Action' => 'Accin mltiple con Tickets',
'Spell Check' => 'Chequeo Ortogrfico',
'Note type' => 'Tipo de nota',
'Unlock Tickets' => 'Desbloquear Tickets',
# Template: AgentTicketClose
'A message should have a body!' => 'Los mensajes deben tener contenido',
'You need to account time!' => 'Necesita contabilizar el tiempo!',
'Close ticket' => 'Cerrar el ticket',
'Note Text' => 'Nota!',
'Close type' => 'Tipo de cierre',
'Time units' => 'Unidades de tiempo',
' (work units)' => ' (unidades de trabajo)',
# Template: AgentTicketCompose
'A message must be spell checked!' => 'El mensaje debe ser chequeado ortograficamente!',
'Compose answer for ticket' => 'Redacte una respuesta al ticket',
'Attach' => 'Anexo',
'Pending Date' => 'Fecha pendiente',
'for pending* states' => 'en estado pendiente*',
# Template: AgentTicketCustomer
'Change customer of ticket' => 'Cambiar cliente del ticket',
'Set customer user and customer id of a ticket' => 'Asignar agente y cliente de un ticket',
'Customer User' => 'Cliente',
'Search Customer' => 'Bsquedas del cliente',
'Customer Data' => 'Informacin del cliente',
'Customer history' => 'Historia del cliente',
'All customer tickets.' => 'Todos los tickets de un cliente',
# Template: AgentTicketCustomerMessage
'Follow up' => 'Seguimiento',
# Template: AgentTicketEmail
'Compose Email' => 'Redactar Correo',
'new ticket' => 'nuevo ticket',
'Clear To' => 'Copia Oculta a',
'All Agents' => 'Todos los Agentes',
'Termin1' => '',
# Template: AgentTicketForward
'Article type' => 'Tipo de artculo',
# Template: AgentTicketFreeText
'Change free text of ticket' => 'Cambiar el texto libre del ticket',
# Template: AgentTicketHistory
'History of' => 'Historia de',
# Template: AgentTicketLocked
'Ticket locked!' => 'Ticket bloqueado!',
'Ticket unlock!' => 'Ticket desbloqueado!',
# Template: AgentTicketMailbox
'Mailbox' => 'Buzn',
'Tickets' => '',
'All messages' => 'Todos los mensajes',
'New messages' => 'Nuevo mensaje',
'Pending messages' => 'Mensajes pendientes',
'Reminder messages' => 'Mensajes recordatorios',
'Reminder' => 'Recordatorio',
'Sort by' => 'Ordenado por',
'Order' => 'Orden',
'up' => 'arriba',
'down' => 'abajo',
# Template: AgentTicketMerge
'You need to use a ticket number!' => 'Necesita user un numero de ticket!',
'Ticket Merge' => 'Unir Ticket',
'Merge to' => 'Unir a',
'Your email with ticket number "<OTRS_TICKET>" is merged to "<OTRS_MERGE_TO_TICKET>".' => 'Su correo con numero de ticket "<OTRS_TICKET>" se unio a "<OTRS_MERGE_TO_TICKET>".',
# Template: AgentTicketMove
'Queue ID' => 'Id de la Cola',
'Move Ticket' => 'Mover Ticket',
'Previous Owner' => 'Propietario Anterior',
# Template: AgentTicketNote
'Add note to ticket' => 'Adicionar nota al ticket',
'Inform Agent' => 'Notificar Agente',
'Optional' => 'Opcional',
'Inform involved Agents' => 'Notificar Agentes involucrados',
# Template: AgentTicketOwner
'Change owner of ticket' => 'Cambiar el propietario del ticket',
'Message for new Owner' => 'Mensaje para el nuevo propietario',
# Template: AgentTicketPending
'Set Pending' => 'Indicar pendiente',
'Pending type' => 'Tipo pendiente',
'Pending date' => 'Fecha pendiente',
# Template: AgentTicketPhone
'Phone call' => 'Llamada telefnica',
# Template: AgentTicketPhoneNew
'Clear From' => 'Borrar de',
# Template: AgentTicketPlain
'Plain' => 'Texto plano',
'TicketID' => 'Identificador de Ticket',
'ArticleID' => 'Identificador de articulo',
# Template: AgentTicketPrint
'Ticket-Info' => 'Informacion-Ticket',
'Accounted time' => 'Tiempo contabilizado',
'Escalation in' => 'Escalado en',
'Linked-Object' => 'Objeta-vincular',
'Parent-Object' => 'Objeto-Padre',
'Child-Object' => 'Objeto-Hijo',
'by' => 'por',
# Template: AgentTicketPriority
'Change priority of ticket' => 'Cambiar la prioridad al ticket',
# Template: AgentTicketQueue
'Tickets shown' => 'Tickets mostrados',
'Page' => 'Pgina',
'Tickets available' => 'Tickets disponibles',
'All tickets' => 'Todos los tickets',
'Queues' => 'Colas',
'Ticket escalation!' => 'Escalado de ticket',
# Template: AgentTicketQueueTicketView
'Your own Ticket' => 'Sus tickets',
'Compose Follow up' => 'Redactar seguimiento',
'Compose Answer' => 'Responder',
'Contact customer' => 'Contactar el cliente',
'Change queue' => 'Cambiar cola',
# Template: AgentTicketQueueTicketViewLite
# Template: AgentTicketSearch
'Ticket Search' => 'Buscar ticket',
'Profile' => 'Perfil',
'Search-Template' => 'Buscar-Modelo',
'Created in Queue' => 'Creado en Cola',
'Result Form' => 'Modelo de Resultados',
'Save Search-Profile as Template?' => 'Guardar perfil de bsqueda como patrn?',
'Yes, save it with name' => 'Si, guardarlo con nombre',
'Customer history search' => 'Historia de bsquedas del cliente',
'Customer history search (e. g. "ID342425").' => 'Historia de bsquedas del cliente (ejemplo: "ID342425"',
'No * possible!' => 'No * posible!',
# Template: AgentTicketSearchResult
'Search Result' => 'Buscar resultados',
'Change search options' => 'Cambiar opciones de bsqueda',
# Template: AgentTicketSearchResultPrint
'"}' => '',
# Template: AgentTicketSearchResultShort
'sort upward' => 'ordenar ascendente',
'U' => 'A',
'sort downward' => 'ordenar descendente',
'D' => '',
# Template: AgentTicketStatusView
'Ticket Status View' => 'Ver Estado de Ticket',
'Open Tickets' => 'Tickets Abiertos',
# Template: AgentTicketZoom
'Split' => 'Dividir',
# Template: AgentTicketZoomStatus
'Locked' => 'Bloqueado',
# Template: AgentWindowTabStart
# Template: AgentWindowTabStop
# Template: Copyright
# Template: css
# Template: customer-css
# Template: CustomerAccept
# Template: CustomerCalendarSmallIcon
# Template: CustomerError
'Traceback' => '',
# Template: CustomerFAQ
'Print' => 'Imprimir',
'Keywords' => 'palabras clave',
'Symptom' => 'Sintoma',
'Problem' => 'Problema',
'Solution' => 'Solucin',
'Modified' => 'Modificado',
'Last update' => 'Ultima Actualizacin',
'FAQ System History' => 'Sistema de historia de FAQ',
'modified' => 'modificado',
'FAQ Search' => 'Buscar en la FAQ',
'Fulltext' => 'Texto Completo',
'Keyword' => 'palabra clave',
'FAQ Search Result' => 'Resultado de bsqueda en la FAQ',
'FAQ Overview' => 'Resumen de la FAQ',
# Template: CustomerFooter
'Powered by' => '',
# Template: CustomerFooterSmall
# Template: CustomerHeader
# Template: CustomerHeaderSmall
# Template: CustomerLogin
'Login' => 'Identificador',
'Lost your password?' => 'Perdi su contrasea',
'Request new password' => 'Solicitar una nueva contrasea',
'Create Account' => 'Crear Cuenta',
# Template: CustomerNavigationBar
'Welcome %s' => 'Bienvenido %s',
# Template: CustomerPreferencesForm
# Template: CustomerStatusView
'of' => 'de',
# Template: CustomerTicketMessage
# Template: CustomerTicketMessageNew
# Template: CustomerTicketSearch
# Template: CustomerTicketSearchResultCSV
# Template: CustomerTicketSearchResultPrint
# Template: CustomerTicketSearchResultShort
# Template: CustomerTicketZoom
# Template: CustomerWarning
# Template: Error
'Click here to report a bug!' => 'Haga click aqui para reportar un error!',
# Template: FAQ
'Comment (internal)' => 'Comentario (interno)',
'A article should have a title!' => 'Los articulos deben tener ttulo',
'New FAQ Article' => 'Nuevo Articulo de la FAQ',
'Do you really want to delete this Object?' => 'VErdaderamente desea eliminar esre objeto?',
'System History' => 'Historia del Sistema',
# Template: FAQCategoryForm
'Name is required!' => 'Debe especificar nombre!',
'FAQ Category' => 'Categoria de FAQ',
# Template: FAQLanguageForm
'FAQ Language' => 'Idioma de la FAQ',
# Template: Footer
'QueueView' => 'Ver la cola',
'PhoneView' => 'Vista telefnica',
'Top of Page' => 'Inicio de pgina',
# Template: FooterSmall
# Template: Header
'Home' => 'Inicio',
# Template: HeaderSmall
# Template: Installer
'Web-Installer' => 'Instalador Web',
'accept license' => 'aceptar licencia',
'don\'t accept license' => 'no acepto la licencia',
'Admin-User' => 'Usuario-Admin',
'Admin-Password' => 'Contrasea-Administrador',
'your MySQL DB should have a root password! Default is empty!' => 'Su BD MySQL debe tener una contrase&ntiulde; de root! Por defecto es vaĩa!',
'Database-User' => '',
'default \'hot\'' => 'por defecto \'hot\'',
'DB connect host' => '',
'Database' => 'Base de Datos',
'Create' => 'Crear',
'false' => 'falso',
'SystemID' => 'ID de sistema',
'(The identify of the system. Each ticket number and each http session id starts with this number)' => '(La identidad del sistema. Cada nmero de ticket y cada id de sesión http comienza con este nmero)',
'System FQDN' => 'FQDN del sistema',
'(Full qualified domain name of your system)' => '(Nombre completo del dominio de su sistema)',
'AdminEmail' => 'Correo del administrador.',
'(Email of the system admin)' => '(email del administrador del sistema)',
'Organization' => 'Organizacin',
'Log' => 'Traza',
'LogModule' => 'Modulo de trazas',
'(Used log backend)' => '(Interface de trazas Utilizada)',
'Logfile' => 'Archivo de trazas',
'(Logfile just needed for File-LogModule!)' => '(Archivo de trazas necesario para File-LogModule)',
'Webfrontend' => 'Interface Web',
'Default Charset' => 'Juego de caracteres por defecto',
'Use utf-8 it your database supports it!' => 'Usar utf-8 si su base de datos lo soporta!',
'Default Language' => 'Lenguaje por defecto',
'(Used default language)' => '(Lenguaje por defecto)',
'CheckMXRecord' => 'Revisar record MX',
'(Checks MX recordes of used email addresses by composing an answer. Don\'t use CheckMXRecord if your OTRS machine is behinde a dial-up line $!)' => '(Chequear record MX de direcciones utilizadas al responder. No usarlo si la PC con el Otrs esta detrs de una linea conmutada $!)',
'To be able to use OTRS you have to enter the following line in your command line (Terminal/Shell) as root.' => 'Para poder utilizar el OTRS debe escribir la siguiente linea de comandos (Terminal/Shell) como root',
'Restart your webserver' => 'Reinicie su servidor web',
'After doing so your OTRS is up and running.' => 'Despus de hacer esto su OTRS estar activo y ejecutandose',
'Start page' => 'Pgina de inicio',
'Have a lot of fun!' => 'Disfrutelo!',
'Your OTRS Team' => 'Su equipo OTRS',
# Template: Login
# Template: Motd
# Template: NoPermission
'No Permission' => 'No tiene autorizacin',
# Template: Notify
'Important' => 'Importante',
# Template: PrintFooter
'URL' => '',
# Template: PrintHeader
'printed by' => 'impreso por',
# Template: Redirect
# Template: SystemStats
'Format' => 'Formato',
# Template: Test
'OTRS Test Page' => 'Pgina de Prueba de OTRS',
'Counter' => 'Contador',
# Template: Warning
# Misc
'Create Database' => 'Crear Base de Datos',
'Ticket Number Generator' => 'Generador de nmeros de Tickets',
'(Ticket identifier. Some people want toset this to e. g. \'Ticket#\', \'Call#\' or \'MyTicket#\')' => '(Identificador de Ticker. Algunas personas gustan de usar por ejemplo \'Ticket#\', \'Call#\' or \'MyTicket#\')',
'In this way you can directly edit the keyring configured in Kernel/Config.pm.' => 'De esta forma Ud puede editar directamente las llaves configuradas en Kernel/Config.pm.',
'Change users <-> roles settings' => '',
'Close!' => 'Cerrar!',
'TicketZoom' => 'Detalle de Ticket',
'Don\'t forget to add a new user to groups!' => 'No olvide incluir el usuario en grupos!',
'License' => 'Licencia',
'CreateTicket' => 'CrearTicket',
'OTRS DB Name' => 'Nombre de la BD OTRS',
'System Settings' => 'Configuracin del sistema',
'Hours' => 'Horas',
'Finished' => 'Finalizado',
'Days' => 'Dias',
'DB Admin User' => 'Usuario Admin de la BD',
'DB Type' => 'Tipo de BD',
'next step' => 'prximo paso',
'Admin-Email' => 'Correo Administrativo',
'Create new database' => 'Crear nueva base de datos',
'Delete old database' => 'Eliminar BD antigua',
'OTRS DB User' => 'Usuario de BD OTRS',
'Options ' => 'Opciones',
'OTRS DB Password' => 'Contrasea para BD del usuario OTRS',
'DB Admin Password' => 'Contrasea del Admin de la BD',
'Drop Database' => 'Eliminar Base de Datos',
'Minutes' => 'Minutos',
'(Used ticket number format)' => '(Formato de ticket usado)',
'FAQ History' => 'Historia de FAQ',
'Package not correctly deployed, you need to deploy it again!' => '',
'Customer called' => '',
'Phone' => '',
'Office' => '',
'CompanyTickets' => '',
'MyTickets' => '',
'New Ticket' => '',
'Create new Ticket' => '',
'installed' => '',
'uninstalled' => '',
};
# $$STOP$$
}
# --
1;
|