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
|
$self{texts} = {
'Add Part' => 'Aggiungi Articolo',
'Add Purchase Order' => 'Aggiungi Ordine di acquisto',
'Add Sales Order' => 'Aggiungi Ordine di vendita',
'Add Service' => 'Aggiungi Servizio',
'Address' => 'Indirizzo',
'Apr' => 'Apr',
'April' => 'Aprile',
'Attachment' => 'Attachment',
'Aug' => 'Ago',
'August' => 'Agosto',
'Bcc' => 'Bcc',
'Bin' => 'Codice BIN',
'Cc' => 'Cc',
'Contact' => 'Contatto',
'Continue' => 'Continua',
'Copies' => 'Copie',
'Customer' => 'Cliente',
'Date' => 'Data',
'Dec' => 'Dic',
'December' => 'Dicembre',
'Delivery Date' => 'Data di spedizione',
'Description' => 'Descrizione',
'E-mail' => 'E-mail',
'E-mail address missing!' => 'Indirizzo e-mail mancante!',
'Extended' => 'Esteso',
'Fax' => 'Fax',
'Feb' => 'Feb',
'February' => 'Febbraio',
'In-line' => 'In-line',
'Invoice' => 'Fattura',
'Invoice Date missing!' => 'Manca la data della Fattura!',
'Invoice Number missing!' => 'Manca il numero della Fattura!',
'Item not on file!' => 'Articolo non in archivio!',
'Jan' => 'Gen',
'January' => 'Gennaio',
'Jul' => 'Lug',
'July' => 'Luglio',
'Jun' => 'Giu',
'June' => 'Giugno',
'Mar' => 'Mar',
'March' => 'Marzo',
'May' => 'Mag',
'May ' => 'Mag ',
'Message' => 'Messaggio',
'Nov' => 'Nov',
'November' => 'Novembre',
'Number' => 'Partita IVA',
'Number missing in Row' => 'Manca il codice nella riga',
'Oct' => 'Ott',
'October' => 'Ottobre',
'Order Date missing!' => 'Manca la data dell\'ordine',
'Order Number missing!' => 'Manca il numero dell\'ordine!',
'PDF' => 'PDF',
'Packing List' => 'Lista Etichette',
'Packing List Date missing!' => 'Manca la data della Packing List!',
'Packing List Number missing!' => 'Manca il codice della Packing List!',
'Phone' => 'Tel.',
'Postscript' => 'Postscript',
'Price' => 'Prezzo',
'Project' => 'Progetto',
'Purchase Order' => 'Ordine di acquisto',
'Qty' => 'Q.tà',
'Recd' => 'Ricevuto',
'Required by' => 'Necessario dal',
'Sales Order' => 'Ordine di vendita',
'Screen' => 'Schermo',
'Sep' => 'Set',
'September' => 'Settembre',
'Ship' => 'Invio',
'Ship to' => 'Spedire a',
'Subject' => 'Oggetto',
'Subtotal' => 'Totale Parziale',
'To' => 'Al',
'Unit' => 'Unità',
'Vendor' => 'Fornitore',
};
$self{subs} = {
'calc_markup' => 'calc_markup',
'check_form' => 'check_form',
'create_form' => 'create_form',
'display_form' => 'display_form',
'display_row' => 'display_row',
'e_mail' => 'e_mail',
'invoicetotal' => 'invoicetotal',
'item_selected' => 'item_selected',
'new_item' => 'new_item',
'print' => 'print',
'print_form' => 'print_form',
'print_options' => 'print_options',
'purchase_order' => 'purchase_order',
'quotation' => 'quotation',
'rfq' => 'rfq',
'sales_order' => 'sales_order',
'select_item' => 'select_item',
'send_email' => 'send_email',
'ship_to' => 'ship_to',
'validate_items' => 'validate_items',
'aggiungi_articolo' => 'add_part',
'aggiungi_servizio' => 'add_service',
'continua' => 'continue',
};
1;
|