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 1216
|
# --
# Kernel/Language/it.pm - provides it language translation
# Copyright (C) 2003 Remo Catelotti <Remo.Catelotti at bull.it>
# 2003 Gabriele Santilli <gsantilli at omnibus.net>
# 2005 Giordano Bianchi <giordano.bianchi at gmail.com>
# --
# $Id: it.pm,v 1.25 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::it;
use strict;
use vars qw($VERSION);
$VERSION = '$Revision: 1.25 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
# --
sub Data {
my $Self = shift;
my %Param = @_;
# $$START$$
# Last translation file sync: Thu Jul 28 22:14:25 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 %Y %T';
$Self->{DateInputFormat} = '%D/%M/%Y';
$Self->{DateInputFormatLong} = '%D/%M/%Y - %T';
$Self->{Translation} = {
# Template: AAABase
'Yes' => 'S',
'No' => '',
'yes' => 's',
'no' => '',
'Off' => 'Spento',
'off' => 'spento',
'On' => 'Acceso',
'on' => 'acceso',
'top' => 'inizio pagina',
'end' => 'fine pagina',
'Done' => 'Fatto',
'Cancel' => 'Annulla',
'Reset' => 'Ripristina',
'last' => 'ultimo',
'before' => 'precedente',
'day' => 'giorno',
'days' => 'giorni',
'day(s)' => 'giorno(i)',
'hour' => 'ora',
'hours' => 'ore',
'hour(s)' => 'ora(e)',
'minute' => 'minuto',
'minutes' => 'minuti',
'minute(s)' => 'minuto(i)',
'month' => 'mese',
'months' => 'mesi',
'month(s)' => 'mese(i)',
'week' => 'settimana',
'week(s)' => 'settimana(e)',
'year' => 'anno',
'years' => 'anni',
'year(s)' => 'anno(i)',
'wrote' => 'ha scritto',
'Message' => 'Messaggio',
'Error' => 'Errore',
'Bug Report' => 'Segnala anomalie',
'Attention' => 'Attenzione',
'Warning' => 'Attenzione',
'Module' => 'Modulo',
'Modulefile' => 'Archivio del modulo',
'Subfunction' => 'Sotto-funzione',
'Line' => 'Linea',
'Example' => 'Esempio',
'Examples' => 'Esempi',
'valid' => 'valido',
'invalid' => 'non valido',
'invalid-temporarily' => 'non valido-temporaneamente',
' 2 minutes' => ' 2 minuti',
' 5 minutes' => ' 5 minuti',
' 7 minutes' => ' 7 minuti',
'10 minutes' => '10 minuti',
'15 minutes' => '15 minuti',
'Mr.' => 'Sig',
'Mrs.' => 'Sig.ra',
'Next' => 'Prossimo',
'Back' => 'Indietro',
'Next...' => 'Prossimo...',
'...Back' => '...indietro',
'-none-' => '-none-',
'none' => 'nessuno',
'none!' => 'nessuno!',
'none - answered' => 'nessuno - risposto',
'please do not edit!' => 'per favore non modificare!',
'AddLink' => 'Aggiungi link',
'Link' => 'Collega',
'Linked' => 'Collegato',
'Link (Normal)' => 'Collega (Normale)',
'Link (Parent)' => 'Collega (Genitore)',
'Link (Child)' => 'Collega (Figlio)',
'Normal' => 'Normale',
'Parent' => 'Genitore',
'Child' => 'Figlio',
'Hit' => 'Accesso',
'Hits' => 'Accessi',
'Text' => 'Testo',
'Lite' => 'Ridotta',
'User' => 'Utenti',
'Username' => 'Nome utente',
'Language' => 'Lingua',
'Languages' => 'Lingue',
'Password' => '',
'Salutation' => 'Titolo',
'Signature' => 'Firma',
'Customer' => 'Cliente',
'CustomerID' => 'Codice cliente',
'CustomerIDs' => 'Codici Cliente',
'customer' => 'cliente',
'agent' => 'operatore',
'system' => 'sistema',
'Customer Info' => 'Informazioni Cliente',
'go!' => 'vai!',
'go' => 'vai',
'All' => 'Tutti',
'all' => 'tutti',
'Sorry' => 'Spiacente',
'update!' => 'aggiorna!',
'update' => 'aggiorna',
'Update' => 'Aggiorna',
'submit!' => 'accetta!',
'submit' => 'accetta',
'Submit' => 'Accetta',
'change!' => 'Modifica!',
'Change' => 'Modifica',
'change' => 'modifica',
'click here' => 'clicca qui',
'Comment' => 'Commento',
'Valid' => 'Valido',
'Invalid Option!' => 'Opzione non-valida',
'Invalid time!' => 'ora non-valida',
'Invalid date!' => 'data non-valida',
'Name' => 'Nome',
'Group' => 'Gruppo',
'Description' => 'Descrizione',
'description' => 'descrizione',
'Theme' => 'Tema',
'Created' => 'Creato',
'Created by' => 'Creato da',
'Changed' => 'Modificato',
'Changed by' => 'Modificato da',
'Search' => 'Cerca',
'and' => 'e',
'between' => 'tra',
'Fulltext Search' => 'Ricerca Fulltext',
'Data' => '',
'Options' => 'Opzioni',
'Title' => 'Titolo',
'Item' => 'Oggetto',
'Delete' => 'Cancella',
'Edit' => 'Modifica',
'View' => 'Vista',
'Number' => 'Numero',
'System' => 'Sistema',
'Contact' => 'Contatto',
'Contacts' => 'Contatti',
'Export' => 'Esporta',
'Up' => 'Su',
'Down' => 'Gi',
'Add' => 'Aggiungi',
'Category' => 'Categoria',
'Viewer' => 'Visualizzatore',
'New message' => 'Nuovo messaggio',
'New message!' => 'Nuovo messaggio!',
'Please answer this ticket(s) to get back to the normal queue view!' => 'Per favore rispondi a queste richieste prima di tornare alla lista!',
'You got new message!' => 'Hai un nuovo messaggio!',
'You have %s new message(s)!' => 'Hai %s nuovi messaggi!',
'You have %s reminder ticket(s)!' => 'Hai %s Richiesta(e) memorizzati',
'The recommended charset for your language is %s!' => 'Il set di caratteri raccomandato per la tua lingua %s!',
'Passwords dosn\'t match! Please try it again!' => 'La password non corrisponde! Per favore, prova di nuovo',
'Password is already in use! Please use an other password!' => 'La password gi in uso. Per favore provare con un\' altra password',
'Password is already used! Please use an other password!' => 'La password gi stata usata! Provare con un\' altra password',
'You need to activate %s first to use it!' => 'Devi prima attivare %s per poterlo usare',
'No suggestions' => 'Non ci sono suggerimenti',
'Word' => 'Parola',
'Ignore' => 'Ignora',
'replace with' => 'sostituisci con',
'Welcome to OTRS' => 'Benvenuto in OTRS',
'There is no account with that login name.' => 'Nome utente non valido.',
'Login failed! Your username or password was entered incorrectly.' => 'Accesso fallito! Nome utente o password non corretti.',
'Please contact your admin' => 'Per favore contatta il tuo amministratore',
'Logout successful. Thank you for using OTRS!' => 'Disconnessione avvenuta con successo. Grazie per aver usato OTRS!',
'Invalid SessionID!' => 'ID di sessione non valido!',
'Feature not active!' => 'Funzione non attiva!',
'Take this Customer' => 'Prendi questo Cliente',
'Take this User' => 'Prendi questo Utente',
'possible' => 'possibile',
'reject' => 'respinto',
'Facility' => 'Funzione',
'Timeover' => 'Tempo scaduto',
'Pending till' => 'In attesa per',
'Don\'t work with UserID 1 (System account)! Create new users!' => 'Non lavorare con l\'operatore con ID 1 (System account)! Crea dei nuovi utenti!',
'Dispatching by email To: field.' => 'Smistamento in base al campo To:.',
'Dispatching by selected Queue.' => 'Smistamento in base alla coda selezionata.',
'No entry found!' => 'Vuoto!',
'Session has timed out. Please log in again.' => 'Sessione scaduta. Per favore, effettua di nuovo l\'accesso.',
'No Permission!' => 'Permessi insufficienti',
'To: (%s) replaced with database email!' => 'A: (%s) sostituito con l\'indirizzo presente nel database',
'Cc: (%s) added database email!' => '',
'(Click here to add)' => '(clicca per aggiungere)',
'Preview' => 'Anteprima',
'Added User "%s"' => 'Utente "%s" aggiunto',
'Contract' => 'Contratto',
'Online Customer: %s' => 'Clienti collegati: %s',
'Online Agent: %s' => 'Operatori collegati: %s',
'Calendar' => 'Calendario',
'File' => '',
'Filename' => 'Nome file',
'Type' => 'Tipo',
'Size' => 'Dimensione',
'Upload' => 'Caricamento',
'Directory' => 'Cartella',
'Signed' => 'Firmato',
'Sign' => 'Firma',
'Crypted' => 'Crittografato',
'Crypt' => 'Crittografa',
# Template: AAAMonth
'Jan' => 'Gen',
'Feb' => '',
'Mar' => '',
'Apr' => '',
'May' => 'Mag',
'Jun' => 'Giu',
'Jul' => 'Lug',
'Aug' => 'Ago',
'Sep' => 'Set',
'Oct' => 'Ott',
'Nov' => '',
'Dec' => 'Dic',
# Template: AAANavBar
'Admin-Area' => 'Area Amministrazione',
'Agent-Area' => 'Area Operatore',
'Ticket-Area' => 'Area Richieste',
'Logout' => 'Esci',
'Agent Preferences' => 'Impostazione preferenze per l\'operatore',
'Preferences' => 'Preferenze',
'Agent Mailbox' => 'Casella dell\' Operatore',
'Stats' => 'Statistiche',
'Stats-Area' => 'Area Statistiche',
'FAQ-Area' => 'Area FAQ',
'FAQ' => '',
'FAQ-Search' => 'Ricerca FAQ',
'FAQ-Article' => 'Articolo FAQ',
'New Article' => 'Nuovo articolo',
'FAQ-State' => 'Stato FAQ',
'Admin' => '',
'A web calendar' => 'Calendario web',
'WebMail' => '',
'A web mail client' => 'Un client di web mail',
'FileManager' => '',
'A web file manager' => 'Un gestore dei file via web',
'Artefact' => 'Artefatto',
'Incident' => 'Incidente',
'Advisory' => 'Avviso',
'WebWatcher' => '',
'Customer Users' => 'Utenti Clienti',
'Customer Users <-> Groups' => 'Utenti Clienti <-> Gruppi',
'Users <-> Groups' => 'Utenti <-> Gruppi',
'Roles' => 'Ruoli',
'Roles <-> Users' => 'Ruoli <-> Utenti',
'Roles <-> Groups' => 'Ruoli <-> Gruppi',
'Salutations' => '',
'Signatures' => 'Firme',
'Email Addresses' => 'Indirizzi Email',
'Notifications' => 'Notifiche',
'Category Tree' => 'Albero delle Categorie',
'Admin Notification' => 'Notifiche Amministrative',
# Template: AAAPreferences
'Preferences updated successfully!' => 'Preferenze modificate con successo!',
'Mail Management' => 'Gestione posta',
'Frontend' => 'Interfaccia',
'Other Options' => 'Altre opzioni',
'Change Password' => 'Cambia Password',
'New password' => 'Nuova Password',
'New password again' => 'Ripetere Nuova Password',
'Select your QueueView refresh time.' => 'Scegli il tempo di aggiornamento della lista delle richieste.',
'Select your frontend language.' => 'Scegli la lingua per la tua interfaccia.',
'Select your frontend Charset.' => 'Seleziona il set di caratteri da usare.',
'Select your frontend Theme.' => 'Scegli il tema per la tua interfaccia.',
'Select your frontend QueueView.' => 'Scegli l\'interfaccia per la lista messaggi.',
'Spelling Dictionary' => 'Dizionario',
'Select your default spelling dictionary.' => 'Seleziona il dizionario standard',
'Max. shown Tickets a page in Overview.' => 'Numero massimo di richieste per pagina nel Sommario',
'Can\'t update password, passwords dosn\'t match! Please try it again!' => '',
'Can\'t update password, invalid characters!' => 'Non posso aggiornare la password, dei caratteri non sono validi',
'Can\'t update password, need min. 8 characters!' => 'Non posso aggiornare la password, ho bisogno di almeno 8 caratteri ',
'Can\'t update password, need 2 lower and 2 upper characters!' => 'Non posso aggiornare la password, ho bisogno di 2 caratteri maiuscoli e 2 minuscoli ',
'Can\'t update password, need min. 1 digit!' => 'Non posso aggiornare la password, ho bisogno di almeno 1 numero',
'Can\'t update password, need min. 2 characters!' => 'Non posso aggiornare la password, ho bisogno di almeno 2 caratteri',
'Password is needed!' => 'La password richiesta',
# Template: AAATicket
'Lock' => 'Prendi in gestione',
'Unlock' => 'Abbandona gestione',
'History' => 'Storico',
'Zoom' => 'Dettagli',
'Age' => 'Tempo trascorso',
'Bounce' => 'Rispedisci al mittente',
'Forward' => 'Inoltra',
'From' => 'Da',
'To' => 'A',
'Cc' => '',
'Bcc' => '',
'Subject' => 'Oggetto',
'Move' => 'Sposta',
'Queue' => 'Coda',
'Priority' => 'Priorit',
'State' => 'Stato',
'Compose' => 'Componi',
'Pending' => 'In attesa',
'Owner' => 'Operatore',
'Owner Update' => 'Aggiornamento Operatore',
'Sender' => 'Mittente',
'Article' => 'Articolo',
'Ticket' => 'Richiesta',
'Createtime' => 'Istante di creazione',
'plain' => 'diretto',
'eMail' => '',
'email' => '',
'Close' => 'Chiudi',
'Action' => 'Azione',
'Attachment' => 'Allegato',
'Attachments' => 'Allegati',
'This message was written in a character set other than your own.' => 'Questo messaggio stato scritto in un set di caratteri diverso dal tuo.',
'If it is not displayed correctly,' => 'Se non visualizzato correttamente,',
'This is a' => 'Questo un',
'to open it in a new window.' => 'per aprire in una nuova finestra.',
'This is a HTML email. Click here to show it.' => 'Questa una email in HTML. Clicca qui per visualizzarla.',
'Free Fields' => 'Campi Liberi',
'Merge' => 'Unisci',
'closed successful' => 'chiuso con successo',
'closed unsuccessful' => 'chiuso senza successo',
'new' => 'nuovo',
'open' => 'aperto',
'closed' => 'chiuso',
'removed' => 'rimosso',
'pending reminder' => 'in attesa di risposta',
'pending auto close+' => 'in attesa di chiusura automatica+',
'pending auto close-' => 'in attesa di chiusura automatica-',
'email-external' => 'eMail esterna',
'email-internal' => 'eMail interna',
'note-external' => 'Nota esterna',
'note-internal' => 'Nota interna',
'note-report' => 'Nota rapporto',
'phone' => 'telefono',
'sms' => '',
'webrequest' => 'richiesta da web',
'lock' => 'prendi in gestione',
'unlock' => 'abbandona gestione',
'very low' => 'molto basso',
'low' => 'basso',
'normal' => 'normale',
'high' => 'alto',
'very high' => 'molto alto',
'1 very low' => '1 molto bassa',
'2 low' => '2 bassa',
'3 normal' => '3 normale',
'4 high' => '4 alta',
'5 very high' => '5 molto alta',
'Ticket "%s" created!' => 'Richiesta "%s" creata!',
'Ticket Number' => 'Numero Richiesta',
'Ticket Object' => 'Oggetto Richiesta',
'No such Ticket Number "%s"! Can\'t link it!' => 'Numero richiesta "%s" non presente! Collegamento impossibile!',
'Don\'t show closed Tickets' => 'Non mostrare le richieste chiuse',
'Show closed Tickets' => 'Mostra le richieste chiuse',
'Email-Ticket' => 'Richiesta Email',
'Create new Email Ticket' => 'Crea una nuova richiesta via email',
'Phone-Ticket' => 'Richiesta-Telefonica',
'Create new Phone Ticket' => 'Crea una nuova richiesta in seguito ad una chiamata telefonica',
'Search Tickets' => 'Ricerca Richieste',
'Edit Customer Users' => 'Modifica Utenti Clienti',
'Bulk-Action' => 'Operazioni Multiple',
'Bulk Actions on Tickets' => 'Operazione di massa sulle richieste',
'Send Email and create a new Ticket' => 'Manda un email e crea una nuova richiesta',
'Overview of all open Tickets' => 'Vista globale di tutte le richieste aperte',
'Locked Tickets' => 'Richieste in gestione',
'Lock it to work on it!' => 'Prendi in gestione per lavorarci',
'Unlock to give it back to the queue!' => 'Abbandona la gestione per ri-inserirla nella coda',
'Shows the ticket history!' => 'Visualizza lo storico della richiesta',
'Print this ticket!' => 'Stampa questa richiesta',
'Change the ticket priority!' => 'Cambia la priorit della richiesta',
'Change the ticket free fields!' => 'Cambia i campi liberi della richiesta',
'Link this ticket to an other objects!' => 'Collega questa richiesta ad un altro oggetto',
'Change the ticket owner!' => 'Cambia il proprietario della richiesta',
'Change the ticket customer!' => 'Cambia il cliente della richiesta',
'Add a note to this ticket!' => 'Aggiungi una nota a questa richiesta',
'Merge this ticket!' => 'Unisci questa richiesta',
'Set this ticket to pending!' => 'Imposta questa richiesta come sospesa',
'Close this ticket!' => 'Chiudi questa richiesta',
'Look into a ticket!' => 'Visualizza questa richiesta',
'Delete this ticket!' => 'Cancella questa richiesta',
'Mark as Spam!' => 'Segnala come spam',
'My Queues' => 'Le mie Code',
'Shown Tickets' => 'Richieste Visualizzate',
'New ticket notification' => 'Notifica nuova richiesta',
'Send me a notification if there is a new ticket in "My Queues".' => 'Mandami una notifica se viene inserita una nuova richiesta in una coda della lista "Le mie Code"',
'Follow up notification' => 'Notifica di risposta',
'Send me a notification if a customer sends a follow up and I\'m the owner of this ticket.' => 'Mandami una notifica se un cliente risponde ad una richiesta che ho io in gestione.',
'Ticket lock timeout notification' => 'Notifica scadenza gestione richieste',
'Send me a notification if a ticket is unlocked by the system.' => 'Mandami una notifica se una richiesta viene sbloccata dal sistema.',
'Move notification' => 'Notifica spostamento',
'Send me a notification if a ticket is moved into one of "My Queues".' => 'Mandami una notifica se una richiesta viene spostata in una coda della lista "Le mie Code"',
'Your queue selection of your favorite queues. You also get notified about this queues via email if enabled.' => 'La vostra selezione delle code preferite. Se attivato, sarete anche notificati delle modifiche su questa coda',
'Custom Queue' => 'Coda personale',
'QueueView refresh time' => 'Tempo di aggiornamento lista richieste',
'Screen after new ticket' => 'Pagina da mostrare dopo una nuova richiesta',
'Select your screen after creating a new ticket.' => 'Scegli la pagina da mostrare dopo una nuova richiesta',
'Closed Tickets' => 'Richieste chiuse',
'Show closed tickets.' => 'Mostra le richieste chiuse.',
'Max. shown Tickets a page in QueueView.' => 'Numero massimo di richieste per pagina nella Lista Richieste',
'Responses' => 'Risposte',
'Responses <-> Queue' => '',
'Auto Responses' => 'Risposte Automatiche',
'Auto Responses <-> Queue' => 'Risposte Automatiche <-> Code',
'Attachments <-> Responses' => 'Allegati <-> Risposte',
'History::Move' => 'Richiesta mossa nella coda "%s" (%s) dalla coda "%s" (%s).',
'History::NewTicket' => 'Nuova richiesta [%s] creata (Q=%s;P=%s;S=%s).',
'History::FollowUp' => 'Prosecuzione per [%s]. %s',
'History::SendAutoReject' => 'Rifiuto automatico inviato a "%s".',
'History::SendAutoReply' => 'Risposta automatica inviata a "%s".',
'History::SendAutoFollowUp' => 'Prosecuzione automatica inviata a "%s".',
'History::Forward' => 'Inoltrato a "%s".',
'History::Bounce' => 'Rimbalzato a "%s".',
'History::SendAnswer' => 'Email inviata a "%s".',
'History::SendAgentNotification' => '"%s"-notifica inviata a "%s".',
'History::SendCustomerNotification' => 'Notifica inviata a "%s".',
'History::EmailAgent' => 'Email inviata al cliente.',
'History::EmailCustomer' => 'Email. %s aggiunta',
'History::PhoneCallAgent' => 'L\'operatore ha chiamato il cliente.',
'History::PhoneCallCustomer' => 'Il cliente ha chiamato noi.',
'History::AddNote' => 'Aggiunta nota (%s)',
'History::Lock' => 'Richiesta bloccata.',
'History::Unlock' => 'Richiesta lasciata.',
'History::TimeAccounting' => '%s unita\' temporali addebitate. Nuovo totale: %s.',
'History::Remove' => 'Rimosso da %s',
'History::CustomerUpdate' => 'Aggiornato: %s',
'History::PriorityUpdate' => 'Priorita\' cambiata da "%s" (%s) a "%s" (%s).',
'History::OwnerUpdate' => 'Nuovo operatore assegnato = "%s" (ID=%s).',
'History::LoopProtection' => 'Loop-Protection! Nessuna risposta automatica inviata a "%s".',
'History::Misc' => '%s',
'History::SetPendingTime' => 'Aggiornato: %s',
'History::StateUpdate' => 'Vecchio: "%s" Nuovo: "%s"',
'History::TicketFreeTextUpdate' => 'Aggiornato: %s=%s;%s=%s;',
'History::WebRequestCustomer' => 'Richiesta del cliente via web.',
'History::TicketLinkAdd' => 'Aggiunto link alla richiesta "%s".',
'History::TicketLinkDelete' => 'Eliminato link alla richiesta "%s".',
# Template: AAAWeekDay
'Sun' => 'Dom',
'Mon' => 'Lun',
'Tue' => 'Mar',
'Wed' => 'Mer',
'Thu' => 'Gio',
'Fri' => 'Ven',
'Sat' => 'Sab',
# Template: AdminAttachmentForm
'Attachment Management' => 'Gestione allegati',
# Template: AdminAutoResponseForm
'Auto Response Management' => 'Gestione risposte automatiche',
'Response' => 'Risposta',
'Auto Response From' => 'Risposta automatica da',
'Note' => 'Nota',
'Useable options' => 'Opzioni disponibili',
'to get the first 20 character of the subject' => 'per avere i primi 20 caratteri dell\'oggetto',
'to get the first 5 lines of the email' => 'per avere le prime 5 linee del messaggio',
'to get the from line of the email' => 'per avere il mittente del messaggio',
'to get the realname of the sender (if given)' => 'per avere il nome completo del mittente (se indicato)',
'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.' => 'La finestra con il messaggio che si stava componendo stata chiusa. Sto uscendo.',
'This window must be called from compose window' => 'Questa finestra deve essere aperta dalla finestra di composizione dei mesaggi',
'Customer User Management' => 'Gestione clienti',
'Search for' => 'Cerca',
'Result' => 'Risultato',
'Select Source (for add)' => 'Seleziona sorgente (da aggiungere)',
'Source' => 'Sorgente',
'This values are read only.' => 'Questi valori non sono modificabili',
'This values are required.' => 'Questi valori sono richiesti',
'Customer user will be needed to have an customer histor and to to login via customer panels.' => 'Il cliente sar necessario per registrare la sua storia e permettere il collegamento via web',
# Template: AdminCustomerUserGroupChangeForm
'Customer Users <-> Groups Management' => '',
'Change %s settings' => 'Modifica impostazioni di %s',
'Select the user:group permissions.' => 'Seleziona i permessi della coppia utente:gruppo.',
'If nothing is selected, then there are no permissions in this group (tickets will not be available for the user).' => 'Se non viene selezionata nessuna opzione, non verranno dati permessi a questo gruppo (le richieste non saranno disponibili).',
'Permission' => 'Permessi',
'ro' => 'sola lettura',
'Read only access to the ticket in this group/queue.' => 'Accesso in sola lettura alle richieste in questo gruppo/coda.',
'rw' => 'lettura e scrittura',
'Full read and write access to the tickets in this group/queue.' => 'Accesso completo in lettura e scrittura alle richieste in questo gruppo/coda',
# Template: AdminCustomerUserGroupForm
# Template: AdminEmail
'Message sent to' => 'Messaggio inviato a',
'Recipents' => 'Destinatari',
'Body' => 'Testo',
'send' => 'invia',
# Template: AdminGenericAgent
'GenericAgent' => 'OperatoreGenerico',
'Job-List' => 'Lista attivit',
'Last run' => 'Ultima esecuzione',
'Run Now!' => 'Esegui Ora',
'x' => '',
'Save Job as?' => 'Salva attivit con nome?',
'Is Job Valid?' => 'L\' attivit normale?',
'Is Job Valid' => 'L\' attivit normale',
'Schedule' => 'Programma',
'Fulltext-Search in Article (e. g. "Mar*in" or "Baue*")' => 'Ricerca a testo libero nel testo dell\'articolo (per esempio \'Ro*si\' o \'Ma*io\')',
'(e. g. 10*5155 or 105658*)' => '(per esempio \'10*5155\' o \'105658*\')',
'(e. g. 234321)' => '(per esempio \'234321\')',
'Customer User Login' => 'Identificativo di Accesso del Cliente',
'(e. g. U5150)' => '(per esempio \'U5150\')',
'Agent' => 'Operatore',
'TicketFreeText' => 'Ricerca a testo libero nella richiesta',
'Ticket Lock' => 'Gestione Richiesta',
'Times' => 'Volte',
'No time settings.' => 'Non ci sono impostazioni temporali.',
'Ticket created' => 'Richiesta creata',
'Ticket created between' => 'Richiesta creata fra',
'New Priority' => 'Nuova Priorit',
'New Queue' => 'Nuova coda',
'New State' => 'Nuovo stato',
'New Agent' => 'Nuovo Operatore',
'New Owner' => 'Nuovo Gestore',
'New Customer' => 'Nuovo Cliente',
'New Ticket Lock' => 'Nuovo gestore della richiesta',
'CustomerUser' => 'Cliente',
'Add Note' => 'Aggiungi nota',
'CMD' => 'comando',
'This command will be executed. ARG[0] will be the ticket number. ARG[1] the ticket id.' => 'Questo comando verr eseguito. ARG[0] sar il numero della richiesta. ARG[1] sar l\'identificativo della richiesta.',
'Delete tickets' => 'Elimina richieste',
'Warning! This tickets will be removed from the database! This tickets are lost!' => 'Attenzione! Queste richieste verranno eliminate dalla base dati! Queste richieste saranno perse!',
'Modules' => 'Moduli',
'Param 1' => 'Parametro 1',
'Param 2' => 'Parametro 2',
'Param 3' => 'Parametro 3',
'Param 4' => 'Parametro 4',
'Param 5' => 'Parametro 5',
'Param 6' => 'Parametro 6',
'Save' => 'Salva',
# Template: AdminGroupForm
'Group Management' => 'Gestione gruppo',
'The admin group is to get in the admin area and the stats group to get stats area.' => 'Il gruppo admin ha accesso all\'area amministrazione mentre il gruppo stats ha accesso alle statistiche.',
'Create new groups to handle access permissions for different groups of agent (e. g. purchasing department, support department, sales department, ...).' => 'Creare nuovi gruppi per gestire i permessi di accesso per diversi gruppi di agenti (p.es. sezione vendite, supporto tecnico, ecc.)',
'It\'s useful for ASP solutions.' => ' utile per soluzioni ASP',
# Template: AdminLog
'System Log' => 'Log di sistema',
'Time' => 'Tempo',
# Template: AdminNavigationBar
'Users' => 'Utenti',
'Groups' => 'Gruppi',
'Misc' => 'Varie',
# Template: AdminNotificationForm
'Notification Management' => 'Gestione delle notifiche',
'Notification' => 'Notifica',
'Notifications are sent to an agent or a customer.' => 'Le notifiche sono inviate ad un operatore o a un cliente',
'Config options (e. g. <OTRS_CONFIG_HttpType>)' => 'Opzioni di configurazione (per es. <OTRS_CONFIG_HttpType>)',
'Ticket owner options (e. g. <OTRS_OWNER_USERFIRSTNAME>)' => 'Per ottenere il gestore della richiesta (per es. <OTRS_OWNER_USERFIRSTNAME>)',
'Options of the current user who requested this action (e. g. <OTRS_CURRENT_USERFIRSTNAME>)' => 'Per ottenere l\'utente che ha richiesto l\'azione (per es. <OTRS_CURRENT_USERFIRSTNAME>)',
'Options of the current customer user data (e. g. <OTRS_CUSTOMER_DATA_USERFIRSTNAME>)' => 'Per ottenere i dati del cliente (per es. <OTRS_CUSTOMER_DATA_USERFIRSTNAME>)',
# Template: AdminPackageManager
'Package Manager' => 'Gestione Pacchetti',
'Uninstall' => 'disinstalla',
'Verion' => 'Versione',
'Do you really want to uninstall this package?' => 'Vuoi davvero disinstallare questo pacchetto?',
'Install' => 'Installa',
'Package' => 'Pacchetto',
'Online Repository' => 'Archivio Online',
'Version' => 'Versione',
'Vendor' => 'Fornitore',
'Upgrade' => '',
'Local Repository' => 'Archivio Locale',
'Status' => 'Stato',
'Overview' => 'Sommario',
'Download' => 'Scarica',
'Rebuild' => 'Ricrea',
'Reinstall' => 'Re-installa',
# Template: AdminPGPForm
'PGP Management' => 'Gestione PGP',
'Identifier' => 'Identificatore',
'Bit' => '',
'Key' => 'Etichetta',
'Fingerprint' => 'Impronta (fingerprint)',
'Expires' => 'Scade',
'In this way you can directly edit the keyring configured in SysConfig.' => '',
# Template: AdminPOP3Form
'POP3 Account Management' => 'Gestione accessi POP3',
'Host' => '',
'Trusted' => 'Fidato',
'Dispatching' => 'Smistamento',
'All incoming emails with one account will be dispatched in the selected queue!' => 'Tutti i messaggi in arrivo saranno smistati nella coda selezionata!',
'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.' => 'Se il tuo account fidato (trusted), verr utilizzato l\'header x-otrs dell\'istante di arrivo (priorit, ...)! Il filtro di ingresso verr utilizzato in ogni caso.',
# Template: AdminPostMasterFilter
'PostMaster Filter Management' => 'Gestione filtri posta in ingresso',
'Filtername' => 'Nome del filtro',
'Match' => 'Corrispondenza',
'Header' => 'Intestazione (header)',
'Value' => 'Valore',
'Set' => 'Impostazione',
'Do dispatch or filter incoming emails based on email X-Headers! RegExp is also possible.' => 'Effettua lo smistamento o filtra la posta in ingresso in base all\'X-Header! Sono accettate anche espressioni regolari.',
'If you use RegExp, you also can use the matched value in () as [***] in \'Set\'.' => 'Se usi espressioni regolari, puoi anche utilizzare il valore corrispondente a () come [***] negli insiemi',
# Template: AdminQueueAutoResponseForm
'Queue <-> Auto Responses Management' => '',
# Template: AdminQueueAutoResponseTable
# Template: AdminQueueForm
'Queue Management' => 'Gestione delle code',
'Sub-Queue of' => 'Sottocoda di',
'Unlock timeout' => 'Tempo di sblocco automatico',
'0 = no unlock' => '0 = nessuno sblocco automatico',
'Escalation time' => 'Tempo di escalation',
'0 = no escalation' => '0 = nessuna escalation',
'Follow up Option' => 'Opzioni per le prosecuzioni',
'Ticket lock after a follow up' => 'Presa in gestione della richiesta dopo una prosecuzione',
'Systemaddress' => 'Indirizzo di sistema',
'Customer Move Notify' => 'Notifica il cliente degli spostamenti',
'Customer State Notify' => 'Notifica il cliente del cambio di stato',
'Customer Owner Notify' => 'Notifica il cliente del cambio operatore',
'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.' => 'Se un operatore prende in gestione una richiesta ma non risponde entro il tempo specificato, la richiesta viene sbloccata in modo da essere accessibile agli altri operatori.',
'If a ticket will not be answered in thos time, just only this ticket will be shown.' => 'Se una richiesta non viene risposta entro questo limite di tempo, sar l\'unica richiesta ad essere visualizzata.',
'If a ticket is closed and the customer sends a follow up the ticket will be locked for the old owner.' => 'Se una richiesta chiusa e il cliente invia una risposta, la richiesta viene assegnata al vecchio operatore.',
'Will be the sender address of this queue for email answers.' => 'Mittente utilizzato per le risposte relative alle richieste di questa coda.',
'The salutation for email answers.' => 'Saluto (parte iniziale) per le email generate automaticamente dal sistema.',
'The signature for email answers.' => 'Firma (parte finale) per le email generate automaticamente dal sistema.',
'OTRS sends an notification email to the customer if the ticket is moved.' => 'OTRS invia una notifica via email al cliente se la richiesta viene spostata.',
'OTRS sends an notification email to the customer if the ticket state has changed.' => 'OTRS invia una notifica via email al cliente se lo stato della richiesta cambia.',
'OTRS sends an notification email to the customer if the ticket owner has changed.' => 'OTRS invia una notifica via email al cliente se l\'operatore assegnato alla richiesta cambia.',
# Template: AdminQueueResponsesChangeForm
'Responses <-> Queue Management' => 'Risposte <-> Gestione Code',
# Template: AdminQueueResponsesForm
'Answer' => 'Risposta',
# Template: AdminResponseAttachmentChangeForm
'Responses <-> Attachments Management' => 'Risposte <-> Gestione Allegati',
# Template: AdminResponseAttachmentForm
# Template: AdminResponseForm
'Response Management' => 'Gestione risposte',
'A response is default text to write faster answer (with default text) to customers.' => 'Una risposta un testo predefinito usato per compilare pi rapidamente le risposte per i clienti.',
'Don\'t forget to add a new response a queue!' => 'Non dimenticare di aggiungere una risposta per ogni coda!',
'Next state' => 'Stato successivo',
'All Customer variables like defined in config option CustomerUser.' => 'Tutte le variabili del cliente come definite nella configurazione',
'The current ticket state is' => 'Lo stato corrente della richiesta ',
'Your email address is new' => 'Il tuo indirizzo di email nuovo',
# Template: AdminRoleForm
'Role Management' => 'Gestione ruoli',
'Create a role and put groups in it. Then add the role to the users.' => 'Crea un ruolo e mettici i gruppi. Poi aggiungi il ruolo agli utenti.',
'It\'s useful for a lot of users and groups.' => 'E\' utile per molti utenti e gruppi',
# Template: AdminRoleGroupChangeForm
'Roles <-> Groups Management' => '',
'move_into' => 'muovi_in',
'Permissions to move tickets into this group/queue.' => 'Autorizzazione a muovere richieste in questo gruppo/coda',
'create' => 'crea',
'Permissions to create tickets in this group/queue.' => 'Autorizzazione a creare richieste in questo gruppo/coda',
'owner' => 'gestore',
'Permissions to change the ticket owner in this group/queue.' => 'Autorizzazione a cambiare il gestore di una richiesta in questo gruppo/coda.',
'priority' => 'priorit',
'Permissions to change the ticket priority in this group/queue.' => 'Autorizzazione a cambiare la priorit di una richiesta in questo gruppo/coda',
# Template: AdminRoleGroupForm
'Role' => 'Ruolo',
# Template: AdminRoleUserChangeForm
'Roles <-> Users Management' => 'Ruoli <-> Gestione Utenti',
'Active' => 'Attivo',
'Select the role:user relations.' => 'Seleziona le relazioni ruolo:utente.',
# Template: AdminRoleUserForm
# Template: AdminSalutationForm
'Salutation Management' => 'Gestione saluti',
'customer realname' => 'nome del cliente',
'for agent firstname' => 'per il nome dell\'operatore',
'for agent lastname' => 'per il cognome dell\'operatore',
'for agent user id' => 'per l\'id utente dell\'operatore',
'for agent login' => 'per il nome utente dell\'operatore',
# Template: AdminSelectBoxForm
'Select Box' => 'Selezionare una funzione',
'SQL' => '',
'Limit' => 'Limite',
'Select Box Result' => 'Seleziona il risultato',
# Template: AdminSession
'Session Management' => 'Gestione Sessioni',
'Sessions' => 'Sessioni',
'Uniq' => '',
'kill all sessions' => 'Termina tutte le sessioni',
'Session' => 'Sessione',
'kill session' => 'Termina sessione',
# Template: AdminSignatureForm
'Signature Management' => 'Gestione firme',
# Template: AdminSMIMEForm
'SMIME Management' => '',
'Add Certificate' => 'Aggiungi certificato',
'Add Private Key' => 'Aggiunti chiave privata',
'Secret' => 'Segreto',
'Hash' => '',
'In this way you can directly edit the certification and private keys in file system.' => 'Puoi modificare il certificato e la chiave privata direttamente sul filesystem.',
# Template: AdminStateForm
'System State Management' => 'Gestione stati richieste',
'State Type' => 'Tipologia',
'Take care that you also updated the default states in you Kernel/Config.pm!' => 'Assicurati di aver aggiornato gli stati pre-impostati (default) nel file Kernel/Config.pm!',
'See also' => 'Vedi anche',
# Template: AdminSysConfig
'SysConfig' => '',
'Group selection' => '',
'Show' => '',
'Download Settings' => '',
'Download all system config changes.' => '',
'Load Settings' => '',
'Subgroup' => '',
'Elements' => '',
# Template: AdminSysConfigEdit
'Config Options' => '',
'Default' => '',
'Content' => '',
'New' => 'Nuovi',
'New Group' => '',
'Group Ro' => '',
'New Group Ro' => '',
'NavBarName' => '',
'Image' => '',
'Prio' => '',
'Block' => '',
'NavBar' => '',
'AccessKey' => '',
# Template: AdminSystemAddressForm
'System Email Addresses Management' => 'Gestione indirizzi di sistema',
'Email' => 'eMail',
'Realname' => 'Nome',
'All incoming emails with this "Email" (To:) will be dispatched in the selected queue!' => 'Tutte le email in arrivo indirizzate a questo indirizzo (campo To:) saranno smistate nella coda selezionata!',
# Template: AdminUserForm
'User Management' => 'Gestione operatori',
'Firstname' => 'Nome',
'Lastname' => 'Cognome',
'User will be needed to handle tickets.' => 'Gli operatori sono necessari per gestire le richieste.',
'Don\'t forget to add a new user to groups and/or roles!' => '',
# Template: AdminUserGroupChangeForm
'Users <-> Groups Management' => '',
# Template: AdminUserGroupForm
# Template: AgentBook
'Address Book' => 'Rubrica',
'Return to the compose screen' => 'Torna alla composizione del messaggio',
'Discard all changes and return to the compose screen' => 'Annulla tutte le modifiche e torna alla composizione del messaggio',
# Template: AgentCalendarSmall
# Template: AgentCalendarSmallIcon
# Template: AgentCustomerTableView
# Template: AgentInfo
'Info' => 'Informazioni',
# Template: AgentLinkObject
'Link Object' => '',
'Select' => 'Seleziona',
'Results' => 'Risultati',
'Total hits' => 'Totale risultati',
'Site' => 'Pagina',
'Detail' => '',
# Template: AgentLookup
'Lookup' => 'Ricerca',
# Template: AgentNavigationBar
'Ticket selected for bulk action!' => 'Richiesta selezionata per azione di massa!',
'You need min. one selected Ticket!' => 'Devi selezionare almeno una richiesta!',
# Template: AgentPreferencesForm
# Template: AgentSpelling
'Spell Checker' => 'Verifica ortografica',
'spelling error(s)' => 'Errori di ortografia',
'or' => 'oppure',
'Apply these changes' => 'Applica le modifiche',
# Template: AgentTicketBounce
'A message should have a To: recipient!' => 'Manca il destinatario del messaggio!',
'You need a email address (e. g. customer@example.com) in To:!' => ' necessario inserire un indirizzo email (per .es. cliente@esempio.it) come destinatario!',
'Bounce ticket' => 'Rispedisci richiesta',
'Bounce to' => 'Rispedisci a',
'Next ticket state' => 'Stato successivo della richiesta',
'Inform sender' => 'Informa il mittente',
'Your email with ticket number "<OTRS_TICKET>" is bounced to "<OTRS_BOUNCE_TO>". Contact this address for further informations.' => 'La tua email con il numero di richiesta "<OTRS_TICKET>" stata reindirizzata a "<OTRS_BOUNCE_TO>". Contattare questo indirizzo per ulteriori informazioni.',
'Send mail!' => 'Invia messaggio!',
# Template: AgentTicketBulk
'A message should have a subject!' => 'Il messaggio deve avere un oggetto!',
'Ticket Bulk Action' => 'Azione di massa',
'Spell Check' => 'Verifica ortografica',
'Note type' => 'Tipologia della nota',
'Unlock Tickets' => '',
# Template: AgentTicketClose
'A message should have a body!' => 'Un messaggio deve avere un contenuto!',
'You need to account time!' => 'Devi inserire il tempo impiegato per la risposta!',
'Close ticket' => 'Chiudi richiesta',
'Note Text' => 'Nota',
'Close type' => 'Tipologia chiusura',
'Time units' => 'Tempo',
' (work units)' => ' (unit di lavoro)',
# Template: AgentTicketCompose
'A message must be spell checked!' => 'Il messaggio necessita di correzione ortografica!',
'Compose answer for ticket' => 'Componi la risposta alla richiesta',
'Attach' => 'Allega',
'Pending Date' => 'Attesa fino a',
'for pending* states' => 'per gli stati di attesa*',
# Template: AgentTicketCustomer
'Change customer of ticket' => 'Modifica il cliente della richiesta',
'Set customer user and customer id of a ticket' => 'Imposta l\'id cliente di una richiesta',
'Customer User' => 'Clienti',
'Search Customer' => 'Ricerca cliente',
'Customer Data' => 'Dati del cliente',
'Customer history' => 'Storico del cliente',
'All customer tickets.' => 'Tutte le richieste del cliente.',
# Template: AgentTicketCustomerMessage
'Follow up' => 'Risposta',
# Template: AgentTicketEmail
'Compose Email' => 'Componi email',
'new ticket' => 'nuova richiesta',
'Clear To' => 'Cancella destinatario',
'All Agents' => 'Tutti gli operatori',
'Termin1' => '',
# Template: AgentTicketForward
'Article type' => 'Tipo articolo',
# Template: AgentTicketFreeText
'Change free text of ticket' => 'Cambia il testo della richiesta',
# Template: AgentTicketHistory
'History of' => 'Storico di',
# Template: AgentTicketLocked
'Ticket locked!' => 'Richiesta gi presa in gestione!',
'Ticket unlock!' => 'Richiesta abbandonata!',
# Template: AgentTicketMailbox
'Mailbox' => 'Casella postale',
'Tickets' => 'Richieste',
'All messages' => 'Tutti i messaggi',
'New messages' => 'Nuovi messaggi',
'Pending messages' => 'Messaggi in attesa',
'Reminder messages' => 'Messaggio di richiamo',
'Reminder' => 'Richiamo',
'Sort by' => 'Ordina per',
'Order' => 'Ordine',
'up' => 'crescente',
'down' => 'decrescente',
# Template: AgentTicketMerge
'You need to use a ticket number!' => 'Devi usare un numero di richiesta',
'Ticket Merge' => 'Unisci Richiesta',
'Merge to' => 'Unisci a',
'Your email with ticket number "<OTRS_TICKET>" is merged to "<OTRS_MERGE_TO_TICKET>".' => 'La tua email con la richiesta numero "<OTRS_TICKET>" stata unita a "<OTRS_MERGE_TO_TICKET>".',
# Template: AgentTicketMove
'Queue ID' => 'Identificativo coda',
'Move Ticket' => 'Sposta la richiesta',
'Previous Owner' => 'Gestore precedente',
# Template: AgentTicketNote
'Add note to ticket' => 'Aggiungi una nota alla richiesta',
'Inform Agent' => 'Informa Operatore',
'Optional' => 'Opzionale',
'Inform involved Agents' => 'Informa gli operatori coinvolti',
# Template: AgentTicketOwner
'Change owner of ticket' => 'Assegna la richiesta ad un altro operatore',
'Message for new Owner' => 'Messaggio per l\'operatore',
# Template: AgentTicketPending
'Set Pending' => 'Imposta attesa',
'Pending type' => 'Tipo di attesa',
'Pending date' => 'In attesa fino a',
# Template: AgentTicketPhone
'Phone call' => 'Chiamata telefonica',
# Template: AgentTicketPhoneNew
'Clear From' => 'Cancella il campo mittente',
# Template: AgentTicketPlain
'Plain' => '',
'TicketID' => 'Codice richiesta',
'ArticleID' => 'Codice articolo',
# Template: AgentTicketPrint
'Ticket-Info' => 'Richiesta-Info',
'Accounted time' => 'Tempo addebitato',
'Escalation in' => '',
'Linked-Object' => 'Oggetto Collegato',
'Parent-Object' => 'Oggetto Genitore',
'Child-Object' => 'Oggetto Figlio',
'by' => 'da',
# Template: AgentTicketPriority
'Change priority of ticket' => 'Modifica la priorit della richiesta',
# Template: AgentTicketQueue
'Tickets shown' => 'Richieste mostrate',
'Page' => 'Pagina',
'Tickets available' => 'Richieste disponibili',
'All tickets' => 'Richieste totali',
'Queues' => 'Code',
'Ticket escalation!' => 'Richiesta escalation!',
# Template: AgentTicketQueueTicketView
'Your own Ticket' => 'Le tue richieste',
'Compose Follow up' => 'Componi risposta',
'Compose Answer' => 'Componi risposta',
'Contact customer' => 'Contatta il cliente',
'Change queue' => 'Cambia coda',
# Template: AgentTicketQueueTicketViewLite
# Template: AgentTicketSearch
'Ticket Search' => 'Ricerca richiesta',
'Profile' => 'Profilo',
'Search-Template' => 'Modello di ricerca',
'Created in Queue' => 'Creata nella Coda',
'Result Form' => 'Tipo di risultato',
'Save Search-Profile as Template?' => 'Salvare il profilo di ricerca come modello',
'Yes, save it with name' => 'S, salva con nome',
'Customer history search' => 'Ricerca storico cliente',
'Customer history search (e. g. "ID342425").' => 'Ricerca storico cliente (per es. "ID342425")',
'No * possible!' => 'Qui non possibile usare l\'asterisco (*)!',
# Template: AgentTicketSearchResult
'Search Result' => 'Risultato ricerca',
'Change search options' => 'Modifica le opzioni di ricerca',
# Template: AgentTicketSearchResultPrint
'"}' => '',
# Template: AgentTicketSearchResultShort
'sort upward' => 'ordine crescente',
'U' => 'C',
'sort downward' => 'ordine decrescente',
'D' => '',
# Template: AgentTicketStatusView
'Ticket Status View' => 'Visualizzazione Stato delle richieste',
'Open Tickets' => 'Richieste Aperte',
# Template: AgentTicketZoom
'Split' => 'Spezza',
# Template: AgentTicketZoomStatus
'Locked' => 'In gestione',
# Template: AgentWindowTabStart
# Template: AgentWindowTabStop
# Template: Copyright
# Template: css
# Template: customer-css
# Template: CustomerAccept
# Template: CustomerCalendarSmallIcon
# Template: CustomerError
'Traceback' => 'Dettaglio del passato',
# Template: CustomerFAQ
'Print' => 'Stampa',
'Keywords' => 'Parole chiave',
'Symptom' => 'Sintomi',
'Problem' => 'Problema',
'Solution' => 'Soluzione',
'Modified' => 'Modificato',
'Last update' => 'Ultimo aggiornamento',
'FAQ System History' => 'Storico sistema FAQ',
'modified' => 'modificato',
'FAQ Search' => 'Ricerca FAQ',
'Fulltext' => 'Testo libero',
'Keyword' => 'Parola chiave',
'FAQ Search Result' => 'Risultato ricerca FAQ',
'FAQ Overview' => 'Sommario FAQ',
# Template: CustomerFooter
'Powered by' => '',
# Template: CustomerFooterSmall
# Template: CustomerHeader
# Template: CustomerHeaderSmall
# Template: CustomerLogin
'Login' => 'Codice utente',
'Lost your password?' => 'Hai dimenticato la password?',
'Request new password' => 'Richiedi una nuova password',
'Create Account' => 'Registrati',
# Template: CustomerNavigationBar
'Welcome %s' => 'Benvenuto/a %s',
# Template: CustomerPreferencesForm
# Template: CustomerStatusView
'of' => 'di',
# Template: CustomerTicketMessage
# Template: CustomerTicketMessageNew
# Template: CustomerTicketSearch
# Template: CustomerTicketSearchResultCSV
# Template: CustomerTicketSearchResultPrint
# Template: CustomerTicketSearchResultShort
# Template: CustomerTicketZoom
# Template: CustomerWarning
# Template: Error
'Click here to report a bug!' => 'Clicca qui per segnalare un bug!',
# Template: FAQ
'Comment (internal)' => 'Commento (interno)',
'A article should have a title!' => 'Manca il titolo!',
'New FAQ Article' => 'Nuovo articolo FAQ',
'Do you really want to delete this Object?' => 'Vuoi davvero cancellare questo oggetto?',
'System History' => 'Storico del sistema',
# Template: FAQCategoryForm
'Name is required!' => 'Manca il nome!',
'FAQ Category' => 'Categoria FAQ',
# Template: FAQLanguageForm
'FAQ Language' => 'Lingua FAQ',
# Template: Footer
'QueueView' => 'Lista Richieste',
'PhoneView' => 'RichiestaTelefonica',
'Top of Page' => 'Inizio Pagina',
# Template: FooterSmall
# Template: Header
'Home' => '',
# Template: HeaderSmall
# Template: Installer
'Web-Installer' => 'Installazione guidata via web',
'accept license' => 'accetto la licenza',
'don\'t accept license' => 'non accetto la licenza',
'Admin-User' => 'Utente amministratore',
'Admin-Password' => '',
'your MySQL DB should have a root password! Default is empty!' => 'dovresti impostare una password di root per il tuo server MySQL!',
'Database-User' => '',
'default \'hot\'' => '\'hot\' predefinito',
'DB connect host' => '',
'Database' => '',
'Create' => 'Crea',
'false' => 'falso',
'SystemID' => 'ID del sistema',
'(The identify of the system. Each ticket number and each http session id starts with this number)' => '(ID del sistema. Ogni ID di sessione e numero di ticket inizia con questo numero)',
'System FQDN' => 'FQDN del sistema',
'(Full qualified domain name of your system)' => '(Nome di dominio completo (FQDN) del sistema)',
'AdminEmail' => 'Messaggio agli operatori',
'(Email of the system admin)' => '(Indirizzo email dell\'amministratore di sistema)',
'Organization' => 'Azienda',
'Log' => '',
'LogModule' => 'Modulo di log',
'(Used log backend)' => '(Modulo da usare per il log)',
'Logfile' => 'File di log',
'(Logfile just needed for File-LogModule!)' => '(File di log --- necessario solo per il log su file (File-LogModule))',
'Webfrontend' => 'Interfaccia web',
'Default Charset' => 'Set di caratteri predefinito',
'Use utf-8 it your database supports it!' => '',
'Default Language' => 'Lingua predefinita',
'(Used default language)' => '(Lingua predefinita)',
'CheckMXRecord' => 'Verifica 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 $!)' => '(Controlla il record MX per i domini degli indirizzi email quando si compone un messaggio. Non usare se il vostro server con OTRS ha una connessione dial-up!)',
'To be able to use OTRS you have to enter the following line in your command line (Terminal/Shell) as root.' => 'Per poter usare OTRS devi inserire questa riga di comando in una shell come utente root.',
'Restart your webserver' => 'Riavvia il tuo server web',
'After doing so your OTRS is up and running.' => 'Dopo di ci OTRS sar pronto all\'uso.',
'Start page' => 'Pagina iniziale',
'Have a lot of fun!' => 'Divertiti con OTRS!',
'Your OTRS Team' => 'Gruppo di sviluppo di OTRS',
# Template: Login
# Template: Motd
# Template: NoPermission
'No Permission' => 'Autorizzazione negata',
# Template: Notify
'Important' => 'Importante',
# Template: PrintFooter
'URL' => '',
# Template: PrintHeader
'printed by' => 'stampato da',
# Template: Redirect
# Template: SystemStats
'Format' => '',
# Template: Test
'OTRS Test Page' => 'Pagina di test OTRS',
'Counter' => '',
# Template: Warning
# Misc
'Create Database' => 'Crea database ',
'Ticket Number Generator' => 'Generatore numero ticket',
'(Ticket identifier. Some people want toset this to e. g. \'Ticket#\', \'Call#\' or \'MyTicket#\')' => '(Prefisso per il numero di ticket --- es. "N.ro Ticket:" o "Ticket#" ecc.)',
'In this way you can directly edit the keyring configured in Kernel/Config.pm.' => 'In questo modo puoi modificare direttamente il \'keyring\' configurato nel file Kernel/Config.pm',
'Ticket Hook' => 'Prefisso richieste',
'Close!' => 'Chiuso!',
'TicketZoom' => 'DettagliRichiesta',
'Don\'t forget to add a new user to groups!' => 'Non dimenticare di aggiungere i nuovi operatori ad un gruppo!',
'License' => 'Licenza',
'CreateTicket' => 'CreaRichiesta',
'System Settings' => 'Impostazioni di sistema',
'Hours' => 'Ore',
'Finished' => 'Operazione terminata',
'Days' => 'Giorni',
'DB Admin User' => 'Nome utente DB Admin',
'Options of the ticket data (e. g. <OTRS_TICKET_TicketNumber>, <OTRS_TICKET_TicketID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)' => '',
'Change user <-> group settings' => 'Modifica impostazioni Utente <-> Gruppo',
'DB Type' => 'Tipo di DBMS',
'next step' => 'Fase successiva',
'Admin-Email' => 'Invia messaggio agli operatori',
'Create new database' => 'Crea un nuovo database',
'Delete old database' => 'Cancella il vecchio database',
'Options ' => '',
'DB Admin Password' => 'Password del DB Admin',
'Drop Database' => 'Cancella database',
'Minutes' => 'Minuti',
'(Used ticket number format)' => '(Formato del numero dei ticket)',
'FAQ History' => 'Storico 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;
|