diff options
Diffstat (limited to 'locale/it')
-rwxr-xr-x | locale/it/COPYING | 26 | ||||
-rwxr-xr-x | locale/it/LANGUAGE | 1 | ||||
-rwxr-xr-x | locale/it/Num2text | 162 | ||||
-rwxr-xr-x | locale/it/aa | 128 | ||||
-rwxr-xr-x | locale/it/admin | 123 | ||||
-rwxr-xr-x | locale/it/all | 422 | ||||
-rwxr-xr-x | locale/it/am | 211 | ||||
-rwxr-xr-x | locale/it/ap | 176 | ||||
-rwxr-xr-x | locale/it/ar | 176 | ||||
-rwxr-xr-x | locale/it/arap | 48 | ||||
-rwxr-xr-x | locale/it/arapprn | 28 | ||||
-rwxr-xr-x | locale/it/bp | 45 | ||||
-rwxr-xr-x | locale/it/ca | 52 | ||||
-rwxr-xr-x | locale/it/cp | 111 | ||||
-rwxr-xr-x | locale/it/ct | 131 | ||||
-rwxr-xr-x | locale/it/gl | 140 | ||||
-rwxr-xr-x | locale/it/hr | 73 | ||||
-rwxr-xr-x | locale/it/ic | 223 | ||||
-rwxr-xr-x | locale/it/io | 105 | ||||
-rwxr-xr-x | locale/it/ir | 188 | ||||
-rwxr-xr-x | locale/it/is | 195 | ||||
-rwxr-xr-x | locale/it/jc | 81 | ||||
-rwxr-xr-x | locale/it/locales.pl | 351 | ||||
-rwxr-xr-x | locale/it/login | 21 | ||||
-rwxr-xr-x | locale/it/menu | 80 | ||||
-rwxr-xr-x | locale/it/oe | 236 | ||||
-rwxr-xr-x | locale/it/pe | 107 | ||||
-rwxr-xr-x | locale/it/pos | 62 | ||||
-rwxr-xr-x | locale/it/ps | 284 | ||||
-rwxr-xr-x | locale/it/pw | 12 | ||||
-rwxr-xr-x | locale/it/qe | 199 | ||||
-rwxr-xr-x | locale/it/rc | 67 | ||||
-rwxr-xr-x | locale/it/rp | 157 |
33 files changed, 4421 insertions, 0 deletions
diff --git a/locale/it/COPYING b/locale/it/COPYING new file mode 100755 index 00000000..65fe6359 --- /dev/null +++ b/locale/it/COPYING @@ -0,0 +1,26 @@ +###################################################################### +# LedgerSMB Small Medium Business Accounting +# Copyright (c) 2001-2003 +# +# Italian texts: +# +# Author: Paolo Bizzarri <p.bizzarri@icube.it> +# Luca Venturini <luca@yepa.com> +# Alessandro Pasotti <apasotti@isoleborromee.it> +# Daniele Giacomini <daniele@swlibero.org> 2003.09.28-2003.11.05 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +####################################################################### + diff --git a/locale/it/LANGUAGE b/locale/it/LANGUAGE new file mode 100755 index 00000000..4e07e7ec --- /dev/null +++ b/locale/it/LANGUAGE @@ -0,0 +1 @@ +Italian diff --git a/locale/it/Num2text b/locale/it/Num2text new file mode 100755 index 00000000..6086c339 --- /dev/null +++ b/locale/it/Num2text @@ -0,0 +1,162 @@ +#===================================================================== +# LedgerSMB Small Medium Business Accounting +# Copyright (C) 2002 +# +# Author: Dieter Simader +# Email: dsimader@sql-ledger.org +# Web: http://sourceforge.net/projects/ledger-smb/ +# +# Contributors: Luca Venturini <luca@yepa.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +#====================================================================== +# +# this is a variation of the Lingua package +# written for check and receipt printing +# it returns a properly formatted text string +# for a number up to 10**12 + +sub init { + my $self = shift; + + %{ $self->{numbername} } = + (0 => 'Zero', + 1 => 'uno', + 2 => 'due', + 3 => 'tre', + 4 => 'quattro', + 5 => 'cinque', + 6 => 'sei', + 7 => 'sette', + 8 => 'otto', + 9 => 'nove', + 10 => 'dieci', + 11 => 'undici', + 12 => 'dodici', + 13 => 'tredici', + 14 => 'quattrodici', + 15 => 'quindici', + 16 => 'sedici', + 17 => 'diciassette', + 18 => 'diciotto', + 19 => 'diciannove', + 20 => 'venti', + 30 => 'trenta', + 40 => 'quaranta', + 50 => 'cinquanta', + 60 => 'sessanta', + 70 => 'settanta', + 80 => 'ottanta', + 90 => 'novanta', + 10**2 => 'cento', + 10**3 => 'mille', + 10**6 => 'milione', + 10**9 => 'miliardo', + 10**12 => 'mille miliardi' + ); + +} + + +sub num2text { + my ($self, $amount) = @_; + + return $self->{numbername}{0} unless $amount; + + my @textnumber = (); + + # split amount into chunks of 3 + my @num = reverse split //, abs($amount); + my @numblock = (); + my ($i, $appendn); + my @a = (); + + while (@num) { + @a = (); + for (1 .. 3) { + push @a, shift @num; + } + push @numblock, join / /, reverse @a; + } + + while (@numblock) { + + $i = $#numblock; + @num = split //, $numblock[$i]; + + $numblock[$i] *= 1; + + if ($numblock[$i] == 0) { + pop @numblock; + next; + } + + if ($numblock[$i] > 99) { + # the one from hundreds + push @textnumber, $self->{numbername}{$num[0]}; + + # add hundred designation + push @textnumber, $self->{numbername}{10**2}; + + # reduce numblock + $numblock[$i] -= $num[0] * 100; + } + + if ($numblock[$i] > 9) { + # tens + push @textnumber, $self->format_ten($numblock[$i]); + } elsif ($numblock[$i] > 1) { + # ones + push @textnumber, $self->{numbername}{$numblock[$i]}; + } + + # add thousand, million + if ($i) { + $amount = 10**($i * 3); + push @textnumber, $self->{numbername}{$amount}; + } + + pop @numblock; + + } + + join '', @textnumber; + +} + + +sub format_ten { + my ($self, $amount) = @_; + + my $textnumber = ""; + my @num = split //, $amount; + + if ($amount > 20) { + if ($num[1] == 0) { + $textnumber = $self->{numbername}{$amount}; + } else { + $amount = $num[0] * 10; + $textnumber = $self->{numbername}{$amount}.$self->{numbername}{$num[1]}; + } + } else { + $textnumber = $self->{numbername}{$amount}; + } + + $textnumber; + +} + + +1; + diff --git a/locale/it/aa b/locale/it/aa new file mode 100755 index 00000000..1de00b98 --- /dev/null +++ b/locale/it/aa @@ -0,0 +1,128 @@ +$self{texts} = { + 'AP Transaction' => 'Transazione Fornitore', + 'AP Transactions' => 'Transazioni Fornitori', + 'AR Transaction' => 'Transazione Cliente', + 'AR Transactions' => 'Transazioni Clienti', + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Amount' => 'Importo', + 'Amount Due' => 'Importo Dovuto', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la Transazione', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Cannot delete transaction!' => 'Non puoi cancellare la transazione', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cannot post transaction for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Check' => 'Assegno', + 'Closed' => 'Chiuso', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Credit' => 'Avere', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Date' => 'Data', + 'Date Paid' => 'Data di pagamento', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'Due Date missing!' => 'Data di Scadenza mancante!', + 'Employee' => 'Dipendente', + 'Exch' => 'Cambio', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Number' => 'Numero Fattura Fornitore', + 'Paid' => 'Importo Pagato', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payments' => 'Pagamenti', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Receipt' => 'Incasso', + 'Remaining' => 'Rimanente', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Source' => 'Sorgente', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Transaction deleted!' => 'Transazione cancellata!', + 'Transaction posted!' => 'Transazione salvata!', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Yes' => 'Si', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'create_links' => 'create_links', + 'delete' => 'delete', + 'display' => 'display', + 'display_form' => 'display_form', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'post' => 'post', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'subtotal' => 'subtotal', + 'transactions' => 'transactions', + 'update' => 'update', + 'yes' => 'yes', + 'transazione_fornitore' => 'ap_transaction', + 'transazione_cliente' => 'ar_transaction', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'stampa' => 'print', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/admin b/locale/it/admin new file mode 100755 index 00000000..83ca999a --- /dev/null +++ b/locale/it/admin @@ -0,0 +1,123 @@ +$self{texts} = { + 'Access Control' => 'Controllo degli accessi', + 'Accounting' => 'Contabilità', + 'Add User' => 'Aggiungi Utente', + 'Address' => 'Indirizzo', + 'Administration' => 'Amministrazione', + 'Administrator' => 'Amministratore', + 'All Datasets up to date!' => 'Tutti i Datasets sono aggiornati!', + 'Change Admin Password' => 'Cambia password dell\'amministratore', + 'Change Password' => 'Cambia password', + 'Click on login name to edit!' => 'Clicca sul nome per effettuare modifiche', + 'Company' => 'Ragione Sociale', + 'Connect to' => 'Connetti a', + 'Continue' => 'Continua', + 'Create Chart of Accounts' => 'Crea Piano dei conti', + 'Create Dataset' => 'Crea Dataset', + 'DBI not installed!' => 'Modulo DBI non installato', + 'Database' => 'Database', + 'Database Administration' => 'Amministratore del Database', + 'Database Driver not checked!' => 'Il driver del database non e\' stato controllato!', + 'Database User missing!' => 'Manca lo user del Database!', + 'Dataset' => 'Dataset', + 'Dataset missing!' => 'Dataset mancante!', + 'Dataset updated!' => 'Dataset aggiornato!', + 'Date Format' => 'Formato della data', + 'Delete' => 'Cancella', + 'Delete Dataset' => 'Cancella Dataset', + 'Directory' => 'Directory', + 'Driver' => 'Driver', + 'Dropdown Limit' => 'Limite per i menu a discesa', + 'E-mail' => 'E-mail', + 'Edit User' => 'Modifica Utente', + 'Existing Datasets' => 'Datasets esistenti', + 'Fax' => 'Fax', + 'Host' => 'Host', + 'Hostname missing!' => 'Manca il nome del server', + 'Language' => 'Lingua', + 'Login' => 'Login', + 'Logout' => 'Logout', + 'Name' => 'Nome', + 'New Templates' => 'Nuovi Modelli', + 'No Database Drivers available!' => 'Nessun Database Driver disponibile!', + 'No Dataset selected!' => 'Nessun Dataset selezionato!', + 'Nothing to delete!' => 'Nulla da cancellare!', + 'Number Format' => 'Formato Numerico', + 'Oracle Database Administration' => 'Amministratore del Database Oracle', + 'Password' => 'Password', + 'Password changed!' => 'Password cambiata!', + 'Pg Database Administration' => 'Amministratore del Database Pg', + 'Phone' => 'Tel.', + 'Port' => 'Porta', + 'Port missing!' => 'Manca la Porta', + 'Printer' => 'Stampante', + 'Save' => 'Salva', + 'Setup Templates' => 'Configurazione dei modelli', + 'Signature' => 'Firma', + 'Stylesheet' => 'Foglio di Stile', + 'Templates' => 'Modelli', + 'The following Datasets are not in use and can be deleted' => 'I seguenti datasets non sono in uso e possono essere cancellati', + 'The following Datasets need to be updated' => 'I seguenti datasets devono essere aggiornati', + 'This is a preliminary check for existing sources. Nothing will be created or deleted at this stage!' => 'Questo è un controllo preliminare per verificare le risorse esistenti. Nulla verrà creato o cancellato in questa fase!', + 'To add a user to a group edit a name, change the login name and save. A new user with the same variables will then be saved under the new login name.' => 'Per aggiungere un utente ad un gruppo, modifica i dati dell\'utente, cambia lo username e salva. Un nuovo utente con gli stessi dati verrà salvato con il nuovo username.', + 'Update Dataset' => 'Aggiorna il Dataset', + 'Use Templates' => 'Usa Modelli', + 'User' => 'Utente', + 'User deleted!' => 'Utente cancellato!', + 'User saved!' => 'Utente salvato!', + 'Version' => 'Versione', + 'does not exist' => 'non esiste', + 'is already a member!' => 'è già utente!', + 'localhost' => 'localhost', + 'successfully created!' => 'creato!', + 'successfully deleted!' => 'cancellato!', + 'website' => 'sito web', +}; + +$self{subs} = { + 'add_user' => 'add_user', + 'adminlogin' => 'adminlogin', + 'change_admin_password' => 'change_admin_password', + 'change_password' => 'change_password', + 'check_password' => 'check_password', + 'continue' => 'continue', + 'create_dataset' => 'create_dataset', + 'dbcreate' => 'dbcreate', + 'dbdelete' => 'dbdelete', + 'dbdriver_defaults' => 'dbdriver_defaults', + 'dbselect_source' => 'dbselect_source', + 'dbupdate' => 'dbupdate', + 'delete' => 'delete', + 'delete_dataset' => 'delete_dataset', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'getpassword' => 'getpassword', + 'list_users' => 'list_users', + 'lock_system' => 'lock_system', + 'login' => 'login', + 'login_name' => 'login_name', + 'logout' => 'logout', + 'oracle_database_administration' => 'oracle_database_administration', + 'pg_database_administration' => 'pg_database_administration', + 'pgpp_database_administration' => 'pgpp_database_administration', + 'save' => 'save', + 'unlock_system' => 'unlock_system', + 'update_dataset' => 'update_dataset', + 'aggiungi_utente' => 'add_user', + 'cambia_password_dell\'amministratore' => 'change_admin_password', + 'cambia_password' => 'change_password', + 'continua' => 'continue', + 'crea_dataset' => 'create_dataset', + 'cancella' => 'delete', + 'cancella_dataset' => 'delete_dataset', + 'login' => 'login', + 'logout' => 'logout', + 'amministratore_del_database_oracle' => 'oracle_database_administration', + 'amministratore_del_database_pg' => 'pg_database_administration', + 'salva' => 'save', + 'aggiorna_il_dataset' => 'update_dataset', +}; + +1; + diff --git a/locale/it/all b/locale/it/all new file mode 100755 index 00000000..dacef5cb --- /dev/null +++ b/locale/it/all @@ -0,0 +1,422 @@ +# These are all the texts to build the translations files. +# to build unique strings edit the module files instead +# this file is just a shortcut to build strings which are the same + +$self{texts} = { + 'AP' => 'Debiti Fornitori', + 'AP Aging' => 'Partite Aperte', + 'AP Transaction' => 'Transazione Fornitore', + 'AP Transactions' => 'Transazioni Fornitori', + 'AR' => 'Crediti Clienti', + 'AR Aging' => 'Partite Aperte', + 'AR Transaction' => 'Transazione Cliente', + 'AR Transactions' => 'Transazioni Clienti', + 'About' => 'Informazioni', + 'Access Control' => 'Controllo degli accessi', + 'Account' => 'Conto', + 'Account Number' => 'Numero di conto', + 'Account Number missing!' => 'Manca il numero di conto!', + 'Account Type' => 'Tipo di conto', + 'Account Type missing!' => 'Manca il tipo del conto!', + 'Account deleted!' => 'Conto cancellato!', + 'Account saved!' => 'Conto salvato!', + 'Accounting' => 'Contabilità', + 'Accounting Menu' => 'Menu Contabilità', + 'Accounts' => 'Conti', + 'Active' => 'Attivo', + 'Add' => 'Aggiungi', + 'Add Account' => 'Aggiungi conto', + 'Add Assembly' => 'Aggiungi Assemblato', + 'Add Customer' => 'Aggiungi Cliente', + 'Add GIFI' => 'Aggiungi codice GIFI', + 'Add General Ledger Transaction' => 'Aggiungi Transazione di Contabilità Generale', + 'Add Part' => 'Aggiungi Articolo', + 'Add Project' => 'Aggiungi Progetto', + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Invoice' => 'Aggiungi Fattura di vendita', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + 'Add Service' => 'Aggiungi Servizio', + 'Add Transaction' => 'Aggiungi Transazione', + 'Add User' => 'Aggiungi Utente', + 'Add Vendor' => 'Aggiungi Fornitore', + 'Address' => 'Indirizzo', + 'Administration' => 'Amministrazione', + 'Administrator' => 'Amministratore', + 'All' => 'Tutti', + 'All Datasets up to date!' => 'Tutti i Datasets sono aggiornati!', + 'Amount' => 'Importo', + 'Amount Due' => 'Importo Dovuto', + 'Amount missing!' => 'Manca l\'importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Invoice Number' => 'Sei sicuro di voler cancellare la Fattura numero', + 'Are you sure you want to delete Order Number' => 'Sei sicuro di volre cancellare l\'ordine numero', + 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la Transazione', + 'Assemblies' => 'Assemblati', + 'Assemblies restocked!' => 'Assemblati ricaricati!', + 'Asset' => 'Attività', + 'Attachment' => 'Attachment', + 'Audit Control' => 'Controllo accessi', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'BOM' => 'BOM', + 'Backup' => 'Backup', + 'Backup sent to' => 'Backup inviato a', + 'Balance' => 'Saldo', + 'Balance Sheet' => 'Stato Patrimoniale', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'Books are open' => 'I conti sono aperti', + 'Business Number' => 'Partita IVA', + 'C' => 'C', + 'COGS' => 'Costo dei Beni Venduti', + 'Cannot delete account!' => 'Non puoi cancellare il conto!', + 'Cannot delete customer!' => 'Non puoi cancellare il cliente!', + 'Cannot delete default account!' => 'Non puoi cancellare il conto di default!', + 'Cannot delete invoice!' => 'Non puoi cancellare la fattura!', + 'Cannot delete item!' => 'Non puoi cancellare l\'articolo', + 'Cannot delete order!' => 'Non puoi cancellare l\'ordine', + 'Cannot delete transaction!' => 'Non puoi cancellare la transazione', + 'Cannot delete vendor!' => 'Non puoi cancellare il fornitore', + 'Cannot post invoice for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post invoice!' => 'Non puoi salvare la fattura!', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cannot post transaction for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Cannot save account!' => 'Non puoi salvare il conto!', + 'Cannot save order!' => 'Non puoi salvare l\'ordine!', + 'Cannot save preferences!' => 'Non puoi salvare le preferenze!', + 'Cannot stock assemblies!' => 'Non puoi caricare gli assemblati!', + 'Cash' => 'Cassa', + 'Cc' => 'Cc', + 'Change Admin Password' => 'Cambia password dell\'amministratore', + 'Change Password' => 'Cambia password', + 'Chart of Accounts' => 'Piano dei Conti', + 'Check' => 'Assegno', + 'Click on login name to edit!' => 'Clicca sul nome per effettuare modifiche', + 'Close Books up to' => 'Chiudi i conti fino a', + 'Closed' => 'Chiuso', + 'Company' => 'Ragione Sociale', + 'Compare to' => 'Confronta con', + 'Confirm!' => 'Conferma!', + 'Connect to' => 'Connetti a', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Copy to COA' => 'Inserisci come conto', + 'Create Chart of Accounts' => 'Crea Piano dei conti', + 'Create Dataset' => 'Crea Dataset', + 'Credit' => 'Avere', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer deleted!' => 'Cliente cancellato!', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Customer saved!' => 'Cliente salvato!', + 'Customers' => 'Clienti', + 'DBI not installed!' => 'Modulo DBI non installato', + 'Database' => 'Database', + 'Database Administration' => 'Amministratore del Database', + 'Database Driver not checked!' => 'Il driver del database non e\' stato controllato!', + 'Database Host' => 'Server', + 'Database User missing!' => 'Manca lo user del Database!', + 'Dataset' => 'Dataset', + 'Dataset missing!' => 'Dataset mancante!', + 'Dataset updated!' => 'Dataset aggiornato!', + 'Date' => 'Data', + 'Date Format' => 'Formato della data', + 'Date Paid' => 'Data di pagamento', + 'Date missing!' => 'Manca la data!', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Decimalplaces' => 'Numero di decimali', + 'Delete' => 'Cancella', + 'Delete Account' => 'Cancella Conto', + 'Delete Dataset' => 'Cancella Dataset', + 'Delivery Date' => 'Data di spedizione', + 'Deposit' => 'Deposito', + 'Description' => 'Descrizione', + 'Difference' => 'Differenza', + 'Directory' => 'Directory', + 'Discount' => 'Sconto', + 'Done' => 'Fatto', + 'Drawing' => 'Disegno', + 'Driver' => 'Driver', + 'Dropdown Limit' => 'Limite per i menu a discesa', + 'Due Date' => 'Scadenza Fattura', + 'Due Date missing!' => 'Data di Scadenza mancante!', + 'E-mail' => 'E-mail', + 'E-mail Statement to' => 'Manda il sollecito via e-mail a', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit' => 'Modifica', + 'Edit Account' => 'Modifica Conto', + 'Edit Assembly' => 'Modifica Assemblato', + 'Edit GIFI' => 'Modifica codice GIFI', + 'Edit General Ledger Transaction' => 'Modifica Transazione di Contabilità Generale', + 'Edit Part' => 'Modifica Articolo', + 'Edit Preferences for' => 'Modifica Preferenze di', + 'Edit Project' => 'Modifica Progetto', + 'Edit Purchase Order' => 'Modifica Ordine di acquisto', + 'Edit Sales Invoice' => 'Modifica Fattura di Vendita', + 'Edit Sales Order' => 'Modifica Ordine di vendita', + 'Edit Service' => 'Modifica Servizio', + 'Edit Template' => 'Modifica Modello', + 'Edit User' => 'Modifica Utente', + 'Employee' => 'Dipendente', + 'Enforce transaction reversal for all dates' => 'Forza l\'uso delle transazioni inverse per tutte le date', + 'Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies' => 'Inserisci fino a 3 valute separate da ":" (es.: EUR:USD:CAD) per la valuta locale e quelle straniere', + 'Equity' => 'Capitale', + 'Exch' => 'Cambio', + 'Existing Datasets' => 'Datasets esistenti', + 'Expense' => 'Costi', + 'Expense/Asset' => 'Acquisti/Attività', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'Foreign Exchange Gain' => 'Guadagno da cambio valuta', + 'Foreign Exchange Loss' => 'Perdita da cambio valuta', + 'From' => 'Dal', + 'GIFI' => 'Codice GIFI', + 'GIFI deleted!' => 'Codice GIFI cancellato!', + 'GIFI missing!' => 'Codice GIFI mancante!', + 'GIFI saved!' => 'Codice GIFI salvato!', + 'GL Transaction' => 'Transazione di Contabilità generale', + 'General Ledger' => 'Contabilità generale', + 'Goods & Services' => 'Beni e Servizi', + 'HTML Templates' => 'Modelli HTML', + 'Heading' => 'Intestazione', + 'Host' => 'Host', + 'Hostname missing!' => 'Manca il nome del server', + 'ID' => 'ID', + 'Image' => 'Immagine', + 'In-line' => 'In-line', + 'Include in Report' => 'Includi nel Prospetto', + 'Include in drop-down menus' => 'Da includere nei menu a discesa dei seguenti moduli', + 'Income' => 'Ricavi', + 'Income Statement' => 'Conto Economico', + 'Incorrect Dataset version!' => 'Versione del Dataset non corretta!', + 'Individual Items' => 'Articoli Individuali', + 'Inventory' => 'Inventario', + 'Inventory quantity must be zero before you can set this assembly obsolete!' => 'La quantità in inventario deve essere zero per poter mettere l\'assemblato come obsoleto!', + 'Inventory quantity must be zero before you can set this part obsolete!' => 'La quantità in inventario deve essere zero per poter mettere l\'articolo come obsoleto!', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Invoice Number missing!' => 'Manca il numero della Fattura!', + 'Invoice deleted!' => 'Fattura Cancellata!', + 'Invoices' => 'Fatture', + 'Is this a summary account to record' => 'Conto di riferimento del modulo:', + 'Item deleted!' => 'Articolo Cancellato!', + 'Item not on file!' => 'Articolo non in archivio!', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'LaTeX Templates' => 'Modelli LaTeX', + 'Language' => 'Lingua', + 'Last Cost' => 'Ultimo Costo', + 'Last Numbers & Default Accounts' => 'Ultimi numeri e Conti di Default', + 'Leave host and port field empty unless you want to make a remote connection.' => 'Lascia in bianco il server e la porta a meno che tu non voglia fare una connessione remota', + 'Liability' => 'Passività', + 'Licensed to' => 'Dato in Licenza a', + 'Line Total' => 'Totale Linea', + 'Link' => 'Collegamenti', + 'Link Accounts' => 'Collegamenti tra Conti', + 'List Accounts' => 'Lista Conti', + 'List GIFI' => 'Lista codici GIFI', + 'List Price' => 'Prezzo di Listino', + 'List Transactions' => 'Lista Transazioni', + 'Login' => 'Login', + 'Logout' => 'Logout', + 'Make' => 'Produttore', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'Microfiche' => 'Microfiche', + 'Model' => 'Modello', + 'N/A' => 'N/A', + 'Name' => 'Nome', + 'Name missing!' => 'Manca il Nome!', + 'New Templates' => 'Nuovi Modelli', + 'No' => 'No', + 'No Database Drivers available!' => 'Nessun Database Driver disponibile!', + 'No Dataset selected!' => 'Nessun Dataset selezionato!', + 'No email address for' => 'Manca l\'indirizzo e-mail per', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nothing selected!' => 'Non hai selezionato nulla!', + 'Nothing to delete!' => 'Nulla da cancellare!', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Number Format' => 'Formato Numerico', + 'Number missing in Row' => 'Manca il codice nella riga', + 'O' => 'O', + 'Obsolete' => 'Obsoleto', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'On Hand' => 'Disponibilità', + 'Open' => 'Aperto', + 'Oracle Database Administration' => 'Amministratore del Database Oracle', + 'Order' => 'Ordine', + 'Order Date' => 'Data dell\'ordine', + 'Order Date missing!' => 'Manca la data dell\'ordine', + 'Order Entry' => 'Ordini', + 'Order Number' => 'Numero Fattura Fornitore', + 'Order Number missing!' => 'Manca il numero dell\'ordine!', + 'Order deleted!' => 'Ordine Cancellato!', + 'Order saved!' => 'Ordine Salvato!', + 'Orphaned' => 'Orfano', + 'Out of balance!' => 'Non conciliato!', + '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!', + 'Paid' => 'Importo Pagato', + 'Part' => 'Articolo', + 'Parts' => 'Articoli', + 'Password' => 'Password', + 'Password changed!' => 'Password cambiata!', + 'Payables' => 'Debiti Fornitori', + 'Payment' => 'Pagamento', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payment posted!' => 'Pagamento Salvato', + 'Payments' => 'Pagamenti', + 'Pg Database Administration' => 'Amministratore del Database Pg', + 'Phone' => 'Tel.', + 'Port' => 'Porta', + 'Port missing!' => 'Manca la Porta', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Postscript' => 'Postscript', + 'Preferences' => 'Preferenze', + 'Preferences saved!' => 'Preferenze Salvate!', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Printer' => 'Stampante', + 'Project' => 'Progetto', + 'Project Number missing!' => 'Manca il codice del progetto!', + 'Project deleted!' => 'Progetto cancellato!', + 'Project not on file!' => 'Progetto non archiviato!', + 'Project saved!' => 'Progetto salvato!', + 'Projects' => 'Progetti', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Qty' => 'Q.tà', + 'ROP' => 'Soglia di Riordino', + 'Rate' => 'Tasso', + 'Recd' => 'Ricevuto', + 'Receipt' => 'Incasso', + 'Receipts' => 'Incassi', + 'Receivables' => 'Crediti Clienti', + 'Reconciliation' => 'Conciliazione', + 'Record in' => 'Registra in', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Report for' => 'Prospetto per', + 'Reports' => 'Prospetti', + 'Required by' => 'Necessario dal', + 'Retained Earnings' => 'Guadagni', + 'Sales' => 'Vendite', + 'Sales Invoice' => 'Fattura di vendita', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Save to File' => 'Salva su file', + 'Screen' => 'Schermo', + 'Select all' => 'Seleziona tutto', + 'Select from one of the items below' => 'Seleziona uno dei seguenti Articoli', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sell Price' => 'Prezzo di Vendita', + 'Send by E-Mail' => 'Spedisci via e-mail', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Services' => 'Servizi', + 'Setup Templates' => 'Configurazione dei modelli', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Short' => 'Corto', + 'Signature' => 'Firma', + 'Source' => 'Sorgente', + 'Standard' => 'Standard', + 'Statement' => 'Sollecito', + 'Statement Balance' => 'Saldo', + 'Statement sent to' => 'Sollecito mandato a', + 'Statements sent to printer!' => 'Solleciti mandati in stampa!', + 'Stock Assembly' => 'Magazzino Assemblati', + 'Stylesheet' => 'Foglio di Stile', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'System' => 'Sistema', + 'Tax' => 'Tassa', + 'Tax Accounts' => 'Conti relativi a tasse', + 'Tax Included' => 'Tasse Incluse', + 'Tax collected' => 'Debito IVA', + 'Tax paid' => 'Credito IVA', + 'Taxable' => 'Tassabile', + 'Template saved!' => 'Modello salvato!', + 'Templates' => 'Modelli', + 'The following Datasets are not in use and can be deleted' => 'I seguenti datasets non sono in uso e possono essere cancellati', + 'The following Datasets need to be updated' => 'I seguenti datasets devono essere aggiornati', + 'This is a preliminary check for existing sources. Nothing will be created or deleted at this stage!' => 'Questo è un controllo preliminare per verificare le risorse esistenti. Nulla verrà creato o cancellato in questa fase!', + 'To' => 'Al', + 'To add a user to a group edit a name, change the login name and save. A new user with the same variables will then be saved under the new login name.' => 'Per aggiungere un utente ad un gruppo, modifica i dati dell\'utente, cambia lo username e salva. Un nuovo utente con gli stessi dati verrà salvato con il nuovo username.', + 'Top Level' => 'Livello Top', + 'Total' => 'Totale', + 'Transaction Date missing!' => 'Manca la data della transazione!', + 'Transaction deleted!' => 'Transazione cancellata!', + 'Transaction posted!' => 'Transazione salvata!', + 'Transaction reversal enforced for all dates' => 'Uso delle transazioni inverse forzato per tutte le date', + 'Transaction reversal enforced up to' => 'Uso delle transazioni inverse forzato fino a', + 'Transactions' => 'Transazioni', + 'Trial Balance' => 'Bilancio di Verifica', + 'Unit' => 'Unità', + 'Unit of measure' => 'Unità di misura', + 'Update' => 'Aggiorna', + 'Update Dataset' => 'Aggiorna il Dataset', + 'Updated' => 'Aggiornato', + 'Use Templates' => 'Usa Modelli', + 'User' => 'Utente', + 'User deleted!' => 'Utente cancellato!', + 'User saved!' => 'Utente salvato!', + 'Vendor' => 'Fornitore', + 'Vendor deleted!' => 'Fornitore cancellato!', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'Vendor saved!' => 'Fornitore salvato!', + 'Vendors' => 'Fornitori', + 'Version' => 'Versione', + 'Weight' => 'Peso', + 'Weight Unit' => 'Unità di misura', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'Yes' => 'Si', + 'You did not enter a name!' => 'Non hai inserito il nome!', + 'You must enter a host and port for local and remote connections!' => 'Devi inserire un server ed una porta per le connessioni locali e remote!', + 'as at' => 'Al', + 'days' => 'giorni', + 'does not exist' => 'non esiste', + 'ea' => 'ci', + 'for Period' => 'per il Periodo', + 'is already a member!' => 'è già utente!', + 'localhost' => 'localhost', + 'successfully created!' => 'creato!', + 'successfully deleted!' => 'cancellato!', + 'website' => 'sito web', +}; + +1; diff --git a/locale/it/am b/locale/it/am new file mode 100755 index 00000000..527ee22b --- /dev/null +++ b/locale/it/am @@ -0,0 +1,211 @@ +$self{texts} = { + 'AP' => 'Debiti Fornitori', + 'AR' => 'Crediti Clienti', + 'About' => 'Informazioni', + 'Account' => 'Conto', + 'Account Number' => 'Numero di conto', + 'Account Number missing!' => 'Manca il numero di conto!', + 'Account Type' => 'Tipo di conto', + 'Account Type missing!' => 'Manca il tipo del conto!', + 'Account deleted!' => 'Conto cancellato!', + 'Account saved!' => 'Conto salvato!', + 'Accounting Menu' => 'Menu Contabilità', + 'Add Account' => 'Aggiungi conto', + 'Add GIFI' => 'Aggiungi codice GIFI', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Asset' => 'Attività', + 'Audit Control' => 'Controllo accessi', + 'Backup sent to' => 'Backup inviato a', + 'Books are open' => 'I conti sono aperti', + 'Business Number' => 'Partita IVA', + 'COGS' => 'Costo dei Beni Venduti', + 'Cannot delete account!' => 'Non puoi cancellare il conto!', + 'Cannot delete default account!' => 'Non puoi cancellare il conto di default!', + 'Cannot save account!' => 'Non puoi salvare il conto!', + 'Cannot save preferences!' => 'Non puoi salvare le preferenze!', + 'Cash' => 'Cassa', + 'Chart of Accounts' => 'Piano dei Conti', + 'Close Books up to' => 'Chiudi i conti fino a', + 'Company' => 'Ragione Sociale', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Copy to COA' => 'Inserisci come conto', + 'Credit' => 'Avere', + 'Database Host' => 'Server', + 'Dataset' => 'Dataset', + 'Date Format' => 'Formato della data', + 'Debit' => 'Dare', + 'Delete' => 'Cancella', + 'Delete Account' => 'Cancella Conto', + 'Description' => 'Descrizione', + 'Discount' => 'Sconto', + 'Dropdown Limit' => 'Limite per i menu a discesa', + 'E-mail' => 'E-mail', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit' => 'Modifica', + 'Edit Account' => 'Modifica Conto', + 'Edit GIFI' => 'Modifica codice GIFI', + 'Edit Preferences for' => 'Modifica Preferenze di', + 'Edit Template' => 'Modifica Modello', + 'Enforce transaction reversal for all dates' => 'Forza l\'uso delle transazioni inverse per tutte le date', + 'Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies' => 'Inserisci fino a 3 valute separate da ":" (es.: EUR:USD:CAD) per la valuta locale e quelle straniere', + 'Equity' => 'Capitale', + 'Expense' => 'Costi', + 'Expense/Asset' => 'Acquisti/Attività', + 'Fax' => 'Fax', + 'Foreign Exchange Gain' => 'Guadagno da cambio valuta', + 'Foreign Exchange Loss' => 'Perdita da cambio valuta', + 'GIFI' => 'Codice GIFI', + 'GIFI deleted!' => 'Codice GIFI cancellato!', + 'GIFI missing!' => 'Codice GIFI mancante!', + 'GIFI saved!' => 'Codice GIFI salvato!', + 'GL Transaction' => 'Transazione di Contabilità generale', + 'Heading' => 'Intestazione', + 'ID' => 'ID', + 'Include in drop-down menus' => 'Da includere nei menu a discesa dei seguenti moduli', + 'Income' => 'Ricavi', + 'Inventory' => 'Inventario', + 'Invoice' => 'Fattura', + 'Is this a summary account to record' => 'Conto di riferimento del modulo:', + 'Language' => 'Lingua', + 'Last Numbers & Default Accounts' => 'Ultimi numeri e Conti di Default', + 'Liability' => 'Passività', + 'Licensed to' => 'Dato in Licenza a', + 'Link' => 'Collegamenti', + 'Name' => 'Nome', + 'No' => 'No', + 'No email address for' => 'Manca l\'indirizzo e-mail per', + 'Number' => 'Partita IVA', + 'Number Format' => 'Formato Numerico', + 'PDF' => 'PDF', + 'Packing List' => 'Lista Etichette', + 'Password' => 'Password', + 'Payables' => 'Debiti Fornitori', + 'Payment' => 'Pagamento', + 'Phone' => 'Tel.', + 'Postscript' => 'Postscript', + 'Preferences saved!' => 'Preferenze Salvate!', + 'Print' => 'Stampa', + 'Printer' => 'Stampante', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Rate' => 'Tasso', + 'Receivables' => 'Crediti Clienti', + 'Reference' => 'Riferimento', + 'Retained Earnings' => 'Guadagni', + 'Sales Invoice' => 'Fattura di vendita', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Signature' => 'Firma', + 'Stylesheet' => 'Foglio di Stile', + 'Tax' => 'Tassa', + 'Template saved!' => 'Modello salvato!', + 'Transaction reversal enforced for all dates' => 'Uso delle transazioni inverse forzato per tutte le date', + 'Transaction reversal enforced up to' => 'Uso delle transazioni inverse forzato fino a', + 'Update' => 'Aggiorna', + 'User' => 'Utente', + 'Version' => 'Versione', + 'Weight Unit' => 'Unità di misura', + 'Yes' => 'Si', + 'localhost' => 'localhost', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'account_header' => 'account_header', + 'add' => 'add', + 'add_account' => 'add_account', + 'add_business' => 'add_business', + 'add_department' => 'add_department', + 'add_gifi' => 'add_gifi', + 'add_language' => 'add_language', + 'add_sic' => 'add_sic', + 'add_warehouse' => 'add_warehouse', + 'audit_control' => 'audit_control', + 'backup' => 'backup', + 'business_header' => 'business_header', + 'company_logo' => 'company_logo', + 'config' => 'config', + 'continue' => 'continue', + 'copy_to_coa' => 'copy_to_coa', + 'defaults' => 'defaults', + 'delete' => 'delete', + 'delete_account' => 'delete_account', + 'delete_business' => 'delete_business', + 'delete_department' => 'delete_department', + 'delete_gifi' => 'delete_gifi', + 'delete_language' => 'delete_language', + 'delete_sic' => 'delete_sic', + 'delete_warehouse' => 'delete_warehouse', + 'department_header' => 'department_header', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_stylesheet' => 'display_stylesheet', + 'display_taxes' => 'display_taxes', + 'doclose' => 'doclose', + 'edit' => 'edit', + 'edit_account' => 'edit_account', + 'edit_business' => 'edit_business', + 'edit_department' => 'edit_department', + 'edit_gifi' => 'edit_gifi', + 'edit_language' => 'edit_language', + 'edit_recurring' => 'edit_recurring', + 'edit_sic' => 'edit_sic', + 'edit_template' => 'edit_template', + 'edit_warehouse' => 'edit_warehouse', + 'email_recurring' => 'email_recurring', + 'form_footer' => 'form_footer', + 'formnames' => 'formnames', + 'generate_yearend' => 'generate_yearend', + 'gifi_footer' => 'gifi_footer', + 'gifi_header' => 'gifi_header', + 'js_menu' => 'js_menu', + 'language_header' => 'language_header', + 'list_account' => 'list_account', + 'list_business' => 'list_business', + 'list_department' => 'list_department', + 'list_gifi' => 'list_gifi', + 'list_language' => 'list_language', + 'list_sic' => 'list_sic', + 'list_templates' => 'list_templates', + 'list_warehouse' => 'list_warehouse', + 'menubar' => 'menubar', + 'print_recurring' => 'print_recurring', + 'process_transactions' => 'process_transactions', + 'recurring_transactions' => 'recurring_transactions', + 'save' => 'save', + 'save_account' => 'save_account', + 'save_as_new' => 'save_as_new', + 'save_business' => 'save_business', + 'save_defaults' => 'save_defaults', + 'save_department' => 'save_department', + 'save_gifi' => 'save_gifi', + 'save_language' => 'save_language', + 'save_preferences' => 'save_preferences', + 'save_sic' => 'save_sic', + 'save_taxes' => 'save_taxes', + 'save_template' => 'save_template', + 'save_warehouse' => 'save_warehouse', + 'section_menu' => 'section_menu', + 'sic_header' => 'sic_header', + 'taxes' => 'taxes', + 'update' => 'update', + 'warehouse_header' => 'warehouse_header', + 'yearend' => 'yearend', + 'yes_delete_language' => 'yes_delete_language', + 'aggiungi_conto' => 'add_account', + 'continua' => 'continue', + 'inserisci_come_conto' => 'copy_to_coa', + 'cancella' => 'delete', + 'modifica' => 'edit', + 'modifica_conto' => 'edit_account', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/ap b/locale/it/ap new file mode 100755 index 00000000..a5af90e7 --- /dev/null +++ b/locale/it/ap @@ -0,0 +1,176 @@ +$self{texts} = { + 'AP Transaction' => 'Transazione Fornitore', + 'AP Transactions' => 'Transazioni Fornitori', + 'AR Transaction' => 'Transazione Cliente', + 'AR Transactions' => 'Transazioni Clienti', + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Amount Due' => 'Importo Dovuto', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la Transazione', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Bcc' => 'Bcc', + 'Cannot delete transaction!' => 'Non puoi cancellare la transazione', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cannot post transaction for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Cc' => 'Cc', + 'Check' => 'Assegno', + 'Closed' => 'Chiuso', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Credit' => 'Avere', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Date Paid' => 'Data di pagamento', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'Due Date missing!' => 'Data di Scadenza mancante!', + 'E-mail' => 'E-mail', + 'Employee' => 'Dipendente', + 'Exch' => 'Cambio', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Number' => 'Numero Fattura Fornitore', + 'PDF' => 'PDF', + 'Paid' => 'Importo Pagato', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payments' => 'Pagamenti', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Postscript' => 'Postscript', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Receipt' => 'Incasso', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Screen' => 'Schermo', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Source' => 'Sorgente', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Transaction deleted!' => 'Transazione cancellata!', + 'Transaction posted!' => 'Transazione salvata!', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'Yes' => 'Si', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_links' => 'create_links', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'gl_transaction' => 'gl_transaction', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'payment_selected' => 'payment_selected', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'print' => 'print', + 'print_and_post' => 'print_and_post', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_check' => 'print_check', + 'print_options' => 'print_options', + 'print_receipt' => 'print_receipt', + 'print_transaction' => 'print_transaction', + 'project_selected' => 'project_selected', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'sales_invoice_' => 'sales_invoice_', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_name' => 'select_name', + 'select_payment' => 'select_payment', + 'select_project' => 'select_project', + 'subtotal' => 'subtotal', + 'transactions' => 'transactions', + 'update' => 'update', + 'vendor_details' => 'vendor_details', + 'vendor_invoice_' => 'vendor_invoice_', + 'yes' => 'yes', + 'transazione_fornitore' => 'ap_transaction', + 'transazione_cliente' => 'ar_transaction', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'stampa' => 'print', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/ar b/locale/it/ar new file mode 100755 index 00000000..a5af90e7 --- /dev/null +++ b/locale/it/ar @@ -0,0 +1,176 @@ +$self{texts} = { + 'AP Transaction' => 'Transazione Fornitore', + 'AP Transactions' => 'Transazioni Fornitori', + 'AR Transaction' => 'Transazione Cliente', + 'AR Transactions' => 'Transazioni Clienti', + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Amount Due' => 'Importo Dovuto', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la Transazione', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Bcc' => 'Bcc', + 'Cannot delete transaction!' => 'Non puoi cancellare la transazione', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cannot post transaction for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Cc' => 'Cc', + 'Check' => 'Assegno', + 'Closed' => 'Chiuso', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Credit' => 'Avere', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Date Paid' => 'Data di pagamento', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'Due Date missing!' => 'Data di Scadenza mancante!', + 'E-mail' => 'E-mail', + 'Employee' => 'Dipendente', + 'Exch' => 'Cambio', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Number' => 'Numero Fattura Fornitore', + 'PDF' => 'PDF', + 'Paid' => 'Importo Pagato', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payments' => 'Pagamenti', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Postscript' => 'Postscript', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Receipt' => 'Incasso', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Screen' => 'Schermo', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Source' => 'Sorgente', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Transaction deleted!' => 'Transazione cancellata!', + 'Transaction posted!' => 'Transazione salvata!', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'Yes' => 'Si', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_links' => 'create_links', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'gl_transaction' => 'gl_transaction', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'payment_selected' => 'payment_selected', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'print' => 'print', + 'print_and_post' => 'print_and_post', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_check' => 'print_check', + 'print_options' => 'print_options', + 'print_receipt' => 'print_receipt', + 'print_transaction' => 'print_transaction', + 'project_selected' => 'project_selected', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'sales_invoice_' => 'sales_invoice_', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_name' => 'select_name', + 'select_payment' => 'select_payment', + 'select_project' => 'select_project', + 'subtotal' => 'subtotal', + 'transactions' => 'transactions', + 'update' => 'update', + 'vendor_details' => 'vendor_details', + 'vendor_invoice_' => 'vendor_invoice_', + 'yes' => 'yes', + 'transazione_fornitore' => 'ap_transaction', + 'transazione_cliente' => 'ar_transaction', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'stampa' => 'print', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/arap b/locale/it/arap new file mode 100755 index 00000000..cead41ba --- /dev/null +++ b/locale/it/arap @@ -0,0 +1,48 @@ +$self{texts} = { + 'Address' => 'Indirizzo', + 'Bcc' => 'Bcc', + 'Cc' => 'Cc', + 'Continue' => 'Continua', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Description' => 'Descrizione', + 'E-mail' => 'E-mail', + 'Message' => 'Messaggio', + 'Number' => 'Partita IVA', + 'Print' => 'Stampa', + 'Project not on file!' => 'Progetto non archiviato!', + 'Reference' => 'Riferimento', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Subject' => 'Oggetto', + 'To' => 'Al', + 'Vendor not on file!' => 'Fornitore non in archivio!', +}; + +$self{subs} = { + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'delete_schedule' => 'delete_schedule', + 'gl_transaction' => 'gl_transaction', + 'name_selected' => 'name_selected', + 'post_as_new' => 'post_as_new', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'project_selected' => 'project_selected', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'sales_invoice_' => 'sales_invoice_', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'vendor_invoice_' => 'vendor_invoice_', + 'continua' => 'continue', +}; + +1; + diff --git a/locale/it/arapprn b/locale/it/arapprn new file mode 100755 index 00000000..c6c08e62 --- /dev/null +++ b/locale/it/arapprn @@ -0,0 +1,28 @@ +$self{texts} = { + 'Account' => 'Conto', + 'Amount' => 'Importo', + 'Continue' => 'Continua', + 'Date' => 'Data', + 'PDF' => 'PDF', + 'Postscript' => 'Postscript', + 'Screen' => 'Schermo', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Source' => 'Sorgente', +}; + +$self{subs} = { + 'customer_details' => 'customer_details', + 'payment_selected' => 'payment_selected', + 'print' => 'print', + 'print_and_post' => 'print_and_post', + 'print_check' => 'print_check', + 'print_options' => 'print_options', + 'print_receipt' => 'print_receipt', + 'print_transaction' => 'print_transaction', + 'select_payment' => 'select_payment', + 'vendor_details' => 'vendor_details', + 'continua' => 'continue', +}; + +1; + diff --git a/locale/it/bp b/locale/it/bp new file mode 100755 index 00000000..a820ccbd --- /dev/null +++ b/locale/it/bp @@ -0,0 +1,45 @@ +$self{texts} = { + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Date' => 'Data', + 'Employee' => 'Dipendente', + 'From' => 'Dal', + 'ID' => 'ID', + 'Invoice' => 'Fattura', + 'Invoice Number' => 'Protocollo Numero', + 'Order' => 'Ordine', + 'Order Number' => 'Numero Fattura Fornitore', + 'Print' => 'Stampa', + 'Purchase Orders' => 'Ordini di acquisto', + 'Sales Orders' => 'Ordini di vendita', + 'Select all' => 'Seleziona tutto', + 'To' => 'Al', + 'Vendor' => 'Fornitore', + 'Yes' => 'Si', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'continue' => 'continue', + 'display' => 'display', + 'js_menu' => 'js_menu', + 'list_spool' => 'list_spool', + 'menubar' => 'menubar', + 'print' => 'print', + 'remove' => 'remove', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_all' => 'select_all', + 'yes' => 'yes', + 'continua' => 'continue', + 'stampa' => 'print', + 'seleziona_tutto' => 'select_all', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/ca b/locale/it/ca new file mode 100755 index 00000000..ca324549 --- /dev/null +++ b/locale/it/ca @@ -0,0 +1,52 @@ +$self{texts} = { + 'Account' => 'Conto', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Balance' => 'Saldo', + 'Chart of Accounts' => 'Piano dei Conti', + 'Credit' => 'Avere', + 'Current' => 'Corrente', + 'Date' => 'Data', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Description' => 'Descrizione', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'GIFI' => 'Codice GIFI', + 'Include in Report' => 'Includi nel Prospetto', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'List Transactions' => 'Lista Transazioni', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Reference' => 'Riferimento', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Subtotal' => 'Totale Parziale', + 'To' => 'Al', +}; + +$self{subs} = { + 'ca_subtotal' => 'ca_subtotal', + 'chart_of_accounts' => 'chart_of_accounts', + 'list' => 'list', + 'list_transactions' => 'list_transactions', + 'lista_transazioni' => 'list_transactions', +}; + +1; + diff --git a/locale/it/cp b/locale/it/cp new file mode 100755 index 00000000..b78a37b9 --- /dev/null +++ b/locale/it/cp @@ -0,0 +1,111 @@ +$self{texts} = { + 'AP' => 'Debiti Fornitori', + 'AR' => 'Crediti Clienti', + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Address' => 'Indirizzo', + 'All' => 'Tutti', + 'Amount' => 'Importo', + 'Amount Due' => 'Importo Dovuto', + 'Bcc' => 'Bcc', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cc' => 'Cc', + 'Continue' => 'Continua', + 'Currency' => 'Valuta', + 'Customer' => 'Cliente', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Date missing!' => 'Manca la data!', + 'Deposit' => 'Deposito', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'E-mail' => 'E-mail', + 'From' => 'Dal', + 'Invoice' => 'Fattura', + 'Invoices' => 'Fatture', + 'Language' => 'Lingua', + 'Message' => 'Messaggio', + 'Number' => 'Partita IVA', + 'PDF' => 'PDF', + 'Payment' => 'Pagamento', + 'Payment posted!' => 'Pagamento Salvato', + 'Payments' => 'Pagamenti', + 'Post' => 'Salva', + 'Postscript' => 'Postscript', + 'Print' => 'Stampa', + 'Project not on file!' => 'Progetto non archiviato!', + 'Receipt' => 'Incasso', + 'Receipts' => 'Incassi', + 'Reference' => 'Riferimento', + 'Screen' => 'Schermo', + 'Select all' => 'Seleziona tutto', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Source' => 'Sorgente', + 'Subject' => 'Oggetto', + 'To' => 'Al', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor not on file!' => 'Fornitore non in archivio!', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_form' => 'check_form', + 'check_name' => 'check_name', + 'check_openvc' => 'check_openvc', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'customer_details' => 'customer_details', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'gl_transaction' => 'gl_transaction', + 'invoices_due' => 'invoices_due', + 'js_menu' => 'js_menu', + 'list_invoices' => 'list_invoices', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'payment' => 'payment', + 'payment_footer' => 'payment_footer', + 'payment_header' => 'payment_header', + 'payments' => 'payments', + 'payments_footer' => 'payments_footer', + 'payments_header' => 'payments_header', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'post_payment' => 'post_payment', + 'post_payments' => 'post_payments', + 'print' => 'print', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_form' => 'print_form', + 'print_payment' => 'print_payment', + 'print_payments' => 'print_payments', + 'project_selected' => 'project_selected', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'sales_invoice_' => 'sales_invoice_', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'section_menu' => 'section_menu', + 'select_all' => 'select_all', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'update' => 'update', + 'update_payment' => 'update_payment', + 'update_payments' => 'update_payments', + 'vendor_details' => 'vendor_details', + 'vendor_invoice_' => 'vendor_invoice_', + 'continua' => 'continue', + 'salva' => 'post', + 'stampa' => 'print', + 'seleziona_tutto' => 'select_all', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/ct b/locale/it/ct new file mode 100755 index 00000000..b79ae3a2 --- /dev/null +++ b/locale/it/ct @@ -0,0 +1,131 @@ +$self{texts} = { + 'AP Transaction' => 'Transazione Fornitore', + 'AP Transactions' => 'Transazioni Fornitori', + 'AR Transaction' => 'Transazione Cliente', + 'AR Transactions' => 'Transazioni Clienti', + 'Accounting Menu' => 'Menu Contabilità', + 'Active' => 'Attivo', + 'Add Customer' => 'Aggiungi Cliente', + 'Add Vendor' => 'Aggiungi Fornitore', + 'Address' => 'Indirizzo', + 'All' => 'Tutti', + 'Amount' => 'Importo', + 'Bcc' => 'Bcc', + 'Cannot delete customer!' => 'Non puoi cancellare il cliente!', + 'Cannot delete vendor!' => 'Non puoi cancellare il fornitore', + 'Cc' => 'Cc', + 'Closed' => 'Chiuso', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Customer deleted!' => 'Cliente cancellato!', + 'Customer saved!' => 'Cliente salvato!', + 'Customers' => 'Clienti', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'Discount' => 'Sconto', + 'E-mail' => 'E-mail', + 'Employee' => 'Dipendente', + 'Fax' => 'Fax', + 'From' => 'Dal', + 'GIFI' => 'Codice GIFI', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Invoice' => 'Fattura', + 'Item not on file!' => 'Articolo non in archivio!', + 'Language' => 'Lingua', + 'Name' => 'Nome', + 'Name missing!' => 'Manca il Nome!', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Number' => 'Partita IVA', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Orphaned' => 'Orfano', + 'Phone' => 'Tel.', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Qty' => 'Q.tà', + 'Sales Invoice' => 'Fattura di vendita', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Sell Price' => 'Prezzo di Vendita', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'Taxable' => 'Tassabile', + 'To' => 'Al', + 'Total' => 'Totale', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Vendor deleted!' => 'Fornitore cancellato!', + 'Vendor saved!' => 'Fornitore salvato!', + 'Vendors' => 'Fornitori', + 'days' => 'giorni', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_customer' => 'add_customer', + 'add_transaction' => 'add_transaction', + 'add_vendor' => 'add_vendor', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'continue' => 'continue', + 'customer_pricelist' => 'customer_pricelist', + 'delete' => 'delete', + 'display' => 'display', + 'display_pricelist' => 'display_pricelist', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'history' => 'history', + 'include_in_report' => 'include_in_report', + 'item_selected' => 'item_selected', + 'js_menu' => 'js_menu', + 'list_history' => 'list_history', + 'list_names' => 'list_names', + 'list_subtotal' => 'list_subtotal', + 'menubar' => 'menubar', + 'pos' => 'pos', + 'pricelist' => 'pricelist', + 'pricelist_footer' => 'pricelist_footer', + 'pricelist_header' => 'pricelist_header', + 'purchase_order' => 'purchase_order', + 'quotation' => 'quotation', + 'rfq' => 'rfq', + 'sales_invoice' => 'sales_invoice', + 'sales_order' => 'sales_order', + 'save' => 'save', + 'save_as_new' => 'save_as_new', + 'save_pricelist' => 'save_pricelist', + 'search' => 'search', + 'search_name' => 'search_name', + 'section_menu' => 'section_menu', + 'select_item' => 'select_item', + 'transactions' => 'transactions', + 'update' => 'update', + 'vendor_invoice' => 'vendor_invoice', + 'vendor_pricelist' => 'vendor_pricelist', + 'transazione_fornitore' => 'ap_transaction', + 'transazione_cliente' => 'ar_transaction', + 'aggiungi_cliente' => 'add_customer', + 'aggiungi_fornitore' => 'add_vendor', + 'continua' => 'continue', + 'cancella' => 'delete', + 'ordine_di_acquisto' => 'purchase_order', + 'fattura_di_vendita' => 'sales_invoice', + 'ordine_di_vendita' => 'sales_order', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/gl b/locale/it/gl new file mode 100755 index 00000000..92b3e108 --- /dev/null +++ b/locale/it/gl @@ -0,0 +1,140 @@ +$self{texts} = { + 'AP Transaction' => 'Transazione Fornitore', + 'AR Transaction' => 'Transazione Cliente', + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Add General Ledger Transaction' => 'Aggiungi Transazione di Contabilità Generale', + 'Address' => 'Indirizzo', + 'All' => 'Tutti', + 'Amount' => 'Importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la Transazione', + 'Asset' => 'Attività', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Balance' => 'Saldo', + 'Bcc' => 'Bcc', + 'Cannot delete transaction!' => 'Non puoi cancellare la transazione', + 'Cannot post transaction for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Cc' => 'Cc', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Credit' => 'Avere', + 'Current' => 'Corrente', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'E-mail' => 'E-mail', + 'Edit General Ledger Transaction' => 'Modifica Transazione di Contabilità Generale', + 'Equity' => 'Capitale', + 'Expense' => 'Costi', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'GIFI' => 'Codice GIFI', + 'GL Transaction' => 'Transazione di Contabilità generale', + 'General Ledger' => 'Contabilità generale', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Income' => 'Ricavi', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Liability' => 'Passività', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'Notes' => 'Note', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Reference' => 'Riferimento', + 'Reports' => 'Prospetti', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Source' => 'Sorgente', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'To' => 'Al', + 'Transaction Date missing!' => 'Manca la data della transazione!', + 'Transaction deleted!' => 'Transazione cancellata!', + 'Transaction posted!' => 'Transazione salvata!', + 'Update' => 'Aggiorna', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'Yes' => 'Si', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_links' => 'create_links', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_rows' => 'display_rows', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'generate_report' => 'generate_report', + 'gl_subtotal' => 'gl_subtotal', + 'gl_transaction' => 'gl_transaction', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'project_selected' => 'project_selected', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'sales_invoice_' => 'sales_invoice_', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'update' => 'update', + 'vendor_invoice_' => 'vendor_invoice_', + 'yes' => 'yes', + 'transazione_fornitore' => 'ap_transaction', + 'transazione_cliente' => 'ar_transaction', + 'continua' => 'continue', + 'cancella' => 'delete', + 'transazione_di_contabilità_generale' => 'gl_transaction', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/hr b/locale/it/hr new file mode 100755 index 00000000..8381c7d9 --- /dev/null +++ b/locale/it/hr @@ -0,0 +1,73 @@ +$self{texts} = { + 'AP' => 'Debiti Fornitori', + 'Accounting Menu' => 'Menu Contabilità', + 'Active' => 'Attivo', + 'Address' => 'Indirizzo', + 'Administrator' => 'Amministratore', + 'All' => 'Tutti', + 'Amount' => 'Importo', + 'Amount missing!' => 'Manca l\'importo', + 'Continue' => 'Continua', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'E-mail' => 'E-mail', + 'Employee' => 'Dipendente', + 'Expense' => 'Costi', + 'From' => 'Dal', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Login' => 'Login', + 'Name' => 'Nome', + 'Name missing!' => 'Manca il Nome!', + 'Notes' => 'Note', + 'Number' => 'Partita IVA', + 'Orphaned' => 'Orfano', + 'Rate' => 'Tasso', + 'Sales' => 'Vendite', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'To' => 'Al', + 'Update' => 'Aggiorna', + 'User' => 'Utente', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_deduction' => 'add_deduction', + 'add_employee' => 'add_employee', + 'continue' => 'continue', + 'deduction_footer' => 'deduction_footer', + 'deduction_header' => 'deduction_header', + 'deduction_links' => 'deduction_links', + 'delete' => 'delete', + 'delete_deduction' => 'delete_deduction', + 'delete_employee' => 'delete_employee', + 'display' => 'display', + 'edit' => 'edit', + 'employee_footer' => 'employee_footer', + 'employee_header' => 'employee_header', + 'employee_links' => 'employee_links', + 'js_menu' => 'js_menu', + 'list_employees' => 'list_employees', + 'menubar' => 'menubar', + 'save' => 'save', + 'save_as_new' => 'save_as_new', + 'save_deduction' => 'save_deduction', + 'save_employee' => 'save_employee', + 'search' => 'search', + 'search_deduction' => 'search_deduction', + 'search_employee' => 'search_employee', + 'section_menu' => 'section_menu', + 'update' => 'update', + 'update_deduction' => 'update_deduction', + 'update_employee' => 'update_employee', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/ic b/locale/it/ic new file mode 100755 index 00000000..a9f683f8 --- /dev/null +++ b/locale/it/ic @@ -0,0 +1,223 @@ +$self{texts} = { + 'Accounting Menu' => 'Menu Contabilità', + 'Accounts' => 'Conti', + 'Active' => 'Attivo', + 'Add' => 'Aggiungi', + 'Add Assembly' => 'Aggiungi Assemblato', + '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', + 'Assemblies' => 'Assemblati', + 'Assemblies restocked!' => 'Assemblati ricaricati!', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'BOM' => 'BOM', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'COGS' => 'Costo dei Beni Venduti', + 'Cannot delete item!' => 'Non puoi cancellare l\'articolo', + 'Cannot stock assemblies!' => 'Non puoi caricare gli assemblati!', + 'Cash' => 'Cassa', + 'Cc' => 'Cc', + 'Closed' => 'Chiuso', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Customer' => 'Cliente', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'Drawing' => 'Disegno', + 'E-mail' => 'E-mail', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit Assembly' => 'Modifica Assemblato', + 'Edit Part' => 'Modifica Articolo', + 'Edit Service' => 'Modifica Servizio', + 'Employee' => 'Dipendente', + 'Expense' => 'Costi', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'Image' => 'Immagine', + 'In-line' => 'In-line', + 'Include in Report' => 'Includi nel Prospetto', + 'Income' => 'Ricavi', + 'Individual Items' => 'Articoli Individuali', + 'Inventory' => 'Inventario', + 'Inventory quantity must be zero before you can set this assembly obsolete!' => 'La quantità in inventario deve essere zero per poter mettere l\'assemblato come obsoleto!', + 'Inventory quantity must be zero before you can set this part obsolete!' => 'La quantità in inventario deve essere zero per poter mettere l\'articolo come obsoleto!', + 'Invoice' => 'Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Invoice Number missing!' => 'Manca il numero della Fattura!', + 'Item deleted!' => 'Articolo Cancellato!', + 'Item not on file!' => 'Articolo non in archivio!', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Last Cost' => 'Ultimo Costo', + 'Line Total' => 'Totale Linea', + 'Link Accounts' => 'Collegamenti tra Conti', + 'List Price' => 'Prezzo di Listino', + 'Make' => 'Produttore', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'Microfiche' => 'Microfiche', + 'Model' => 'Modello', + 'Name' => 'Nome', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Number missing in Row' => 'Manca il codice nella riga', + 'Obsolete' => 'Obsoleto', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'On Hand' => 'Disponibilità', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Date missing!' => 'Manca la data dell\'ordine', + 'Order Number' => 'Numero Fattura Fornitore', + 'Order Number missing!' => 'Manca il numero dell\'ordine!', + 'Orphaned' => 'Orfano', + '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!', + 'Part' => 'Articolo', + 'Parts' => 'Articoli', + 'Phone' => 'Tel.', + 'Postscript' => 'Postscript', + 'Price' => 'Prezzo', + 'Project' => 'Progetto', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Qty' => 'Q.tà', + 'ROP' => 'Soglia di Riordino', + 'Recd' => 'Ricevuto', + 'Required by' => 'Necessario dal', + 'Sales Invoice' => 'Fattura di vendita', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Screen' => 'Schermo', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Sell Price' => 'Prezzo di Vendita', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Services' => 'Servizi', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Short' => 'Corto', + 'Stock Assembly' => 'Magazzino Assemblati', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'To' => 'Al', + 'Top Level' => 'Livello Top', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Updated' => 'Aggiornato', + 'Vendor' => 'Fornitore', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'Weight' => 'Peso', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'days' => 'giorni', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_assembly' => 'add_assembly', + 'add_labor_overhead' => 'add_labor_overhead', + 'add_part' => 'add_part', + 'add_service' => 'add_service', + 'assembly_row' => 'assembly_row', + 'calc_markup' => 'calc_markup', + 'check_customer' => 'check_customer', + 'check_form' => 'check_form', + 'check_vendor' => 'check_vendor', + 'continue' => 'continue', + 'create_form' => 'create_form', + 'customer_details' => 'customer_details', + 'customer_row' => 'customer_row', + 'delete' => 'delete', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_row' => 'display_row', + 'e_mail' => 'e_mail', + 'edit' => 'edit', + 'edit_assemblyitem' => 'edit_assemblyitem', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'generate_report' => 'generate_report', + 'invoicetotal' => 'invoicetotal', + 'item_selected' => 'item_selected', + 'js_menu' => 'js_menu', + 'link_part' => 'link_part', + 'list_assemblies' => 'list_assemblies', + 'makemodel_row' => 'makemodel_row', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'new_item' => 'new_item', + 'parts_subtotal' => 'parts_subtotal', + 'print' => 'print', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'purchase_order' => 'purchase_order', + 'quotation' => 'quotation', + 'requirements' => 'requirements', + 'requirements_report' => 'requirements_report', + 'restock_assemblies' => 'restock_assemblies', + 'rfq' => 'rfq', + 'sales_order' => 'sales_order', + 'save' => 'save', + 'save_as_new' => 'save_as_new', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_item' => 'select_item', + 'select_name' => 'select_name', + 'send_email' => 'send_email', + 'ship_to' => 'ship_to', + 'stock_assembly' => 'stock_assembly', + 'update' => 'update', + 'validate_items' => 'validate_items', + 'vendor_details' => 'vendor_details', + 'vendor_row' => 'vendor_row', + 'aggiungi_assemblato' => 'add_assembly', + 'aggiungi_articolo' => 'add_part', + 'aggiungi_servizio' => 'add_service', + 'continua' => 'continue', + 'cancella' => 'delete', + 'modifica_assemblato' => 'edit_assembly', + 'modifica_articolo' => 'edit_part', + 'modifica_servizio' => 'edit_service', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/io b/locale/it/io new file mode 100755 index 00000000..180653a8 --- /dev/null +++ b/locale/it/io @@ -0,0 +1,105 @@ +$self{texts} = { + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + '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', + '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!', + 'Part' => 'Articolo', + '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', + 'Service' => 'Servizio', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'To' => 'Al', + 'Unit' => 'Unità', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', +}; + +$self{subs} = { + 'calc_markup' => 'calc_markup', + 'check_form' => 'check_form', + 'create_form' => 'create_form', + 'customer_details' => 'customer_details', + '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', + 'vendor_details' => 'vendor_details', + 'continua' => 'continue', +}; + +1; + diff --git a/locale/it/ir b/locale/it/ir new file mode 100755 index 00000000..0c6c99d9 --- /dev/null +++ b/locale/it/ir @@ -0,0 +1,188 @@ +$self{texts} = { + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Invoice Number' => 'Sei sicuro di voler cancellare la Fattura numero', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'Cannot delete invoice!' => 'Non puoi cancellare la fattura!', + 'Cannot post invoice for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post invoice!' => 'Non puoi salvare la fattura!', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cc' => 'Cc', + 'Confirm!' => 'Conferma!', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Credit Limit' => 'Fido', + 'Currency' => 'Valuta', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'E-mail' => 'E-mail', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Exch' => 'Cambio', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'In-line' => 'In-line', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Invoice Number missing!' => 'Manca il numero della Fattura!', + 'Invoice deleted!' => 'Fattura Cancellata!', + 'Item not on file!' => 'Articolo non in archivio!', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Language' => 'Lingua', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'Notes' => 'Note', + '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' => 'Numero Fattura Fornitore', + '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!', + 'Part' => 'Articolo', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payments' => 'Pagamenti', + 'Phone' => 'Tel.', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Postscript' => 'Postscript', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Purchase Order' => 'Ordine di acquisto', + 'Qty' => 'Q.tà', + 'Recd' => 'Ricevuto', + 'Record in' => 'Registra in', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Required by' => 'Necessario dal', + 'Sales Order' => 'Ordine di vendita', + 'Screen' => 'Schermo', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Source' => 'Sorgente', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'Yes' => 'Si', + 'ea' => 'ci', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'calc_markup' => 'calc_markup', + 'check_form' => 'check_form', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_form' => 'create_form', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_row' => 'display_row', + 'e_mail' => 'e_mail', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'gl_transaction' => 'gl_transaction', + 'invoice_links' => 'invoice_links', + 'invoicetotal' => 'invoicetotal', + 'item_selected' => 'item_selected', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'new_item' => 'new_item', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'prepare_invoice' => 'prepare_invoice', + 'print' => 'print', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'project_selected' => 'project_selected', + 'purchase_order' => 'purchase_order', + 'quotation' => 'quotation', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'rfq' => 'rfq', + 'sales_invoice_' => 'sales_invoice_', + 'sales_order' => 'sales_order', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'section_menu' => 'section_menu', + 'select_item' => 'select_item', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'send_email' => 'send_email', + 'ship_to' => 'ship_to', + 'update' => 'update', + 'validate_items' => 'validate_items', + 'vendor_details' => 'vendor_details', + 'vendor_invoice_' => 'vendor_invoice_', + 'yes' => 'yes', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'ordine_di_acquisto' => 'purchase_order', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/is b/locale/it/is new file mode 100755 index 00000000..47df0f37 --- /dev/null +++ b/locale/it/is @@ -0,0 +1,195 @@ +$self{texts} = { + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Invoice' => 'Aggiungi Fattura di vendita', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Invoice Number' => 'Sei sicuro di voler cancellare la Fattura numero', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'Cannot delete invoice!' => 'Non puoi cancellare la fattura!', + 'Cannot post invoice for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post invoice!' => 'Non puoi salvare la fattura!', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cc' => 'Cc', + 'Confirm!' => 'Conferma!', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Credit Limit' => 'Fido', + 'Currency' => 'Valuta', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'E-mail' => 'E-mail', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit Sales Invoice' => 'Modifica Fattura di Vendita', + 'Exch' => 'Cambio', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'In-line' => 'In-line', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Invoice Number missing!' => 'Manca il numero della Fattura!', + 'Invoice deleted!' => 'Fattura Cancellata!', + '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', + 'Notes' => 'Note', + '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' => 'Numero Fattura Fornitore', + '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!', + 'Part' => 'Articolo', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payments' => 'Pagamenti', + 'Phone' => 'Tel.', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Postscript' => 'Postscript', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Purchase Order' => 'Ordine di acquisto', + 'Qty' => 'Q.tà', + 'Recd' => 'Ricevuto', + 'Record in' => 'Registra in', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Required by' => 'Necessario dal', + 'Sales Order' => 'Ordine di vendita', + 'Screen' => 'Schermo', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Source' => 'Sorgente', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'Yes' => 'Si', + 'ea' => 'ci', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'calc_markup' => 'calc_markup', + 'check_form' => 'check_form', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_form' => 'create_form', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_row' => 'display_row', + 'e_mail' => 'e_mail', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'gl_transaction' => 'gl_transaction', + 'invoice_links' => 'invoice_links', + 'invoicetotal' => 'invoicetotal', + 'item_selected' => 'item_selected', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'new_item' => 'new_item', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'prepare_invoice' => 'prepare_invoice', + 'print' => 'print', + 'print_and_post' => 'print_and_post', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'project_selected' => 'project_selected', + 'purchase_order' => 'purchase_order', + 'quotation' => 'quotation', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'rfq' => 'rfq', + 'sales_invoice_' => 'sales_invoice_', + 'sales_order' => 'sales_order', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'section_menu' => 'section_menu', + 'select_item' => 'select_item', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'send_email' => 'send_email', + 'ship_to' => 'ship_to', + 'update' => 'update', + 'validate_items' => 'validate_items', + 'vendor_details' => 'vendor_details', + 'vendor_invoice_' => 'vendor_invoice_', + 'yes' => 'yes', + 'continua' => 'continue', + 'cancella' => 'delete', + 'e_mail' => 'e_mail', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'stampa' => 'print', + 'ordine_di_vendita' => 'sales_order', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/jc b/locale/it/jc new file mode 100755 index 00000000..e419739a --- /dev/null +++ b/locale/it/jc @@ -0,0 +1,81 @@ +$self{texts} = { + 'Accounting Menu' => 'Menu Contabilità', + 'Amount' => 'Importo', + 'Closed' => 'Chiuso', + 'Confirm!' => 'Conferma!', + 'Continue' => 'Continua', + 'Current' => 'Corrente', + 'Date' => 'Data', + 'Date missing!' => 'Manca la data!', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'Employee' => 'Dipendente', + 'From' => 'Dal', + 'ID' => 'ID', + 'Include in Report' => 'Includi nel Prospetto', + 'Notes' => 'Note', + 'Open' => 'Aperto', + 'PDF' => 'PDF', + 'Postscript' => 'Postscript', + 'Print' => 'Stampa', + 'Project Number missing!' => 'Manca il codice del progetto!', + 'Qty' => 'Q.tà', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Screen' => 'Schermo', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Subtotal' => 'Totale Parziale', + 'To' => 'Al', + 'Total' => 'Totale', + 'Update' => 'Aggiorna', + 'Yes' => 'Si', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_stores_card' => 'add_stores_card', + 'add_time_card' => 'add_time_card', + 'continue' => 'continue', + 'delete' => 'delete', + 'delete_timecard' => 'delete_timecard', + 'display' => 'display', + 'display_form' => 'display_form', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'jcitems_links' => 'jcitems_links', + 'js_menu' => 'js_menu', + 'list_storescard' => 'list_storescard', + 'list_timecard' => 'list_timecard', + 'menubar' => 'menubar', + 'prepare_storescard' => 'prepare_storescard', + 'prepare_timecard' => 'prepare_timecard', + 'print' => 'print', + 'print_and_save' => 'print_and_save', + 'print_and_save_as_new' => 'print_and_save_as_new', + 'print_options' => 'print_options', + 'print_timecard' => 'print_timecard', + 'resave' => 'resave', + 'save' => 'save', + 'save_as_new' => 'save_as_new', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'storescard_footer' => 'storescard_footer', + 'storescard_header' => 'storescard_header', + 'timecard_footer' => 'timecard_footer', + 'timecard_header' => 'timecard_header', + 'update' => 'update', + 'yes' => 'yes', + 'yes_delete_timecard' => 'yes_delete_timecard', + 'continua' => 'continue', + 'cancella' => 'delete', + 'stampa' => 'print', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/locales.pl b/locale/it/locales.pl new file mode 100755 index 00000000..cc8d2be7 --- /dev/null +++ b/locale/it/locales.pl @@ -0,0 +1,351 @@ +#!/usr/bin/perl + +# -n do not include custom_ scripts +# -a build all file +# -m do not generate missing files + +use FileHandle; + + +$basedir = "../.."; +$bindir = "$basedir/bin/mozilla"; +$menufile = "menu.ini"; + +foreach $item (@ARGV) { + $item =~ s/-//g; + $arg{$item} = 1; +} + +open(FH, "LANGUAGE"); +$language = <FH>; +close(FH); +chomp $language; +$language =~ s/\((.*)\)/$1/; +$charset = $1; + +opendir DIR, "$bindir" or die "$!"; +@progfiles = grep { /\.pl/; !/(_|^\.)/ } readdir DIR; +seekdir DIR, 0; +@customfiles = grep /_/, readdir DIR; +closedir DIR; + +# put customized files into @customfiles +@customfiles = () if ($arg{n}); + +if ($arg{n}) { + @menufiles = ($menufile); +} else { + opendir DIR, "$basedir" or die "$!"; + @menufiles = grep { /.*?_$menufile$/ } readdir DIR; + closedir DIR; + unshift @menufiles, $menufile; +} + +if (-f "all") { + eval { require "all"; }; + %all = %{$self{texts}}; + %{$self{texts}} = (); +} else { + # build %all file from individual files + foreach $file (@progfiles) { + &scanfile("$bindir/$file"); + } +} + +# remove the old missing file +if (-f 'missing') { + unlink "missing"; +} + +foreach $file (@progfiles) { + + %locale = (); + %submit = (); + %subrt = (); + @missing = (); + %missing = (); + + &scanfile("$bindir/$file"); + + # scan custom_{module}.pl or {login}_{module}.pl files + foreach $customfile (@customfiles) { + if ($customfile =~ /_$file/) { + if (-f "$bindir/$customfile") { + &scanfile("$bindir/$customfile"); + } + } + } + + # if this is the menu.pl file + if ($file eq 'menu.pl') { + foreach $item (@menufiles) { + &scanmenu("$basedir/$item"); + } + } + + $file =~ s/\.pl//; + + if (-f "$file.missing") { + eval { require "$file.missing"; }; + unlink "$file.missing"; + + for (keys %$missing) { + $self{texts}{$_} ||= $missing->{$_}; + } + } + + open FH, ">$file" or die "$! : $file"; + + if ($charset) { + print FH qq|\$self{charset} = '$charset';\n\n|; + } + + print FH q|$self{texts} = { +|; + + foreach $key (sort keys %locale) { + $text = ($self{texts}{$key}) ? $self{texts}{$key} : $all{$key}; + $count++; + + $text =~ s/'/\\'/g; + $text =~ s/\\$/\\\\/; + + $keytext = $key; + $keytext =~ s/'/\\'/g; + $keytext =~ s/\\$/\\\\/; + + if (!$text) { + $notext++; + push @missing, $keytext; + next; + } + + print FH qq| '$keytext'|.(' ' x (27-length($keytext))).qq| => '$text',\n|; + } + + print FH q|}; + +$self{subs} = { +|; + + foreach $key (sort keys %subrt) { + $text = $key; + $text =~ s/'/\\'/g; + $text =~ s/\\$/\\\\/; + print FH qq| '$text'|.(' ' x (27-length($text))).qq| => '$text',\n|; + } + + foreach $key (sort keys %submit) { + $text = ($self{texts}{$key}) ? $self{texts}{$key} : $all{$key}; + next unless $text; + + $text =~ s/'/\\'/g; + $text =~ s/\\$/\\\\/; + + $english_sub = $key; + $english_sub =~ s/'/\\'/g; + $english_sub =~ s/\\$/\\\\/; + $english_sub = lc $key; + + $translated_sub = lc $text; + $english_sub =~ s/( |-|,|\/|\.$)/_/g; + $translated_sub =~ s/( |-|,|\/|\.$)/_/g; + print FH qq| '$translated_sub'|.(' ' x (27-length($translated_sub))).qq| => '$english_sub',\n|; + } + + print FH q|}; + +1; + +|; + + close FH; + + if (!$arg{m}) { + if (@missing) { + open FH, ">$file.missing" or die "$! : missing"; + + print FH qq|# module $file +# add the missing texts and run locales.pl to rebuild + +\$missing = { +|; + + foreach $text (@missing) { + $text =~ s/'/\\'/g; + $text =~ s/\\$/\\\\/; + print FH qq| '$text'|.(' ' x (27-length($text))).qq| => '',\n|; + } + + print FH q|}; + +1; +|; + + close FH; + + } + } + + + # redo the all file + if ($arg{a}) { + open FH, ">all" or die "$! : all"; + + print FH q|# These are all the texts to build the translations files. +# to build unique strings edit the module files instead +# this file is just a shortcut to build strings which are the same +|; + + if ($charset) { + print FH qq|\$self{charset} = '$charset';\n\n|; + } + + print FH q| +$self{texts} = { +|; + + foreach $key (sort keys %all) { + $keytext = $key; + $keytext =~ s/'/\\'/g; + $keytext =~ s/\\$/\\\\/; + + $text = $all{$key}; + $text =~ s/'/\\'/g; + $text =~ s/\\$/\\\\/; + print FH qq| '$keytext'|.(' ' x (27-length($keytext))).qq| => '$text',\n|; + } + + print FH q|}; + +1; +|; + + close FH; + + } + +} + +$per = sprintf("%.1f", ($count - $notext) / $count * 100); +print "\n$language - ${per}%\n"; + +exit; +# eof + + +sub scanfile { + my ($file, $level) = @_; + + my $fh = new FileHandle; + open $fh, "$file" or die "$! : $file"; + + $file =~ s/\.pl//; + $file =~ s/$bindir\///; + + %temp = (); + for (keys %{$self{texts}}) { + $temp{$_} = $self{texts}{$_}; + } + + # read translation file if it exists + if (-f $file) { + eval { do "$file"; }; + for (keys %{$self{texts}}) { + $all{$_} ||= $self{texts}{$_}; + if ($level) { + $temp{$_} ||= $self{texts}{$_}; + } else { + $temp{$_} = $self{texts}{$_}; + } + } + } + + %{$self{texts}} = (); + for (sort keys %temp) { + $self{texts}{$_} = $temp{$_}; + } + + + while (<$fh>) { + # is this another file + if (/require\s+\W.*\.pl/) { + my $newfile = $&; + $newfile =~ s/require\s+\W//; + $newfile =~ s/\$form->{path}\///; + &scanfile("$bindir/$newfile", 1) if $newfile !~ /_/; + } + + # is this a sub ? + if (/^sub /) { + ($null, $subrt) = split / +/; + $subrt{$subrt} = 1; + next; + } + + my $rc = 1; + + while ($rc) { + if (/Locale/) { + if (!/^use /) { + my ($null, $country) = split /,/; + $country =~ s/^ +["']//; + $country =~ s/["'].*//; + } + } + + if (/\$locale->text.*?\W\)/) { + my $string = $&; + $string =~ s/\$locale->text\(\s*['"(q|qq)]['\/\\\|~]*//; + $string =~ s/\W\)+.*$//; + + # if there is no $ in the string record it + unless ($string =~ /\$\D.*/) { + # this guarantees one instance of string + $locale{$string} = 1; + + # is it a submit button before $locale-> + if (/type=submit/i) { + $submit{$string} = 1; + } + } + } + + # exit loop if there are no more locales on this line + ($rc) = ($' =~ /\$locale->text/); + # strip text + s/^.*?\$locale->text.*?\)//; + } + } + + close($fh); + +} + + +sub scanmenu { + my $file = shift; + + my $fh = new FileHandle; + open $fh, "$file" or die "$! : $file"; + + my @a = grep /^\[/, <$fh>; + close($fh); + + # strip [] + grep { s/(\[|\])//g } @a; + + foreach my $item (@a) { + $item =~ s/ *$//; + @b = split /--/, $item; + foreach $string (@b) { + chomp $string; + if ($string !~ /^\s*$/) { + $locale{$string} = 1; + } + } + } + +} + + diff --git a/locale/it/login b/locale/it/login new file mode 100755 index 00000000..7b33541f --- /dev/null +++ b/locale/it/login @@ -0,0 +1,21 @@ +$self{texts} = { + 'Company' => 'Ragione Sociale', + 'Continue' => 'Continua', + 'Incorrect Dataset version!' => 'Versione del Dataset non corretta!', + 'Login' => 'Login', + 'Name' => 'Nome', + 'Password' => 'Password', + 'Version' => 'Versione', + 'You did not enter a name!' => 'Non hai inserito il nome!', +}; + +$self{subs} = { + 'login' => 'login', + 'login_screen' => 'login_screen', + 'logout' => 'logout', + 'selectdataset' => 'selectdataset', + 'login' => 'login', +}; + +1; + diff --git a/locale/it/menu b/locale/it/menu new file mode 100755 index 00000000..ede27e40 --- /dev/null +++ b/locale/it/menu @@ -0,0 +1,80 @@ +$self{texts} = { + 'AP' => 'Debiti Fornitori', + 'AP Aging' => 'Partite Aperte', + 'AP Transaction' => 'Transazione Fornitore', + 'AR' => 'Crediti Clienti', + 'AR Aging' => 'Partite Aperte', + 'AR Transaction' => 'Transazione Cliente', + 'Accounting Menu' => 'Menu Contabilità', + 'Add Account' => 'Aggiungi conto', + 'Add Assembly' => 'Aggiungi Assemblato', + 'Add Customer' => 'Aggiungi Cliente', + 'Add GIFI' => 'Aggiungi codice GIFI', + 'Add Part' => 'Aggiungi Articolo', + 'Add Project' => 'Aggiungi Progetto', + 'Add Service' => 'Aggiungi Servizio', + 'Add Transaction' => 'Aggiungi Transazione', + 'Add Vendor' => 'Aggiungi Fornitore', + 'Assemblies' => 'Assemblati', + 'Audit Control' => 'Controllo accessi', + 'Backup' => 'Backup', + 'Balance Sheet' => 'Stato Patrimoniale', + 'Cash' => 'Cassa', + 'Chart of Accounts' => 'Piano dei Conti', + 'Check' => 'Assegno', + 'Customers' => 'Clienti', + 'Description' => 'Descrizione', + 'General Ledger' => 'Contabilità generale', + 'Goods & Services' => 'Beni e Servizi', + 'HTML Templates' => 'Modelli HTML', + 'Income Statement' => 'Conto Economico', + 'Invoice' => 'Fattura', + 'LaTeX Templates' => 'Modelli LaTeX', + 'Language' => 'Lingua', + 'List Accounts' => 'Lista Conti', + 'List GIFI' => 'Lista codici GIFI', + 'Logout' => 'Logout', + 'Open' => 'Aperto', + 'Order Entry' => 'Ordini', + 'Packing List' => 'Lista Etichette', + 'Parts' => 'Articoli', + 'Payment' => 'Pagamento', + 'Payments' => 'Pagamenti', + 'Preferences' => 'Preferenze', + 'Print' => 'Stampa', + 'Projects' => 'Progetti', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Receipt' => 'Incasso', + 'Receipts' => 'Incassi', + 'Reconciliation' => 'Conciliazione', + 'Reports' => 'Prospetti', + 'Sales Invoice' => 'Fattura di vendita', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save to File' => 'Salva su file', + 'Send by E-Mail' => 'Spedisci via e-mail', + 'Services' => 'Servizi', + 'Ship' => 'Invio', + 'Statement' => 'Sollecito', + 'Stock Assembly' => 'Magazzino Assemblati', + 'Stylesheet' => 'Foglio di Stile', + 'System' => 'Sistema', + 'Tax collected' => 'Debito IVA', + 'Tax paid' => 'Credito IVA', + 'Transactions' => 'Transazioni', + 'Trial Balance' => 'Bilancio di Verifica', + 'Vendors' => 'Fornitori', + 'Version' => 'Versione', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'display' => 'display', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'section_menu' => 'section_menu', +}; + +1; + diff --git a/locale/it/oe b/locale/it/oe new file mode 100755 index 00000000..007593bd --- /dev/null +++ b/locale/it/oe @@ -0,0 +1,236 @@ +$self{texts} = { + 'Accounting Menu' => 'Menu Contabilità', + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Invoice' => 'Aggiungi Fattura di vendita', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Order Number' => 'Sei sicuro di volre cancellare l\'ordine numero', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'C' => 'C', + 'Cannot delete order!' => 'Non puoi cancellare l\'ordine', + 'Cannot save order!' => 'Non puoi salvare l\'ordine!', + 'Cc' => 'Cc', + 'Closed' => 'Chiuso', + 'Confirm!' => 'Conferma!', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'Done' => 'Fatto', + 'E-mail' => 'E-mail', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit Purchase Order' => 'Modifica Ordine di acquisto', + 'Edit Sales Order' => 'Modifica Ordine di vendita', + 'Employee' => 'Dipendente', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'ID' => 'ID', + 'In-line' => 'In-line', + 'Include in Report' => 'Includi nel Prospetto', + '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', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nothing selected!' => 'Non hai selezionato nulla!', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Number missing in Row' => 'Manca il codice nella riga', + 'O' => 'O', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Date' => 'Data dell\'ordine', + 'Order Date missing!' => 'Manca la data dell\'ordine', + 'Order Number' => 'Numero Fattura Fornitore', + 'Order Number missing!' => 'Manca il numero dell\'ordine!', + 'Order deleted!' => 'Ordine Cancellato!', + 'Order saved!' => 'Ordine Salvato!', + '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!', + 'Part' => 'Articolo', + 'Phone' => 'Tel.', + 'Postscript' => 'Postscript', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Qty' => 'Q.tà', + 'Recd' => 'Ricevuto', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Required by' => 'Necessario dal', + 'Sales Invoice' => 'Fattura di vendita', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Screen' => 'Schermo', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'Yes' => 'Si', + 'days' => 'giorni', + 'ea' => 'ci', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'backorder_exchangerate' => 'backorder_exchangerate', + 'calc_markup' => 'calc_markup', + 'check_form' => 'check_form', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'consolidate_orders' => 'consolidate_orders', + 'continue' => 'continue', + 'create_backorder' => 'create_backorder', + 'create_form' => 'create_form', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_row' => 'display_row', + 'display_ship_receive' => 'display_ship_receive', + 'done' => 'done', + 'e_mail' => 'e_mail', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'generate_orders' => 'generate_orders', + 'generate_purchase_orders' => 'generate_purchase_orders', + 'gl_transaction' => 'gl_transaction', + 'invoice' => 'invoice', + 'invoicetotal' => 'invoicetotal', + 'item_selected' => 'item_selected', + 'js_menu' => 'js_menu', + 'list_transfer' => 'list_transfer', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'new_item' => 'new_item', + 'order_links' => 'order_links', + 'po_orderitems' => 'po_orderitems', + 'post_as_new' => 'post_as_new', + 'prepare_order' => 'prepare_order', + 'print' => 'print', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_and_save' => 'print_and_save', + 'print_and_save_as_new' => 'print_and_save_as_new', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'project_selected' => 'project_selected', + 'purchase_order' => 'purchase_order', + 'quotation' => 'quotation', + 'quotation_' => 'quotation_', + 'rebuild_vc' => 'rebuild_vc', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'rfq' => 'rfq', + 'rfq_' => 'rfq_', + 'sales_invoice' => 'sales_invoice', + 'sales_invoice_' => 'sales_invoice_', + 'sales_order' => 'sales_order', + 'save' => 'save', + 'save_as_new' => 'save_as_new', + 'save_exchangerate' => 'save_exchangerate', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'search' => 'search', + 'search_transfer' => 'search_transfer', + 'section_menu' => 'section_menu', + 'select_item' => 'select_item', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'select_vendor' => 'select_vendor', + 'send_email' => 'send_email', + 'ship_receive' => 'ship_receive', + 'ship_to' => 'ship_to', + 'subtotal' => 'subtotal', + 'transactions' => 'transactions', + 'transfer' => 'transfer', + 'update' => 'update', + 'validate_items' => 'validate_items', + 'vendor_details' => 'vendor_details', + 'vendor_invoice' => 'vendor_invoice', + 'vendor_invoice_' => 'vendor_invoice_', + 'vendor_selected' => 'vendor_selected', + 'yes' => 'yes', + 'continua' => 'continue', + 'cancella' => 'delete', + 'fatto' => 'done', + 'e_mail' => 'e_mail', + 'stampa' => 'print', + 'ordine_di_acquisto' => 'purchase_order', + 'fattura_di_vendita' => 'sales_invoice', + 'ordine_di_vendita' => 'sales_order', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/pe b/locale/it/pe new file mode 100755 index 00000000..4f398036 --- /dev/null +++ b/locale/it/pe @@ -0,0 +1,107 @@ +$self{texts} = { + 'Accounting Menu' => 'Menu Contabilità', + 'Active' => 'Attivo', + 'Add' => 'Aggiungi', + 'Add Project' => 'Aggiungi Progetto', + 'Address' => 'Indirizzo', + 'All' => 'Tutti', + 'Amount' => 'Importo', + 'Bin' => 'Codice BIN', + 'Continue' => 'Continua', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'Edit Project' => 'Modifica Progetto', + 'Employee' => 'Dipendente', + 'From' => 'Dal', + 'Income' => 'Ricavi', + 'Language' => 'Lingua', + 'Link Accounts' => 'Collegamenti tra Conti', + 'List Price' => 'Prezzo di Listino', + 'Notes' => 'Note', + 'Nothing selected!' => 'Non hai selezionato nulla!', + 'Number' => 'Partita IVA', + 'Orphaned' => 'Orfano', + 'Project' => 'Progetto', + 'Project deleted!' => 'Progetto cancellato!', + 'Project saved!' => 'Progetto salvato!', + 'Projects' => 'Progetti', + 'Qty' => 'Q.tà', + 'Save' => 'Salva', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Sell Price' => 'Prezzo di Vendita', + 'Tax' => 'Tassa', + 'To' => 'Al', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Updated' => 'Aggiornato', + 'Vendor' => 'Fornitore', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'Weight' => 'Peso', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_group' => 'add_group', + 'add_job' => 'add_job', + 'add_pricegroup' => 'add_pricegroup', + 'add_project' => 'add_project', + 'continue' => 'continue', + 'customer_selected' => 'customer_selected', + 'delete' => 'delete', + 'display' => 'display', + 'display_form' => 'display_form', + 'edit' => 'edit', + 'edit_translation' => 'edit_translation', + 'generate_sales_orders' => 'generate_sales_orders', + 'jcitems' => 'jcitems', + 'job_footer' => 'job_footer', + 'job_header' => 'job_header', + 'job_report' => 'job_report', + 'js_menu' => 'js_menu', + 'list_projects' => 'list_projects', + 'list_stock' => 'list_stock', + 'list_translations' => 'list_translations', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'partsgroup_footer' => 'partsgroup_footer', + 'partsgroup_header' => 'partsgroup_header', + 'partsgroup_report' => 'partsgroup_report', + 'prepare_job' => 'prepare_job', + 'prepare_partsgroup' => 'prepare_partsgroup', + 'prepare_pricegroup' => 'prepare_pricegroup', + 'prepare_project' => 'prepare_project', + 'pricegroup_footer' => 'pricegroup_footer', + 'pricegroup_header' => 'pricegroup_header', + 'pricegroup_report' => 'pricegroup_report', + 'project_footer' => 'project_footer', + 'project_header' => 'project_header', + 'project_jcitems_list' => 'project_jcitems_list', + 'project_report' => 'project_report', + 'project_sales_order' => 'project_sales_order', + 'sales_order_footer' => 'sales_order_footer', + 'sales_order_header' => 'sales_order_header', + 'save' => 'save', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_customer' => 'select_customer', + 'select_name' => 'select_name', + 'stock' => 'stock', + 'translation' => 'translation', + 'translation_footer' => 'translation_footer', + 'translation_header' => 'translation_header', + 'update' => 'update', + 'aggiungi_progetto' => 'add_project', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'save', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/pos b/locale/it/pos new file mode 100755 index 00000000..0bbbc1c6 --- /dev/null +++ b/locale/it/pos @@ -0,0 +1,62 @@ +$self{texts} = { + 'Accounting Menu' => 'Menu Contabilità', + 'Amount' => 'Importo', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Continue' => 'Continua', + 'Credit Limit' => 'Fido', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Delete' => 'Cancella', + 'Description' => 'Descrizione', + 'Extended' => 'Esteso', + 'From' => 'Dal', + 'Language' => 'Lingua', + 'Number' => 'Partita IVA', + 'Open' => 'Aperto', + 'Post' => 'Salva', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Qty' => 'Q.tà', + 'Receipts' => 'Incassi', + 'Record in' => 'Registra in', + 'Remaining' => 'Rimanente', + 'Screen' => 'Schermo', + 'Source' => 'Sorgente', + 'Subtotal' => 'Totale Parziale', + 'Tax Included' => 'Tasse Incluse', + 'To' => 'Al', + 'Total' => 'Totale', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'display' => 'display', + 'display_row' => 'display_row', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'js_menu' => 'js_menu', + 'lookup_partsgroup' => 'lookup_partsgroup', + 'menubar' => 'menubar', + 'openinvoices' => 'openinvoices', + 'post' => 'post', + 'print' => 'print', + 'print_and_post' => 'print_and_post', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'receipts' => 'receipts', + 'section_menu' => 'section_menu', + 'continua' => 'continue', + 'cancella' => 'delete', + 'salva' => 'post', + 'stampa' => 'print', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/ps b/locale/it/ps new file mode 100755 index 00000000..09c97c7d --- /dev/null +++ b/locale/it/ps @@ -0,0 +1,284 @@ +$self{texts} = { + 'AP Aging' => 'Partite Aperte', + 'AP Transaction' => 'Transazione Fornitore', + 'AP Transactions' => 'Transazioni Fornitori', + 'AR Aging' => 'Partite Aperte', + 'AR Transaction' => 'Transazione Cliente', + 'AR Transactions' => 'Transazioni Clienti', + 'Account' => 'Conto', + 'Account Number' => 'Numero di conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Accounts' => 'Conti', + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Invoice' => 'Aggiungi Fattura di vendita', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Amount Due' => 'Importo Dovuto', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Invoice Number' => 'Sei sicuro di voler cancellare la Fattura numero', + 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la Transazione', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Balance' => 'Saldo', + 'Balance Sheet' => 'Stato Patrimoniale', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'Cannot delete invoice!' => 'Non puoi cancellare la fattura!', + 'Cannot delete transaction!' => 'Non puoi cancellare la transazione', + 'Cannot post invoice for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post invoice!' => 'Non puoi salvare la fattura!', + 'Cannot post payment for a closed period!' => 'Non puoi salvare pagamenti per un periodo chiuso!', + 'Cannot post transaction for a closed period!' => 'Non puoi salvare una transazione per un periodo chiuso!', + 'Cannot post transaction!' => 'Non puoi salvare la transazione!', + 'Cash' => 'Cassa', + 'Cc' => 'Cc', + 'Check' => 'Assegno', + 'Closed' => 'Chiuso', + 'Compare to' => 'Confronta con', + 'Confirm!' => 'Conferma!', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Credit' => 'Avere', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Date Paid' => 'Data di pagamento', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Decimalplaces' => 'Numero di decimali', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'Due Date missing!' => 'Data di Scadenza mancante!', + 'E-mail' => 'E-mail', + 'E-mail Statement to' => 'Manda il sollecito via e-mail a', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit Sales Invoice' => 'Modifica Fattura di Vendita', + 'Employee' => 'Dipendente', + 'Exch' => 'Cambio', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'GIFI' => 'Codice GIFI', + 'Heading' => 'Intestazione', + 'ID' => 'ID', + 'In-line' => 'In-line', + 'Include in Report' => 'Includi nel Prospetto', + 'Income Statement' => 'Conto Economico', + 'Invoice' => 'Fattura', + 'Invoice Date' => 'Data Registrazione Fattura', + 'Invoice Date missing!' => 'Manca la data della Fattura!', + 'Invoice Number' => 'Protocollo Numero', + 'Invoice Number missing!' => 'Manca il numero della Fattura!', + 'Invoice deleted!' => 'Fattura Cancellata!', + 'Item not on file!' => 'Articolo non in archivio!', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Language' => 'Lingua', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'N/A' => 'N/A', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nothing selected!' => 'Non hai selezionato nulla!', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Number missing in Row' => 'Manca il codice nella riga', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Date missing!' => 'Manca la data dell\'ordine', + 'Order Number' => 'Numero Fattura Fornitore', + '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!', + 'Paid' => 'Importo Pagato', + 'Part' => 'Articolo', + 'Payment date missing!' => 'Manca la data del pagamento!', + 'Payments' => 'Pagamenti', + 'Phone' => 'Tel.', + 'Post' => 'Salva', + 'Post as new' => 'Salva come nuovo', + 'Postscript' => 'Postscript', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Purchase Order' => 'Ordine di acquisto', + 'Qty' => 'Q.tà', + 'Recd' => 'Ricevuto', + 'Receipt' => 'Incasso', + 'Receipts' => 'Incassi', + 'Record in' => 'Registra in', + 'Reference' => 'Riferimento', + 'Remaining' => 'Rimanente', + 'Report for' => 'Prospetto per', + 'Required by' => 'Necessario dal', + 'Sales Order' => 'Ordine di vendita', + 'Screen' => 'Schermo', + 'Select all' => 'Seleziona tutto', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Source' => 'Sorgente', + 'Standard' => 'Standard', + 'Statement' => 'Sollecito', + 'Statement sent to' => 'Sollecito mandato a', + 'Statements sent to printer!' => 'Solleciti mandati in stampa!', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'Tax collected' => 'Debito IVA', + 'Tax paid' => 'Credito IVA', + 'To' => 'Al', + 'Total' => 'Totale', + 'Transaction deleted!' => 'Transazione cancellata!', + 'Transaction posted!' => 'Transazione salvata!', + 'Trial Balance' => 'Bilancio di Verifica', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'Yes' => 'Si', + 'as at' => 'Al', + 'ea' => 'ci', + 'for Period' => 'per il Periodo', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'aging' => 'aging', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'calc_markup' => 'calc_markup', + 'check_form' => 'check_form', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_form' => 'create_form', + 'create_links' => 'create_links', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'display_form' => 'display_form', + 'display_row' => 'display_row', + 'e_mail' => 'e_mail', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'generate_ap_aging' => 'generate_ap_aging', + 'generate_ar_aging' => 'generate_ar_aging', + 'generate_balance_sheet' => 'generate_balance_sheet', + 'generate_income_statement' => 'generate_income_statement', + 'generate_projects' => 'generate_projects', + 'generate_tax_report' => 'generate_tax_report', + 'generate_trial_balance' => 'generate_trial_balance', + 'gl_transaction' => 'gl_transaction', + 'invoice_links' => 'invoice_links', + 'invoicetotal' => 'invoicetotal', + 'item_selected' => 'item_selected', + 'js_menu' => 'js_menu', + 'list_accounts' => 'list_accounts', + 'list_payments' => 'list_payments', + 'lookup_partsgroup' => 'lookup_partsgroup', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'new_item' => 'new_item', + 'openinvoices' => 'openinvoices', + 'payment_selected' => 'payment_selected', + 'payment_subtotal' => 'payment_subtotal', + 'post' => 'post', + 'post_as_new' => 'post_as_new', + 'prepare_invoice' => 'prepare_invoice', + 'print' => 'print', + 'print_and_post' => 'print_and_post', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_check' => 'print_check', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'print_receipt' => 'print_receipt', + 'print_transaction' => 'print_transaction', + 'project_selected' => 'project_selected', + 'purchase_order' => 'purchase_order', + 'quotation' => 'quotation', + 'rebuild_vc' => 'rebuild_vc', + 'receipts' => 'receipts', + 'report' => 'report', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'rfq' => 'rfq', + 'sales_invoice_' => 'sales_invoice_', + 'sales_order' => 'sales_order', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'search' => 'search', + 'section_menu' => 'section_menu', + 'select_all' => 'select_all', + 'select_item' => 'select_item', + 'select_name' => 'select_name', + 'select_payment' => 'select_payment', + 'select_project' => 'select_project', + 'send_email' => 'send_email', + 'ship_to' => 'ship_to', + 'statement_details' => 'statement_details', + 'subtotal' => 'subtotal', + 'tax_subtotal' => 'tax_subtotal', + 'transactions' => 'transactions', + 'update' => 'update', + 'validate_items' => 'validate_items', + 'vendor_details' => 'vendor_details', + 'vendor_invoice_' => 'vendor_invoice_', + 'yes' => 'yes', + 'transazione_fornitore' => 'ap_transaction', + 'transazione_cliente' => 'ar_transaction', + 'continua' => 'continue', + 'cancella' => 'delete', + 'e_mail' => 'e_mail', + 'salva' => 'post', + 'salva_come_nuovo' => 'post_as_new', + 'stampa' => 'print', + 'ordine_di_vendita' => 'sales_order', + 'seleziona_tutto' => 'select_all', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; + diff --git a/locale/it/pw b/locale/it/pw new file mode 100755 index 00000000..1787e9c9 --- /dev/null +++ b/locale/it/pw @@ -0,0 +1,12 @@ +$self{texts} = { + 'Continue' => 'Continua', + 'Password' => 'Password', +}; + +$self{subs} = { + 'getpassword' => 'getpassword', + 'continua' => 'continue', +}; + +1; + diff --git a/locale/it/qe b/locale/it/qe new file mode 100755 index 00000000..7153d1ec --- /dev/null +++ b/locale/it/qe @@ -0,0 +1,199 @@ +$self{texts} = { + 'Add' => 'Aggiungi', + 'Add Purchase Invoice' => 'Aggiungi Fattura di acquisto', + 'Add Purchase Order' => 'Aggiungi Ordine di acquisto', + 'Add Sales Invoice' => 'Aggiungi Fattura di vendita', + 'Add Sales Order' => 'Aggiungi Ordine di vendita', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Are you sure you want to delete Order Number' => 'Sei sicuro di volre cancellare l\'ordine numero', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Bcc' => 'Bcc', + 'Bin' => 'Codice BIN', + 'C' => 'C', + 'Cannot delete order!' => 'Non puoi cancellare l\'ordine', + 'Cannot save order!' => 'Non puoi salvare l\'ordine!', + 'Cc' => 'Cc', + 'Closed' => 'Chiuso', + 'Confirm!' => 'Conferma!', + 'Contact' => 'Contatto', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Credit Limit' => 'Fido', + 'Curr' => 'Valuta', + 'Currency' => 'Valuta', + 'Customer' => 'Cliente', + 'Customer missing!' => 'Cliente mancante!', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Delete' => 'Cancella', + 'Delivery Date' => 'Data di spedizione', + 'Description' => 'Descrizione', + 'E-mail' => 'E-mail', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Edit Purchase Order' => 'Modifica Ordine di acquisto', + 'Edit Sales Order' => 'Modifica Ordine di vendita', + 'Exchangerate' => 'Tasso di Cambio', + 'Exchangerate missing!' => 'Manca il Tasso di Cambio!', + 'Extended' => 'Esteso', + 'Fax' => 'Fax', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'ID' => 'ID', + 'In-line' => 'In-line', + 'Include in Report' => 'Includi nel Prospetto', + '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', + 'Name' => 'Nome', + 'No.' => 'No.', + 'Notes' => 'Note', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Number missing in Row' => 'Manca il codice nella riga', + 'O' => 'O', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Open' => 'Aperto', + 'Order' => 'Ordine', + 'Order Date' => 'Data dell\'ordine', + 'Order Date missing!' => 'Manca la data dell\'ordine', + 'Order Number' => 'Ordine Numero', + 'Order Number missing!' => 'Manca il numero dell\'ordine!', + 'Order deleted!' => 'Ordine Cancellato!', + 'Order saved!' => 'Ordine Salvato!', + '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!', + 'Part' => 'Articolo', + 'Phone' => 'Tel.', + 'Postscript' => 'Postscript', + 'Price' => 'Prezzo', + 'Print' => 'Stampa', + 'Printer' => 'Stampante', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Purchase Order' => 'Ordine di acquisto', + 'Purchase Orders' => 'Ordini di acquisto', + 'Qty' => 'Q.tà', + 'Recd' => 'Ricevuto', + 'Remaining' => 'Rimanente', + 'Required by' => 'Necessario dal', + 'Sales Order' => 'Ordine di vendita', + 'Sales Orders' => 'Ordini di vendita', + 'Save' => 'Salva', + 'Save as new' => 'Salva come nuovo', + 'Screen' => 'Schermo', + 'Select from one of the items below' => 'Seleziona uno dei seguenti Articoli', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Service' => 'Servizio', + 'Ship' => 'Invio', + 'Ship to' => 'Spedire a', + 'Ship via' => 'Porto', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax Included' => 'Tasse Incluse', + 'Terms' => 'Termini: Netto', + 'To' => 'Al', + 'Total' => 'Totale', + 'Unit' => 'Unità', + 'Update' => 'Aggiorna', + 'Vendor' => 'Fornitore', + 'Vendor missing!' => 'Manca il fornitore!', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'What type of item is this?' => 'Che tipo di Articolo è questo?', + 'Yes' => 'Si', + 'days' => 'giorni', + 'ea' => 'ci', + 'emailed to' => 'Mandato via e-mail a', + 'sent to printer' => 'mandato in stampa', +}; + +$self{subs} = { + 'add' => 'add', + 'add_transaction' => 'add_transaction', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_form' => 'check_form', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'create_backorder' => 'create_backorder', + 'customer_details' => 'customer_details', + 'delete' => 'delete', + 'display_form' => 'display_form', + 'display_row' => 'display_row', + 'e_mail' => 'e_mail', + 'edit' => 'edit', + 'form_footer' => 'form_footer', + 'form_header' => 'form_header', + 'gl_transaction' => 'gl_transaction', + 'invoice' => 'invoice', + 'invoicetotal' => 'invoicetotal', + 'item_selected' => 'item_selected', + 'name_selected' => 'name_selected', + 'new_item' => 'new_item', + 'order' => 'order', + 'order_links' => 'order_links', + 'orders' => 'orders', + 'post_as_new' => 'post_as_new', + 'prepare_order' => 'prepare_order', + 'print' => 'print', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'project_selected' => 'project_selected', + 'purchase_invoice' => 'purchase_invoice', + 'sales_invoice' => 'sales_invoice', + 'save' => 'save', + 'save_as_new' => 'save_as_new', + 'search' => 'search', + 'select_item' => 'select_item', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'send_email' => 'send_email', + 'ship_to' => 'ship_to', + 'subtotal' => 'subtotal', + 'update' => 'update', + 'validate_items' => 'validate_items', + 'vendor_details' => 'vendor_details', + 'yes' => 'yes', + 'aggiungi' => 'add', + 'continua' => 'continue', + 'cancella' => 'delete', + 'e_mail' => 'e_mail', + 'fattura' => 'invoice', + 'stampa' => 'print', + 'salva' => 'save', + 'salva_come_nuovo' => 'save_as_new', + 'spedire_a' => 'ship_to', + 'aggiorna' => 'update', + 'si' => 'yes', +}; + +1; diff --git a/locale/it/rc b/locale/it/rc new file mode 100755 index 00000000..4e7c9689 --- /dev/null +++ b/locale/it/rc @@ -0,0 +1,67 @@ +$self{texts} = { + 'Account' => 'Conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Balance' => 'Saldo', + 'Continue' => 'Continua', + 'Credit' => 'Avere', + 'Current' => 'Corrente', + 'Date' => 'Data', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Description' => 'Descrizione', + 'Difference' => 'Differenza', + 'Done' => 'Fatto', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Out of balance!' => 'Non conciliato!', + 'Reconciliation' => 'Conciliazione', + 'Select all' => 'Seleziona tutto', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Source' => 'Sorgente', + 'Statement Balance' => 'Saldo', + 'To' => 'Al', + 'Update' => 'Aggiorna', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'continue' => 'continue', + 'display' => 'display', + 'display_form' => 'display_form', + 'done' => 'done', + 'get_payments' => 'get_payments', + 'js_menu' => 'js_menu', + 'menubar' => 'menubar', + 'reconciliation' => 'reconciliation', + 'section_menu' => 'section_menu', + 'select_all' => 'select_all', + 'update' => 'update', + 'continua' => 'continue', + 'fatto' => 'done', + 'seleziona_tutto' => 'select_all', + 'aggiorna' => 'update', +}; + +1; + diff --git a/locale/it/rp b/locale/it/rp new file mode 100755 index 00000000..2b3724ce --- /dev/null +++ b/locale/it/rp @@ -0,0 +1,157 @@ +$self{texts} = { + 'AP Aging' => 'Partite Aperte', + 'AR Aging' => 'Partite Aperte', + 'Account' => 'Conto', + 'Account Number' => 'Numero di conto', + 'Accounting Menu' => 'Menu Contabilità', + 'Accounts' => 'Conti', + 'Address' => 'Indirizzo', + 'Amount' => 'Importo', + 'Apr' => 'Apr', + 'April' => 'Aprile', + 'Attachment' => 'Attachment', + 'Aug' => 'Ago', + 'August' => 'Agosto', + 'Balance' => 'Saldo', + 'Balance Sheet' => 'Stato Patrimoniale', + 'Bcc' => 'Bcc', + 'Cash' => 'Cassa', + 'Cc' => 'Cc', + 'Compare to' => 'Confronta con', + 'Continue' => 'Continua', + 'Copies' => 'Copie', + 'Credit' => 'Avere', + 'Curr' => 'Valuta', + 'Current' => 'Corrente', + 'Customer' => 'Cliente', + 'Customer not on file!' => 'Cliente non sul file!', + 'Date' => 'Data', + 'Debit' => 'Dare', + 'Dec' => 'Dic', + 'December' => 'Dicembre', + 'Decimalplaces' => 'Numero di decimali', + 'Description' => 'Descrizione', + 'Due Date' => 'Scadenza Fattura', + 'E-mail' => 'E-mail', + 'E-mail Statement to' => 'Manda il sollecito via e-mail a', + 'E-mail address missing!' => 'Indirizzo e-mail mancante!', + 'Feb' => 'Feb', + 'February' => 'Febbraio', + 'From' => 'Dal', + 'GIFI' => 'Codice GIFI', + 'Heading' => 'Intestazione', + 'ID' => 'ID', + 'In-line' => 'In-line', + 'Include in Report' => 'Includi nel Prospetto', + 'Income Statement' => 'Conto Economico', + 'Invoice' => 'Fattura', + 'Jan' => 'Gen', + 'January' => 'Gennaio', + 'Jul' => 'Lug', + 'July' => 'Luglio', + 'Jun' => 'Giu', + 'June' => 'Giugno', + 'Language' => 'Lingua', + 'Mar' => 'Mar', + 'March' => 'Marzo', + 'May' => 'Mag', + 'May ' => 'Mag ', + 'Message' => 'Messaggio', + 'N/A' => 'N/A', + 'Nothing selected!' => 'Non hai selezionato nulla!', + 'Nov' => 'Nov', + 'November' => 'Novembre', + 'Number' => 'Partita IVA', + 'Oct' => 'Ott', + 'October' => 'Ottobre', + 'Order' => 'Ordine', + 'PDF' => 'PDF', + 'Payments' => 'Pagamenti', + 'Postscript' => 'Postscript', + 'Print' => 'Stampa', + 'Project' => 'Progetto', + 'Project not on file!' => 'Progetto non archiviato!', + 'Receipts' => 'Incassi', + 'Reference' => 'Riferimento', + 'Report for' => 'Prospetto per', + 'Screen' => 'Schermo', + 'Select all' => 'Seleziona tutto', + 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', + 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', + 'Select postscript or PDF!' => 'Scegli tra postscript e PDF!', + 'Sep' => 'Set', + 'September' => 'Settembre', + 'Source' => 'Sorgente', + 'Standard' => 'Standard', + 'Statement' => 'Sollecito', + 'Statement sent to' => 'Sollecito mandato a', + 'Statements sent to printer!' => 'Solleciti mandati in stampa!', + 'Subject' => 'Oggetto', + 'Subtotal' => 'Totale Parziale', + 'Tax' => 'Tassa', + 'Tax collected' => 'Debito IVA', + 'Tax paid' => 'Credito IVA', + 'To' => 'Al', + 'Total' => 'Totale', + 'Trial Balance' => 'Bilancio di Verifica', + 'Vendor' => 'Fornitore', + 'Vendor not on file!' => 'Fornitore non in archivio!', + 'as at' => 'Al', + 'for Period' => 'per il Periodo', +}; + +$self{subs} = { + 'acc_menu' => 'acc_menu', + 'add_transaction' => 'add_transaction', + 'aging' => 'aging', + 'ap_transaction' => 'ap_transaction', + 'ar_transaction' => 'ar_transaction', + 'check_name' => 'check_name', + 'check_project' => 'check_project', + 'continue' => 'continue', + 'delete_schedule' => 'delete_schedule', + 'display' => 'display', + 'e_mail' => 'e_mail', + 'generate_ap_aging' => 'generate_ap_aging', + 'generate_ar_aging' => 'generate_ar_aging', + 'generate_balance_sheet' => 'generate_balance_sheet', + 'generate_income_statement' => 'generate_income_statement', + 'generate_projects' => 'generate_projects', + 'generate_tax_report' => 'generate_tax_report', + 'generate_trial_balance' => 'generate_trial_balance', + 'gl_transaction' => 'gl_transaction', + 'js_menu' => 'js_menu', + 'list_accounts' => 'list_accounts', + 'list_payments' => 'list_payments', + 'menubar' => 'menubar', + 'name_selected' => 'name_selected', + 'payment_subtotal' => 'payment_subtotal', + 'post_as_new' => 'post_as_new', + 'print' => 'print', + 'print_and_post_as_new' => 'print_and_post_as_new', + 'print_form' => 'print_form', + 'print_options' => 'print_options', + 'project_selected' => 'project_selected', + 'rebuild_vc' => 'rebuild_vc', + 'report' => 'report', + 'repost' => 'repost', + 'reprint' => 'reprint', + 'sales_invoice_' => 'sales_invoice_', + 'save_schedule' => 'save_schedule', + 'schedule' => 'schedule', + 'section_menu' => 'section_menu', + 'select_all' => 'select_all', + 'select_name' => 'select_name', + 'select_project' => 'select_project', + 'send_email' => 'send_email', + 'statement_details' => 'statement_details', + 'tax_subtotal' => 'tax_subtotal', + 'vendor_invoice_' => 'vendor_invoice_', + 'continua' => 'continue', + 'e_mail' => 'e_mail', + 'stampa' => 'print', + 'seleziona_tutto' => 'select_all', +}; + +1; + |