diff options
author | ivan <ivan> | 2007-12-04 21:29:13 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-12-04 21:29:13 +0000 |
commit | 86b1b489a4ed2f9bc0cba6cafeab0d6eca5584dc (patch) | |
tree | 4a7a8893f6ad8bd86cf6c22e00cf19d9c70554f2 /sql-ledger/locale/it | |
parent | 948b8acdd4b9b3864342062d0c397a11f57c5700 (diff) |
there's no reason this should still be hanging aroudn the tree
Diffstat (limited to 'sql-ledger/locale/it')
30 files changed, 0 insertions, 4036 deletions
diff --git a/sql-ledger/locale/it/COPYING b/sql-ledger/locale/it/COPYING deleted file mode 100644 index 6e7041a02..000000000 --- a/sql-ledger/locale/it/COPYING +++ /dev/null @@ -1,26 +0,0 @@ -###################################################################### -# SQL-Ledger 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/sql-ledger/locale/it/LANGUAGE b/sql-ledger/locale/it/LANGUAGE deleted file mode 100644 index 4e07e7ecd..000000000 --- a/sql-ledger/locale/it/LANGUAGE +++ /dev/null @@ -1 +0,0 @@ -Italian diff --git a/sql-ledger/locale/it/Num2text b/sql-ledger/locale/it/Num2text deleted file mode 100644 index 1ec24ea69..000000000 --- a/sql-ledger/locale/it/Num2text +++ /dev/null @@ -1,162 +0,0 @@ -#===================================================================== -# SQL-Ledger Accounting -# Copyright (C) 2002 -# -# Author: Dieter Simader -# Email: dsimader@sql-ledger.org -# Web: http://www.sql-ledger.org -# -# 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/sql-ledger/locale/it/admin b/sql-ledger/locale/it/admin deleted file mode 100644 index 8d4a756a0..000000000 --- a/sql-ledger/locale/it/admin +++ /dev/null @@ -1,137 +0,0 @@ -$self{texts} = { - 'Access Control' => 'Controllo degli accessi', - 'Accounting' => 'Contabilità', - 'Add User' => 'Inserimento utente', - 'Address' => 'Indirizzo', - 'Administration' => 'Amministrazione', - 'Administrator' => 'Amministratore', - 'All Datasets up to date!' => 'Tutti gli insiemi di dati sono aggiornati!', - 'Cannot create Lock!' => 'Cannot create Lock!', - 'Change Admin Password' => 'Cambia la parola d\'ordine dell\'amministratore', - 'Change Password' => 'Cambia la parola d\'ordine', - 'Character Set' => 'Insieme di caratteri', - '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 insieme di dati', - 'DBI not installed!' => 'Modulo DBI non installato', - 'Database' => 'Base di dati', - 'Database Administration' => 'Amministratore della base di dati', - 'Database Driver not checked!' => 'Il driver della base di dati non e\' stato controllato!', - 'Database User missing!' => 'Manca l\'utente della base di dati!', - 'Dataset' => 'Insieme di dati', - 'Dataset missing!' => 'Insieme di dati mancante!', - 'Dataset updated!' => 'Insieme di dati aggiornato!', - 'Date Format' => 'Formato della data', - 'Delete' => 'Cancella', - 'Delete Dataset' => 'Cancella insieme di dati', - 'Directory' => 'Directory', - 'Driver' => 'Driver', - 'Dropdown Limit' => 'Limite per i menù a discesa', - 'E-mail' => 'E-mail', - 'Edit User' => 'Modifica utente', - 'Existing Datasets' => 'Insiemi di dati esistenti', - 'Fax' => 'Fax', - 'Host' => 'Host', - 'Hostname missing!' => 'Manca il nome del servente', - 'Language' => 'Lingua', - 'Leave host and port field empty unless you want to make a remote connection.' => 'Lascia in bianco il servente e la porta a meno che tu non voglia fare una connessione remota', - 'Lock System' => 'Lock System', - 'Lockfile created!' => 'Lockfile created!', - 'Lockfile removed!' => 'Lockfile removed!', - 'Login' => 'Login', - 'Login name missing!' => 'Nominativo di accesso mancante', - 'Logout' => 'Logout', - 'Multibyte Encoding' => 'Codifica', - 'Name' => 'Nome', - 'New Templates' => 'Nuovi modelli', - 'No Database Drivers available!' => 'Nessun gestore di base di dati disponibile!', - 'No Dataset selected!' => 'Nessun insieme di dati selezionato!', - 'Nothing to delete!' => 'Nulla da cancellare!', - 'Number Format' => 'Formato numerico', - 'Oracle Database Administration' => 'Amministratore della base di dati Oracle', - 'Password' => 'Parola d\'ordine', - 'Password changed!' => 'Parola d\'ordine aggiornata!', - 'Pg Database Administration' => 'Amministratore della base di dati Pg', - 'PgPP Database Administration' => 'PgPP Database Administration', - '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 insiemi di dati non sono in uso e possono essere cancellati', - 'The following Datasets need to be updated' => 'I seguenti insiemi di dati 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.', - 'Unlock System' => 'Unlock System', - 'Update Dataset' => 'Aggiorna l\'insieme di dati', - 'Use Templates' => 'Usa modelli', - 'User' => 'Utente', - 'User deleted!' => 'Utente cancellato!', - 'User saved!' => 'Utente salvato!', - 'Version' => 'Versione', - 'You must enter a host and port for local and remote connections!' => 'Si deve inserire un servente e una porta per le connessioni locali e remote!', - 'does not exist' => 'non esiste', - 'is already a member!' => 'è già utente della procedura!', - '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', - 'get_value' => 'get_value', - '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', - 'inserimento_utente' => 'add_user', - 'cambia_la_parola_d\'ordine_dell\'amministratore' => 'change_admin_password', - 'cambia_la_parola_d\'ordine' => 'change_password', - 'continua' => 'continue', - 'crea_insieme_di_dati' => 'create_dataset', - 'cancella' => 'delete', - 'cancella_insieme_di_dati' => 'delete_dataset', - 'lock_system' => 'lock_system', - 'login' => 'login', - 'logout' => 'logout', - 'amministratore_della_base_di_dati_oracle' => 'oracle_database_administration', - 'amministratore_della_base_di_dati_pg' => 'pg_database_administration', - 'pgpp_database_administration' => 'pgpp_database_administration', - 'salva' => 'save', - 'unlock_system' => 'unlock_system', - 'aggiorna_l\'insieme_di_dati' => 'update_dataset', -}; - -1; diff --git a/sql-ledger/locale/it/all b/sql-ledger/locale/it/all deleted file mode 100644 index e40e44b23..000000000 --- a/sql-ledger/locale/it/all +++ /dev/null @@ -1,766 +0,0 @@ -# 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} = { - '>' => '', - 'A' => '', - 'AP' => 'Debiti verso fornitori', - 'AP Aging' => 'Partite aperte', - 'AP Outstanding' => '', - 'AP Transaction' => 'Scrittura fornitore', - 'AP Transactions' => 'Scritture fornitori', - 'AR' => 'Crediti verso clienti', - 'AR Aging' => 'Partite aperte', - 'AR Outstanding' => '', - 'AR Transaction' => 'Scrittura cliente', - 'AR Transactions' => 'Scritture clienti', - 'About' => 'Informazioni', - 'Above' => '', - '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 does not exist!' => '', - 'Account saved!' => 'Conto salvato!', - 'Accounting' => 'Contabilità', - 'Accounting Menu' => 'Menù contabilità', - 'Accounts' => 'Conti', - 'Accrual' => '', - 'Activate Audit trails' => '', - 'Active' => 'Attivi', - 'Add' => 'Inserimento', - 'Add AP Transaction' => '', - 'Add AR Transaction' => '', - 'Add Account' => 'Inserimento conto', - 'Add Assembly' => 'Inserimento assemblato', - 'Add Business' => '', - 'Add Cash Transfer Transaction' => '', - 'Add Customer' => 'Inserimento cliente', - 'Add Deduction' => '', - 'Add Department' => '', - 'Add Employee' => '', - 'Add Exchange Rate' => '', - 'Add GIFI' => 'Inserimento codice GIFI', - 'Add General Ledger Transaction' => 'Inserimento scrittura di contabilità generale', - 'Add Group' => 'Inserimento gruppo', - 'Add Labor/Overhead' => '', - 'Add Language' => '', - 'Add POS Invoice' => '', - 'Add Part' => 'Inserimento articolo', - 'Add Pricegroup' => '', - 'Add Project' => 'Inserimento progetto', - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Quotation' => '', - 'Add Request for Quotation' => '', - 'Add SIC' => '', - 'Add Sales Invoice' => 'Inserimento fattura di vendita', - 'Add Sales Order' => 'Inserimento ordine di vendita', - 'Add Service' => 'Inserimento servizio', - 'Add Transaction' => 'Inserimento scrittura', - 'Add User' => 'Inserimento utente', - 'Add Vendor' => 'Inserimento fornitore', - 'Add Vendor Invoice' => 'Inserimento fattura di acquisto', - 'Add Warehouse' => '', - 'Address' => 'Indirizzo', - 'Administration' => 'Amministrazione', - 'Administrator' => 'Amministratore', - 'After Deduction' => '', - 'All' => 'Tutti', - 'All Accounts' => '', - 'All Datasets up to date!' => 'Tutti gli insiemi di dati sono aggiornati!', - 'All Items' => '', - 'Allowances' => '', - 'Amount' => 'Importo', - 'Amount Due' => 'Importo dovuto', - 'Amount missing!' => '', - '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 voler cancellare l\'ordine numero', - 'Are you sure you want to delete Quotation Number' => '', - 'Are you sure you want to delete Transaction' => 'Sei sicuro di voler cancellare la scrittura', - 'Are you sure you want to remove the marked entries from the queue?' => '', - 'Assemblies' => 'Assemblati', - 'Assemblies restocked!' => 'Assemblati ricaricati!', - 'Assembly' => '', - 'Asset' => 'Attività', - 'Attachment' => 'Allegato', - 'Audit Control' => 'Controllo delle revisioni', - 'Audit trail removed up to' => '', - 'Audit trails disabled' => '', - 'Audit trails enabled' => '', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'BIC' => '', - 'BOM' => '"BOM"', - 'Backup' => 'Copia di sicurezza', - 'Backup sent to' => 'Copia di sicurezza inviata a', - 'Balance' => 'Saldo', - 'Balance Sheet' => 'Stato patrimoniale', - 'Based on' => '', - 'Batch Printing' => '', - 'Bcc' => 'Bcc', - 'Before Deduction' => '', - 'Beginning Balance' => '', - 'Below' => '', - 'Billing Address' => '', - 'Bin' => 'Codice BIN', - 'Bin List' => '', - 'Bin Lists' => '', - 'Books are open' => 'Le scritture possono essere modificate', - 'Break' => '', - 'Business' => '', - 'Business Number' => 'Partita IVA', - 'Business deleted!' => '', - 'Business saved!' => '', - 'C' => 'Ch.', - 'COGS' => '"Cost of goods sold"', - 'Cannot create Lock!' => 'Cannot create Lock!', - 'Cannot delete account!' => 'Non si può cancellare il conto!', - 'Cannot delete customer!' => 'Non si può cancellare il cliente!', - 'Cannot delete default account!' => 'Non si può cancellare il conto predefinito!', - 'Cannot delete invoice!' => 'Non si può cancellare la fattura!', - 'Cannot delete item!' => 'Non si può cancellare l\'articolo', - 'Cannot delete order!' => 'Non si può cancellare l\'ordine', - 'Cannot delete quotation!' => '', - 'Cannot delete transaction!' => 'Non si può cancellare la scrittura', - 'Cannot delete vendor!' => 'Non si può cancellare il fornitore', - 'Cannot post Payment!' => '', - 'Cannot post Receipt!' => '', - 'Cannot post invoice for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post invoice!' => 'Non si può salvare la fattura!', - 'Cannot post payment for a closed period!' => 'Non si possono salvare pagamenti per un periodo chiuso!', - 'Cannot post transaction for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post transaction!' => 'Non si può salvare la scrittura!', - 'Cannot process payment for a closed period!' => 'Non si può elaborare un pagamento per un periodo chiuso!', - 'Cannot remove files!' => '', - 'Cannot save account!' => 'Non si può salvare il conto!', - 'Cannot save defaults!' => '', - 'Cannot save order!' => 'Non si può salvare l\'ordine!', - 'Cannot save preferences!' => 'Non si possono salvare le preferenze!', - 'Cannot save quotation!' => '', - 'Cannot set account for more than one of AR, AP or IC' => '', - 'Cannot set multiple options for' => '', - 'Cannot set multiple options for Parts Inventory' => '', - 'Cannot set multiple options for Service Items' => '', - 'Cannot stock assemblies!' => 'Non si possono caricare gli assemblati!', - 'Cash' => 'Cassa', - 'Cc' => 'Cc', - 'Change' => '', - 'Change Admin Password' => 'Cambia la parola d\'ordine dell\'amministratore', - 'Change Password' => 'Cambia la parola d\'ordine', - 'Character Set' => 'Insieme di caratteri', - 'Chart of Accounts' => 'Piano dei conti', - 'Check' => 'Assegno', - 'Check Inventory' => '', - 'Checks' => '', - 'City' => '', - 'Cleared' => '', - 'Click on login name to edit!' => 'Clicca sul nome per effettuare modifiche', - 'Close Books up to' => 'Blocca le scritture fino al', - 'Closed' => 'Chiuso', - 'Code' => '', - 'Code missing!' => '', - 'Company' => 'Ragione sociale', - 'Company Name' => '', - 'Compare to' => 'Confronta con', - 'Components' => '', - 'Confirm' => '', - 'Confirm!' => 'Conferma!', - 'Connect to' => 'Connetti a', - 'Contact' => 'Contatto', - 'Continue' => 'Continua', - 'Contra' => '', - 'Copies' => 'Copie', - 'Copy to COA' => 'Inserire come conto', - 'Cost' => '', - 'Cost Center' => '', - 'Could not save pricelist!' => '', - 'Could not save!' => '', - 'Could not transfer Inventory!' => '', - 'Country' => '', - 'Create Chart of Accounts' => 'Crea piano dei conti', - 'Create Dataset' => 'Crea insieme di dati', - 'Credit' => 'Avere', - 'Credit Limit' => 'Fido', - 'Curr' => 'Valuta', - 'Currency' => 'Valuta', - 'Current' => 'Corrente', - 'Current Earnings' => '', - 'Customer' => 'Cliente', - 'Customer History' => '', - 'Customer Number' => '', - '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', - 'DOB' => '', - 'Database' => 'Base di dati', - 'Database Administration' => 'Amministratore della base di dati', - 'Database Driver not checked!' => 'Il driver della base di dati non e\' stato controllato!', - 'Database Host' => 'Servente della base di dati', - 'Database User missing!' => 'Manca l\'utente della base di dati!', - 'Dataset' => 'Insieme di dati', - 'Dataset is newer than version!' => '', - 'Dataset missing!' => 'Insieme di dati mancante!', - 'Dataset updated!' => 'Insieme di dati aggiornato!', - 'Date' => 'Data', - 'Date Format' => 'Formato della data', - 'Date Paid' => 'Data di pagamento', - 'Date Received' => '', - 'Date missing!' => 'Manca la data!', - 'Date received missing!' => '', - 'Debit' => 'Dare', - 'Dec' => 'Dic', - 'December' => 'Dicembre', - 'Decimalplaces' => 'Numero di decimali', - 'Decrease' => '', - 'Deduct after' => '', - 'Deduction deleted!' => '', - 'Deduction saved!' => '', - 'Deductions' => '', - 'Defaults' => '', - 'Defaults saved!' => '', - 'Delete' => 'Cancella', - 'Delete Account' => 'Cancella conto', - 'Delete Dataset' => 'Cancella insieme di dati', - 'Delivery Date' => 'Data di spedizione', - 'Department' => '', - 'Department deleted!' => '', - 'Department saved!' => '', - 'Departments' => '', - 'Deposit' => 'Deposito', - 'Description' => 'Descrizione', - 'Description Translations' => '', - 'Description missing!' => '', - 'Detail' => '', - 'Difference' => 'Differenza', - 'Directory' => 'Directory', - 'Discount' => 'Sconto', - 'Done' => 'Fatto', - 'Drawing' => 'Disegno', - 'Driver' => 'Driver', - 'Dropdown Limit' => 'Limite per i menù 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!', - 'E-mailed' => '', - 'Edit' => 'Modifica', - 'Edit AP Transaction' => '', - 'Edit AR Transaction' => '', - 'Edit Account' => 'Modifica conto', - 'Edit Assembly' => 'Modifica assemblato', - 'Edit Business' => '', - 'Edit Cash Transfer Transaction' => '', - 'Edit Customer' => 'Modifica cliente', - 'Edit Deduction' => '', - 'Edit Department' => '', - 'Edit Description Translations' => '', - 'Edit Employee' => '', - 'Edit GIFI' => 'Modifica codice GIFI', - 'Edit General Ledger Transaction' => 'Modifica scrittura di contabilità generale', - 'Edit Group' => 'Modifica gruppo', - 'Edit Labor/Overhead' => '', - 'Edit Language' => '', - 'Edit POS Invoice' => '', - 'Edit Part' => 'Modifica articolo', - 'Edit Preferences for' => 'Modifica preferenze di', - 'Edit Pricegroup' => '', - 'Edit Project' => 'Modifica progetto', - 'Edit Purchase Order' => 'Modifica ordine di acquisto', - 'Edit Quotation' => '', - 'Edit Request for Quotation' => '', - 'Edit SIC' => '', - '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', - 'Edit Vendor' => 'Modifica fornitore', - 'Edit Vendor Invoice' => 'Modifica fattura di acquisto', - 'Edit Warehouse' => '', - 'Employee' => 'Dipendente', - 'Employee Name' => '', - 'Employee Number' => '', - 'Employee deleted!' => '', - 'Employee pays' => '', - 'Employee saved!' => '', - 'Employees' => '', - 'Employer' => '', - 'Employer pays' => '', - 'Enddate' => '', - 'Enforce transaction reversal for all dates' => 'Impedisce la modifica delle scritture per tutte le date', - 'Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies' => 'Valute (si possono inserire sigle di tre lettere separate da due punti, per esempio "EUR:USD:CAD"; è necessario indicare anche la valuta locale):', - 'Equity' => 'Capitale netto', - 'Excempt age <' => '', - 'Exch' => 'Cambio', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate for payment missing!' => 'Manca il tasso di cambio per il pagamento!', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Existing Datasets' => 'Insiemi di dati esistenti', - 'Expense' => 'Costi', - 'Expense Account' => 'Costi per prestazione di servizi', - 'Expense/Asset' => 'Acquisti/Attività', - 'Extended' => 'Totale riga', - 'FX' => '', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'Foreign Exchange Gain' => 'Proventi da cambio valuta', - 'Foreign Exchange Loss' => 'Oneri 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' => 'Scrittura di contabilità generale', - 'General Ledger' => 'Contabilità generale', - 'Goods & Services' => 'Beni e servizi', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - 'Group Translations' => '', - 'Group deleted!' => 'Gruppo cancellato', - 'Group missing!' => 'Gruppo mancante', - 'Group saved!' => 'Gruppo salvato', - 'Groups' => 'Gruppi', - 'HR' => '', - 'HTML Templates' => 'Modelli HTML', - 'Heading' => 'Intestazione', - 'History' => '', - 'Home Phone' => '', - 'Host' => 'Host', - 'Hostname missing!' => 'Manca il nome del servente', - 'IBAN' => '', - 'ID' => 'ID', - 'Image' => 'Immagine', - 'In-line' => 'In-line', - 'Include Exchange Rate Difference' => '', - 'Include in Report' => 'Includere nel prospetto', - 'Include in drop-down menus' => 'Da includere nei menù a discesa dei modelli seguenti', - 'Include this account on the customer/vendor forms to flag customer/vendor as taxable?' => 'Includere questo conto nei modelli di inserimento di clienti e fornitori, per l\'inserimento successivo dell\'imposta nelle scritture?', - 'Income' => '', - 'Income Account' => '', - 'Income Statement' => 'Conto economico', - 'Incorrect Dataset version!' => 'Versione dell\'insieme di dati non corretta!', - 'Incorrect Password!' => 'Parola d\'ordine errata!', - 'Increase' => '', - 'Individual Items' => 'Articoli individuali', - 'Internal Notes' => '', - 'Inventory' => 'Rimanenze/Acquisti', - 'Inventory Account' => 'Conto degli acquisti', - 'Inventory quantity must be zero before you can set this assembly obsolete!' => 'La quantità in rimanenza 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 rimamenza deve essere zero per poter mettere l\'articolo come obsoleto!', - 'Inventory saved!' => '', - 'Inventory transferred!' => '', - 'Invoice' => 'Fattura', - 'Invoice Date' => 'Data fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura numero', - 'Invoice Number missing!' => 'Manca il numero della fattura!', - 'Invoice deleted!' => 'Fattura cancellata!', - 'Invoice posted!' => 'Fattura salvata!', - 'Invoice processed!' => '', - 'Invoices' => 'Fatture', - 'Is this a summary account to record' => 'Questo conto è una contropartita corrispondente a:', - 'Item already on pricelist!' => '', - 'Item deleted!' => 'Articolo cancellato!', - 'Item not on file!' => 'Articolo non in archivio!', - 'Items' => '', - 'Jan' => 'Gen', - 'January' => 'Gennaio', - 'Jul' => 'Lug', - 'July' => 'Luglio', - 'Jun' => 'Giu', - 'June' => 'Giugno', - 'LaTeX Templates' => 'Modelli LaTeX', - 'Labor/Overhead' => '', - 'Language' => 'Lingua', - 'Language deleted!' => '', - 'Language saved!' => '', - 'Languages' => '', - 'Languages not defined!' => '', - 'Last Numbers & Default Accounts' => 'Ultimi numeri e conti predefiniti', - 'Leadtime' => '', - 'Leave host and port field empty unless you want to make a remote connection.' => 'Lascia in bianco il servente e la porta a meno che tu non voglia fare una connessione remota', - 'Liability' => 'Passività', - 'Licensed to' => 'Dato in licenza a', - 'Line Total' => 'Totale riga', - 'Link' => 'Collegamenti', - 'Link Accounts' => 'Collegamenti tra conti', - 'List' => '', - 'List Accounts' => 'Lista conti', - 'List Businesses' => '', - 'List Departments' => '', - 'List GIFI' => 'Lista codici GIFI', - 'List Languages' => '', - 'List Price' => 'Prezzo suggerito per la vendita al dettaglio', - 'List Projects' => '', - 'List SIC' => '', - 'List Transactions' => 'Lista scritture', - 'List Warehouses' => '', - 'Lock System' => 'Lock System', - 'Lockfile created!' => 'Lockfile created!', - 'Lockfile removed!' => 'Lockfile removed!', - 'Login' => 'Login', - 'Login name missing!' => 'Nominativo di accesso mancante', - 'Logout' => 'Logout', - 'Make' => 'Produttore', - 'Manager' => '', - 'Mar' => 'Mar', - 'March' => 'Marzo', - 'Marked entries printed!' => '', - 'Markup' => '', - 'Maximum' => '', - 'May' => 'Mag', - 'May ' => 'Mag ', - 'Memo' => '', - 'Menu Width' => '', - 'Message' => 'Messaggio', - 'Method' => '', - 'Microfiche' => 'Microfiche', - 'Model' => 'Modello', - 'Month' => '', - 'Multibyte Encoding' => 'Codifica', - 'N/A' => 'N/A', - 'Name' => 'Nome', - 'Name missing!' => 'Manca il nome!', - 'New Templates' => 'Nuovi modelli', - 'No' => 'No', - 'No Database Drivers available!' => 'Nessun gestore di base di dati disponibile!', - 'No Dataset selected!' => 'Nessun insieme di dati selezionato!', - 'No email address for' => 'Manca l\'indirizzo e-mail per', - 'No.' => 'No.', - 'Non-taxable' => '', - 'Non-taxable Purchases' => '', - 'Non-taxable Sales' => '', - 'Notes' => 'Note', - 'Nothing entered!' => '', - 'Nothing outstanding for ' => '', - 'Nothing selected!' => 'Non hai selezionato nulla!', - 'Nothing to delete!' => 'Nulla da cancellare!', - 'Nothing to print!' => '', - 'Nothing to transfer!' => '', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Number Format' => 'Formato numerico', - 'Number missing in Row' => 'Manca il codice nella riga', - 'O' => 'Ap.', - 'Obsolete' => 'Obsoleto/i', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'On Hand' => 'Disponibile/i', - 'Open' => 'Aperto/i', - 'Oracle Database Administration' => 'Amministratore della base di dati Oracle', - 'Order' => 'Ordine', - 'Order Date' => 'Data dell\'ordine', - 'Order Date missing!' => 'Manca la data dell\'ordine', - 'Order Entry' => 'Ordini', - 'Order Number' => 'Ordine numero', - 'Order Number missing!' => 'Manca il numero dell\'ordine!', - 'Order deleted!' => 'Ordine cancellato!', - 'Order processed!' => '', - 'Order saved!' => 'Ordine salvato!', - 'Orphaned' => 'Inutilizzati', - 'Out of balance transaction!' => '', - 'Out of balance!' => 'Non conciliato!', - 'Outstanding' => '', - 'PDF' => 'PDF', - 'POS' => '', - 'POS Invoice' => '', - 'Packing List' => 'Lista etichette', - 'Packing List Date missing!' => 'Manca la data della "Packing List"!', - 'Packing List Number missing!' => 'Manca il codice della "Packing List"!', - 'Packing Lists' => '', - 'Paid' => 'Importo pagato', - 'Part' => 'Componente', - 'Part Number' => '', - 'Partnumber' => '', - 'Parts' => 'Articoli', - 'Parts Inventory' => 'Magazzino degli articoli', - 'Password' => 'Parola d\'ordine', - 'Password changed!' => 'Parola d\'ordine aggiornata!', - 'Password does not match!' => '', - 'Passwords do not match!' => '', - 'Payables' => 'Debiti verso fornitori', - 'Payment' => 'Pagamento', - 'Payment date missing!' => 'Manca la data del pagamento!', - 'Payment posted!' => 'Pagamento salvato', - 'Payments' => 'Pagamenti', - 'Payroll Deduction' => '', - 'Period' => '', - 'Pg Database Administration' => 'Amministratore della base di dati Pg', - 'PgPP Database Administration' => 'PgPP Database Administration', - 'Phone' => 'Tel.', - 'Pick List' => '', - 'Pick Lists' => '', - 'Port' => 'Porta', - 'Port missing!' => 'Manca la porta', - 'Post' => 'Salva', - 'Post as new' => 'Salva come nuovo', - 'Posted!' => '', - 'Postscript' => 'PostScript', - 'Preferences' => 'Preferenze', - 'Preferences saved!' => 'Preferenze salvate!', - 'Prepayment' => '', - 'Price' => 'Prezzo', - 'Pricegroup' => '', - 'Pricegroup deleted!' => '', - 'Pricegroup missing!' => '', - 'Pricegroup saved!' => '', - 'Pricegroups' => '', - 'Pricelist' => '', - 'Print' => 'Stampa', - 'Print and Post' => '', - 'Print and Save' => '', - 'Printed' => '', - 'Printer' => 'Stampante', - 'Printing ... ' => '', - 'Profit Center' => '', - 'Project' => 'Progetto', - 'Project Description Translations' => '', - 'Project Number' => 'Numero progetto', - 'Project Number missing!' => 'Manca il codice del progetto!', - 'Project Transactions' => '', - 'Project deleted!' => 'Progetto cancellato!', - 'Project not on file!' => 'Progetto non archiviato!', - 'Project saved!' => 'Progetto salvato!', - 'Projects' => 'Progetti', - 'Purchase Order' => 'Ordine di acquisto', - 'Purchase Order Number' => '', - 'Purchase Orders' => 'Ordini di acquisto', - 'Qty' => 'Q.tà', - 'Quantity exceeds available units to stock!' => '', - 'Quarter' => '', - 'Queue' => '', - 'Queued' => '', - 'Quotation' => '', - 'Quotation ' => '', - 'Quotation Date' => '', - 'Quotation Date missing!' => '', - 'Quotation Number' => '', - 'Quotation Number missing!' => '', - 'Quotation deleted!' => '', - 'Quotations' => '', - 'R' => '', - 'RFQ' => '', - 'RFQ ' => '', - 'RFQ Number' => '', - 'RFQs' => '', - 'ROP' => 'Soglia di riordino', - 'Rate' => 'Tasso', - 'Rate missing!' => '', - 'Recd' => 'Ricevuto', - 'Receipt' => 'Riscossione', - 'Receipt posted!' => '', - 'Receipts' => 'Riscossioni', - 'Receivables' => 'Crediti verso clienti', - 'Receive' => '', - 'Receive Merchandise' => '', - 'Reconciliation' => 'Conciliazione', - 'Reconciliation Report' => '', - 'Record in' => 'Registra in', - 'Reference' => 'Documento', - 'Reference missing!' => 'Manca il documento!', - 'Remaining' => 'Rimanente', - 'Remove' => '', - 'Remove Audit trails up to' => '', - 'Removed spoolfiles!' => '', - 'Removing marked entries from queue ...' => '', - 'Report for' => 'Prospetto per', - 'Reports' => 'Prospetti', - 'Request for Quotation' => '', - 'Request for Quotations' => '', - 'Required by' => 'Consegna', - 'Retained Earnings' => 'Proventi', - 'Role' => '', - 'S' => '', - 'SIC' => '', - 'SIC deleted!' => '', - 'SIC saved!' => '', - 'SKU' => '', - 'SSN' => '', - 'Sale' => '', - 'Sales' => 'Vendite', - 'Sales Invoice' => 'Fattura di vendita', - 'Sales Invoice ' => '', - 'Sales Invoice Number' => '', - 'Sales Invoice.' => '', - 'Sales Invoices' => '', - 'Sales Order' => 'Ordine di vendita', - 'Sales Order Number' => '', - 'Sales Orders' => 'Ordini di vendita', - 'Sales Quotation Number' => '', - 'Salesperson' => 'Addetto alle vendite', - 'Save' => 'Salva', - 'Save Pricelist' => '', - 'Save as new' => 'Salva come nuovo', - 'Save to File' => 'Salva su file', - 'Screen' => 'Schermo', - 'Search' => '', - 'Select' => '', - 'Select Printer or Queue!' => '', - '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 payment' => '', - 'Select postscript or PDF!' => 'Scegli tra PostScript e PDF!', - 'Select txt, postscript or PDF!' => '', - 'Sell' => '', - 'Sell Price' => 'Prezzo di listino', - 'Send by E-Mail' => 'Spedisci via e-mail', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Serial No.' => '', - 'Serial Number' => '', - 'Service' => 'Servizio', - 'Service Items' => 'Inventario dei servizi', - 'Services' => 'Servizi', - 'Session Timeout' => '', - 'Session expired!' => '', - 'Setup Templates' => 'Configurazione dei modelli', - 'Ship' => 'Invio', - 'Ship Merchandise' => '', - 'Ship to' => 'Spedire a', - 'Ship via' => 'Porto', - 'Shipping' => '', - 'Shipping Address' => '', - 'Shipping Date' => '', - 'Shipping Date missing!' => '', - 'Shipping Point' => '', - 'Short' => 'Scaricati oltre la disponibilità', - 'Signature' => 'Firma', - 'Source' => 'Riferimento', - 'Spoolfile' => '', - 'Standard' => 'Standard', - 'Standard Industrial Codes' => '', - 'Startdate' => '', - 'State' => '', - 'State/Province' => '', - 'Statement' => 'Sollecito', - 'Statement Balance' => 'Saldo', - 'Statement sent to' => 'Sollecito mandato a', - 'Statements sent to printer!' => 'Solleciti mandati in stampa!', - 'Stock' => 'Magazzino', - 'Stock Assembly' => 'Magazzino assemblati', - 'Stylesheet' => 'Foglio di stile', - 'Sub-contract GIFI' => '', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'Summary' => '', - 'Supervisor' => '', - 'System' => 'Sistema', - 'System Defaults' => '', - 'Tax' => 'Imposta', - 'Tax Accounts' => 'Conti relativi a imposte', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'Tax Number' => '', - 'Tax Number / SSN' => '', - 'Tax collected' => 'Debito IVA', - 'Tax paid' => 'Credito IVA', - 'Taxable' => 'Conti di imposta applicabili', - 'Template saved!' => 'Modello salvato!', - 'Templates' => 'Modelli', - 'Terms' => 'Pagamento a ', - 'Text Templates' => '', - 'The following Datasets are not in use and can be deleted' => 'I seguenti insiemi di dati non sono in uso e possono essere cancellati', - 'The following Datasets need to be updated' => 'I seguenti insiemi di dati 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!', - 'Till' => '', - 'To' => 'A', - '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', - 'Trade Discount' => '', - 'Transaction' => '', - 'Transaction Date missing!' => 'Manca la data della scrittura!', - 'Transaction deleted!' => 'Scrittura cancellata!', - 'Transaction posted!' => 'Scrittura salvata!', - 'Transaction reversal enforced for all dates' => 'Uso della partita doppia forzato per tutte le date', - 'Transaction reversal enforced up to' => 'Uso della partita doppia forzato fino a', - 'Transactions' => 'scritture', - 'Transfer' => '', - 'Transfer Inventory' => '', - 'Transfer to' => '', - 'Translation' => '', - 'Translation deleted!' => '', - 'Translation not on file!' => '', - 'Translations' => '', - 'Translations saved!' => '', - 'Trial Balance' => 'Bilancio di verifica', - 'Type of Business' => '', - 'Unit' => 'Unità', - 'Unit of measure' => 'Unità di misura', - 'Unlock System' => 'Unlock System', - 'Update' => 'Aggiorna', - 'Update Dataset' => 'Aggiorna l\'insieme di dati', - 'Updated' => 'Aggiornato', - 'Upgrading to Version' => '', - 'Use Templates' => 'Usa modelli', - 'User' => 'Utente', - 'User deleted!' => 'Utente cancellato!', - 'User saved!' => 'Utente salvato!', - 'Valid until' => '', - 'Vendor' => 'Fornitore', - 'Vendor History' => '', - 'Vendor Invoice' => 'Fattura di acquisto', - 'Vendor Invoice ' => '', - 'Vendor Invoice Number' => '', - 'Vendor Invoice.' => '', - 'Vendor Invoices' => '', - 'Vendor Number' => '', - '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', - 'Warehouse' => '', - 'Warehouse deleted!' => '', - 'Warehouse saved!' => '', - 'Warehouses' => '', - 'Warning!' => '', - 'Weight' => 'Peso', - 'Weight Unit' => 'Unità di misura', - 'What type of item is this?' => 'Che tipo di articolo è questo?', - 'Work Order' => '', - 'Work Orders' => '', - 'Work Phone' => '', - 'Year' => '', - 'Yearend' => '', - 'Yearend date missing!' => '', - 'Yearend posted!' => '', - 'Yearend posting failed!' => '', - 'Yes' => 'Sì', - 'You are logged out' => '', - 'You did not enter a name!' => 'Non hai inserito il nome!', - 'You must enter a host and port for local and remote connections!' => 'Si deve inserire un servente e una porta per le connessioni locali e remote!', - 'Zip/Postal Code' => '', - 'account cannot be set to any other type of account' => '', - 'as at' => 'Al', - 'days' => 'giorni', - 'does not exist' => 'non esiste', - 'done' => '', - 'ea' => 'ci', - 'for Period' => 'nel periodo', - 'is already a member!' => 'è già utente della procedura!', - 'is not a member!' => 'non è un utente della procedura!', - 'localhost' => 'localhost', - 'locked!' => '', - 'posted!' => '', - 'sent' => '', - 'successfully created!' => 'creato!', - 'successfully deleted!' => 'cancellato!', - 'website' => 'sito web', -}; - -1; diff --git a/sql-ledger/locale/it/am b/sql-ledger/locale/it/am deleted file mode 100644 index cd9d37ab2..000000000 --- a/sql-ledger/locale/it/am +++ /dev/null @@ -1,191 +0,0 @@ -$self{texts} = { - 'AP' => 'Debiti verso fornitori', - 'AR' => 'Crediti verso 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' => 'Menù contabilità', - 'Add Account' => 'Inserimento conto', - 'Add GIFI' => 'Inserimento codice GIFI', - 'Address' => 'Indirizzo', - 'Asset' => 'Attività', - 'Audit Control' => 'Controllo delle revisioni', - 'Backup sent to' => 'Copia di sicurezza inviata a', - 'Books are open' => 'Le scritture possono essere modificate', - 'Business Number' => 'Partita IVA', - 'COGS' => '"Cost of goods sold"', - 'Cannot delete account!' => 'Non si può cancellare il conto!', - 'Cannot delete default account!' => 'Non si può cancellare il conto predefinito!', - 'Cannot save account!' => 'Non si può salvare il conto!', - 'Cannot save preferences!' => 'Non si possono salvare le preferenze!', - 'Cash' => 'Cassa', - 'Character Set' => 'Insieme di caratteri', - 'Chart of Accounts' => 'Piano dei conti', - 'Close Books up to' => 'Blocca le scritture fino al', - 'Company' => 'Ragione sociale', - 'Continue' => 'Continua', - 'Copy to COA' => 'Inserire come conto', - 'Credit' => 'Avere', - 'Database Host' => 'Servente della base di dati', - 'Dataset' => 'Insieme di dati', - 'Date Format' => 'Formato della data', - 'Debit' => 'Dare', - 'Delete' => 'Cancella', - 'Delete Account' => 'Cancella conto', - 'Description' => 'Descrizione', - 'Discount' => 'Sconto', - 'Dropdown Limit' => 'Limite per i menù a discesa', - 'E-mail' => 'E-mail', - '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' => 'Impedisce la modifica delle scritture per tutte le date', - 'Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies' => 'Valute (si possono inserire sigle di tre lettere separate da due punti, per esempio "EUR:USD:CAD"; è necessario indicare anche la valuta locale):', - 'Equity' => 'Capitale netto', - 'Expense' => 'Costi', - 'Expense Account' => 'Costi per prestazione di servizi', - 'Expense/Asset' => 'Acquisti/Attività', - 'Fax' => 'Fax', - 'Foreign Exchange Gain' => 'Proventi da cambio valuta', - 'Foreign Exchange Loss' => 'Oneri da cambio valuta', - 'GIFI' => 'Codice GIFI', - 'GIFI deleted!' => 'Codice GIFI cancellato!', - 'GIFI missing!' => 'Codice GIFI mancante!', - 'GIFI saved!' => 'Codice GIFI salvato!', - 'Heading' => 'Intestazione', - 'Include in drop-down menus' => 'Da includere nei menù a discesa dei modelli seguenti', - 'Include this account on the customer/vendor forms to flag customer/vendor as taxable?' => 'Includere questo conto nei modelli di inserimento di clienti e fornitori, per l\'inserimento successivo dell\'imposta nelle scritture?', - 'Inventory' => 'Rimanenze/Acquisti', - 'Inventory Account' => 'Conto degli acquisti', - 'Is this a summary account to record' => 'Questo conto è una contropartita corrispondente a:', - 'Language' => 'Lingua', - 'Last Numbers & Default Accounts' => 'Ultimi numeri e conti predefiniti', - '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' => 'Codice', - 'Number Format' => 'Formato numerico', - 'Parts Inventory' => 'Magazzino degli articoli', - 'Password' => 'Parola d\'ordine', - 'Payables' => 'Debiti verso fornitori', - 'Payment' => 'Pagamento', - 'Phone' => 'Tel.', - 'Preferences saved!' => 'Preferenze salvate!', - 'Printer' => 'Stampante', - 'Rate' => 'Tasso', - 'Receivables' => 'Crediti verso clienti', - 'Reference' => 'Documento', - 'Retained Earnings' => 'Proventi', - 'Save' => 'Salva', - 'Save as new' => 'Salva come nuovo', - 'Service Items' => 'Inventario dei servizi', - 'Signature' => 'Firma', - 'Stylesheet' => 'Foglio di stile', - 'Tax' => 'Imposta', - 'Tax Accounts' => 'Conti relativi a imposte', - 'Template saved!' => 'Modello salvato!', - 'Transaction reversal enforced for all dates' => 'Uso della partita doppia forzato per tutte le date', - 'Transaction reversal enforced up to' => 'Uso della partita doppia forzato fino a', - 'User' => 'Utente', - 'Version' => 'Versione', - 'Weight Unit' => 'Unità di misura', - 'Yes' => 'Sì', - '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', - '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_sic' => 'edit_sic', - 'edit_template' => 'edit_template', - 'edit_warehouse' => 'edit_warehouse', - 'form_footer' => 'form_footer', - 'generate_yearend' => 'generate_yearend', - 'gifi_footer' => 'gifi_footer', - 'gifi_header' => 'gifi_header', - '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_warehouse' => 'list_warehouse', - 'menubar' => 'menubar', - '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_template' => 'save_template', - 'save_warehouse' => 'save_warehouse', - 'section_menu' => 'section_menu', - 'sic_header' => 'sic_header', - 'warehouse_header' => 'warehouse_header', - 'yearend' => 'yearend', - 'inserimento_conto' => 'add_account', - 'add_business' => 'add_business', - 'add_department' => 'add_department', - 'add_language' => 'add_language', - 'add_sic' => 'add_sic', - 'add_warehouse' => 'add_warehouse', - 'continua' => 'continue', - 'inserire_come_conto' => 'copy_to_coa', - 'cancella' => 'delete', - 'modifica' => 'edit', - 'modifica_conto' => 'edit_account', - 'salva' => 'save', - 'salva_come_nuovo' => 'save_as_new', -}; - -1; diff --git a/sql-ledger/locale/it/ap b/sql-ledger/locale/it/ap deleted file mode 100644 index ea1ae1de4..000000000 --- a/sql-ledger/locale/it/ap +++ /dev/null @@ -1,156 +0,0 @@ -$self{texts} = { - 'AP Transaction' => 'Scrittura fornitore', - 'AP Transactions' => 'Scritture fornitori', - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù 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 scrittura', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Cannot delete transaction!' => 'Non si può cancellare la scrittura', - 'Cannot post payment for a closed period!' => 'Non si possono salvare pagamenti per un periodo chiuso!', - 'Cannot post transaction for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post transaction!' => 'Non si può salvare la scrittura!', - 'Check' => 'Assegno', - 'Closed' => 'Chiuso', - 'Confirm!' => 'Conferma!', - 'Continue' => 'Continua', - 'Credit Limit' => 'Fido', - 'Curr' => 'Valuta', - 'Currency' => 'Valuta', - 'Current' => 'Corrente', - 'Customer not on file!' => 'Cliente non sul file!', - 'Date' => 'Data', - 'Date Paid' => 'Data di pagamento', - 'Dec' => 'Dic', - 'December' => 'Dicembre', - 'Delete' => 'Cancella', - 'Description' => 'Descrizione', - 'Due Date' => 'Scadenza fattura', - 'Due Date missing!' => 'Data di scadenza mancante!', - 'Employee' => 'Dipendente', - 'Exch' => 'Cambio', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate for payment missing!' => 'Manca il tasso di cambio per il pagamento!', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'From' => 'Dal', - 'ID' => 'ID', - 'Include in Report' => 'Includere nel prospetto', - 'Invoice' => 'Fattura', - 'Invoice Date' => 'Data fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura numero', - 'Jan' => 'Gen', - 'January' => 'Gennaio', - 'Jul' => 'Lug', - 'July' => 'Luglio', - 'Jun' => 'Giu', - 'June' => 'Giugno', - 'Mar' => 'Mar', - 'March' => 'Marzo', - 'May' => 'Mag', - 'May ' => 'Mag ', - 'Notes' => 'Note', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Open' => 'Aperto/i', - 'Order' => 'Ordine', - 'Order Number' => 'Ordine numero', - '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 not on file!' => 'Progetto non archiviato!', - 'Receipt' => 'Riscossione', - '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', - 'Source' => 'Riferimento', - 'Subtotal' => 'Totale parziale', - 'Tax' => 'Imposta', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'To' => 'A', - 'Total' => 'Totale', - 'Transaction deleted!' => 'Scrittura cancellata!', - 'Transaction posted!' => 'Scrittura salvata!', - 'Update' => 'Aggiorna', - 'Vendor' => 'Fornitore', - 'Vendor missing!' => 'Manca il fornitore!', - 'Vendor not on file!' => 'Fornitore non in archivio!', - 'Yes' => 'Sì', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'add' => 'add', - 'add_transaction' => 'add_transaction', - 'ap_subtotal' => 'ap_subtotal', - 'ap_transaction' => 'ap_transaction', - 'ap_transactions' => 'ap_transactions', - 'ar_transaction' => 'ar_transaction', - 'check_name' => 'check_name', - 'check_project' => 'check_project', - 'continue' => 'continue', - 'create_links' => 'create_links', - 'customer_details' => 'customer_details', - 'delete' => 'delete', - 'display' => 'display', - 'display_form' => 'display_form', - 'edit' => 'edit', - 'form_footer' => 'form_footer', - 'form_header' => 'form_header', - 'gl_transaction' => 'gl_transaction', - '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_check' => 'print_check', - 'print_options' => 'print_options', - 'print_receipt' => 'print_receipt', - 'print_transaction' => 'print_transaction', - 'project_selected' => 'project_selected', - 'sales_invoice_' => 'sales_invoice_', - 'search' => 'search', - 'section_menu' => 'section_menu', - 'select_name' => 'select_name', - 'select_payment' => 'select_payment', - 'select_project' => 'select_project', - 'update' => 'update', - 'vendor_details' => 'vendor_details', - 'vendor_invoice_' => 'vendor_invoice_', - 'yes' => 'yes', - 'scrittura_fornitore' => 'ap_transaction', - 'add_ap_transaction' => 'add_ap_transaction', - 'continua' => 'continue', - 'cancella' => 'delete', - 'edit_ap_transaction' => 'edit_ap_transaction', - 'salva' => 'post', - 'salva_come_nuovo' => 'post_as_new', - 'stampa' => 'print', - 'print_and_post' => 'print_and_post', - 'aggiorna' => 'update', - 'vendor_invoice.' => 'vendor_invoice.', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/ar b/sql-ledger/locale/it/ar deleted file mode 100644 index b30c62e3a..000000000 --- a/sql-ledger/locale/it/ar +++ /dev/null @@ -1,155 +0,0 @@ -$self{texts} = { - 'AR Transaction' => 'Scrittura cliente', - 'AR Transactions' => 'Scritture clienti', - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù 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 scrittura', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Cannot delete transaction!' => 'Non si può cancellare la scrittura', - 'Cannot post payment for a closed period!' => 'Non si possono salvare pagamenti per un periodo chiuso!', - 'Cannot post transaction for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post transaction!' => 'Non si può salvare la scrittura!', - 'Check' => 'Assegno', - 'Closed' => 'Chiuso', - 'Confirm!' => 'Conferma!', - 'Continue' => 'Continua', - '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', - 'Dec' => 'Dic', - 'December' => 'Dicembre', - 'Delete' => 'Cancella', - 'Description' => 'Descrizione', - 'Due Date' => 'Scadenza fattura', - 'Due Date missing!' => 'Data di scadenza mancante!', - 'Exch' => 'Cambio', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate for payment missing!' => 'Manca il tasso di cambio per il pagamento!', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'From' => 'Dal', - 'ID' => 'ID', - 'Include in Report' => 'Includere nel prospetto', - 'Invoice' => 'Fattura', - 'Invoice Date' => 'Data fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura numero', - 'Jan' => 'Gen', - 'January' => 'Gennaio', - 'Jul' => 'Lug', - 'July' => 'Luglio', - 'Jun' => 'Giu', - 'June' => 'Giugno', - 'Mar' => 'Mar', - 'March' => 'Marzo', - 'May' => 'Mag', - 'May ' => 'Mag ', - 'Notes' => 'Note', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Open' => 'Aperto/i', - 'Order' => 'Ordine', - 'Order Number' => 'Ordine numero', - '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 not on file!' => 'Progetto non archiviato!', - 'Receipt' => 'Riscossione', - 'Remaining' => 'Rimanente', - 'Salesperson' => 'Addetto alle vendite', - '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 via' => 'Porto', - 'Source' => 'Riferimento', - 'Subtotal' => 'Totale parziale', - 'Tax' => 'Imposta', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'To' => 'A', - 'Total' => 'Totale', - 'Transaction deleted!' => 'Scrittura cancellata!', - 'Transaction posted!' => 'Scrittura salvata!', - 'Update' => 'Aggiorna', - 'Vendor not on file!' => 'Fornitore non in archivio!', - 'Yes' => 'Sì', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'add' => 'add', - 'add_transaction' => 'add_transaction', - 'ap_transaction' => 'ap_transaction', - 'ar_subtotal' => 'ar_subtotal', - 'ar_transaction' => 'ar_transaction', - 'ar_transactions' => 'ar_transactions', - 'check_name' => 'check_name', - 'check_project' => 'check_project', - 'continue' => 'continue', - 'create_links' => 'create_links', - 'customer_details' => 'customer_details', - 'delete' => 'delete', - 'display' => 'display', - 'display_form' => 'display_form', - 'edit' => 'edit', - 'form_footer' => 'form_footer', - 'form_header' => 'form_header', - 'gl_transaction' => 'gl_transaction', - '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_check' => 'print_check', - 'print_options' => 'print_options', - 'print_receipt' => 'print_receipt', - 'print_transaction' => 'print_transaction', - 'project_selected' => 'project_selected', - 'sales_invoice_' => 'sales_invoice_', - 'search' => 'search', - 'section_menu' => 'section_menu', - 'select_name' => 'select_name', - 'select_payment' => 'select_payment', - 'select_project' => 'select_project', - 'update' => 'update', - 'vendor_details' => 'vendor_details', - 'vendor_invoice_' => 'vendor_invoice_', - 'yes' => 'yes', - 'scrittura_cliente' => 'ar_transaction', - 'continua' => 'continue', - 'cancella' => 'delete', - 'salva' => 'post', - 'salva_come_nuovo' => 'post_as_new', - 'stampa' => 'print', - 'print_and_post' => 'print_and_post', - 'sales_invoice.' => 'sales_invoice.', - 'aggiorna' => 'update', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/arap b/sql-ledger/locale/it/arap deleted file mode 100644 index e65606ce0..000000000 --- a/sql-ledger/locale/it/arap +++ /dev/null @@ -1,30 +0,0 @@ -$self{texts} = { - 'Address' => 'Indirizzo', - 'Continue' => 'Continua', - 'Customer not on file!' => 'Cliente non sul file!', - 'Description' => 'Descrizione', - 'Number' => 'Codice', - 'Project not on file!' => 'Progetto non archiviato!', - 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', - 'Select from one of the projects below' => 'Seleziona uno dei seguenti progetti', - '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', - 'gl_transaction' => 'gl_transaction', - 'name_selected' => 'name_selected', - 'project_selected' => 'project_selected', - 'sales_invoice_' => 'sales_invoice_', - 'select_name' => 'select_name', - 'select_project' => 'select_project', - 'vendor_invoice_' => 'vendor_invoice_', - 'continua' => 'continue', -}; - -1; diff --git a/sql-ledger/locale/it/arapprn b/sql-ledger/locale/it/arapprn deleted file mode 100644 index e5e605900..000000000 --- a/sql-ledger/locale/it/arapprn +++ /dev/null @@ -1,29 +0,0 @@ -$self{texts} = { - 'Account' => 'Conto', - 'Amount' => 'Importo', - 'Check' => 'Assegno', - 'Continue' => 'Continua', - 'Date' => 'Data', - 'PDF' => 'PDF', - 'Postscript' => 'PostScript', - 'Receipt' => 'Riscossione', - 'Screen' => 'Schermo', - 'Select postscript or PDF!' => 'Scegli tra PostScript e PDF!', - 'Source' => 'Riferimento', -}; - -$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/sql-ledger/locale/it/bp b/sql-ledger/locale/it/bp deleted file mode 100644 index b5833838f..000000000 --- a/sql-ledger/locale/it/bp +++ /dev/null @@ -1,44 +0,0 @@ -$self{texts} = { - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù contabilità', - 'Confirm!' => 'Conferma!', - 'Continue' => 'Continua', - 'Current' => 'Corrente', - 'Customer' => 'Cliente', - 'Date' => 'Data', - 'From' => 'Dal', - 'Invoice' => 'Fattura', - 'Invoice Number' => 'Fattura numero', - 'Order' => 'Ordine', - 'Order Number' => 'Ordine numero', - 'Print' => 'Stampa', - 'Purchase Orders' => 'Ordini di acquisto', - 'Receipts' => 'Riscossioni', - 'Reference' => 'Documento', - 'Sales Orders' => 'Ordini di vendita', - 'Select all' => 'Seleziona tutto', - 'To' => 'A', - 'Vendor' => 'Fornitore', - 'Yes' => 'Sì', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'continue' => 'continue', - 'display' => 'display', - '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', - 'remove' => 'remove', - 'seleziona_tutto' => 'select_all', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/ca b/sql-ledger/locale/it/ca deleted file mode 100644 index 9c35f41e3..000000000 --- a/sql-ledger/locale/it/ca +++ /dev/null @@ -1,52 +0,0 @@ -$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' => 'Includere nel prospetto', - 'Jan' => 'Gen', - 'January' => 'Gennaio', - 'Jul' => 'Lug', - 'July' => 'Luglio', - 'Jun' => 'Giu', - 'June' => 'Giugno', - 'List Transactions' => 'Lista scritture', - 'Mar' => 'Mar', - 'March' => 'Marzo', - 'May' => 'Mag', - 'May ' => 'Mag ', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Project Number' => 'Numero progetto', - 'Reference' => 'Documento', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Subtotal' => 'Totale parziale', - 'To' => 'A', -}; - -$self{subs} = { - 'ca_subtotal' => 'ca_subtotal', - 'chart_of_accounts' => 'chart_of_accounts', - 'list' => 'list', - 'list_transactions' => 'list_transactions', - 'lista_scritture' => 'list_transactions', -}; - -1; diff --git a/sql-ledger/locale/it/cp b/sql-ledger/locale/it/cp deleted file mode 100644 index 66cdfa97f..000000000 --- a/sql-ledger/locale/it/cp +++ /dev/null @@ -1,75 +0,0 @@ -$self{texts} = { - 'AP' => 'Debiti verso fornitori', - 'AR' => 'Crediti verso clienti', - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù contabilità', - 'Address' => 'Indirizzo', - 'All' => 'Tutti', - 'Amount' => 'Importo', - 'Amount Due' => 'Importo dovuto', - 'Cannot process payment for a closed period!' => 'Non si può elaborare un pagamento per un periodo chiuso!', - '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', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Invoice' => 'Fattura', - 'Invoices' => 'Fatture', - 'Number' => 'Codice', - 'PDF' => 'PDF', - 'Payment' => 'Pagamento', - 'Payment posted!' => 'Pagamento salvato', - 'Post' => 'Salva', - 'Postscript' => 'PostScript', - 'Print' => 'Stampa', - 'Project not on file!' => 'Progetto non archiviato!', - 'Receipt' => 'Riscossione', - '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', - 'Source' => 'Riferimento', - '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_project' => 'check_project', - 'continue' => 'continue', - 'customer_details' => 'customer_details', - 'display' => 'display', - 'form_footer' => 'form_footer', - 'form_header' => 'form_header', - 'gl_transaction' => 'gl_transaction', - 'list_invoices' => 'list_invoices', - 'menubar' => 'menubar', - 'name_selected' => 'name_selected', - 'payment' => 'payment', - 'post' => 'post', - 'print' => 'print', - 'project_selected' => 'project_selected', - 'sales_invoice_' => 'sales_invoice_', - 'section_menu' => 'section_menu', - 'select_name' => 'select_name', - 'select_project' => 'select_project', - 'update' => 'update', - 'vendor_details' => 'vendor_details', - 'vendor_invoice_' => 'vendor_invoice_', - 'continua' => 'continue', - 'salva' => 'post', - 'stampa' => 'print', - 'aggiorna' => 'update', -}; - -1; diff --git a/sql-ledger/locale/it/ct b/sql-ledger/locale/it/ct deleted file mode 100644 index 03a6ff26a..000000000 --- a/sql-ledger/locale/it/ct +++ /dev/null @@ -1,135 +0,0 @@ -$self{texts} = { - 'AP Transaction' => 'Scrittura fornitore', - 'AP Transactions' => 'Scritture fornitori', - 'AR Transaction' => 'Scrittura cliente', - 'AR Transactions' => 'Scritture clienti', - 'Accounting Menu' => 'Menù contabilità', - 'Add Customer' => 'Inserimento cliente', - 'Add Vendor' => 'Inserimento fornitore', - 'Address' => 'Indirizzo', - 'All' => 'Tutti', - 'Amount' => 'Importo', - 'Bcc' => 'Bcc', - 'Cannot delete customer!' => 'Non si può cancellare il cliente!', - 'Cannot delete vendor!' => 'Non si può 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', - 'Edit Customer' => 'Modifica cliente', - 'Edit Vendor' => 'Modifica fornitore', - 'Employee' => 'Dipendente', - 'Fax' => 'Fax', - 'From' => 'Dal', - 'GIFI' => 'Codice GIFI', - 'Group' => 'Gruppo', - 'ID' => 'ID', - 'Include in Report' => 'Includere nel prospetto', - 'Invoice' => 'Fattura', - 'Item not on file!' => 'Articolo non in archivio!', - 'Language' => 'Lingua', - 'Name' => 'Nome', - 'Name missing!' => 'Manca il nome!', - 'Notes' => 'Note', - 'Number' => 'Codice', - 'Open' => 'Aperto/i', - 'Order' => 'Ordine', - 'Orphaned' => 'Inutilizzati', - 'Phone' => 'Tel.', - 'Project Number' => 'Numero progetto', - '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', - 'Salesperson' => 'Addetto alle vendite', - 'Save' => 'Salva', - 'Select from one of the items below' => 'Seleziona uno dei seguenti articoli', - 'Sell Price' => 'Prezzo di listino', - 'Subtotal' => 'Totale parziale', - 'Tax' => 'Imposta', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'Taxable' => 'Conti di imposta applicabili', - 'Terms' => 'Pagamento a ', - 'To' => 'A', - 'Total' => 'Totale', - 'Unit' => 'Unità', - 'Update' => 'Aggiorna', - 'Vendor Invoice' => 'Fattura di acquisto', - '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', - 'edit' => 'edit', - 'form_footer' => 'form_footer', - 'form_header' => 'form_header', - 'history' => 'history', - 'include_in_report' => 'include_in_report', - 'item_selected' => 'item_selected', - 'list_history' => 'list_history', - 'list_names' => 'list_names', - 'list_subtotal' => 'list_subtotal', - 'menubar' => 'menubar', - '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_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', - 'scrittura_fornitore' => 'ap_transaction', - 'scrittura_cliente' => 'ar_transaction', - 'inserimento_cliente' => 'add_customer', - 'inserimento_fornitore' => 'add_vendor', - 'continua' => 'continue', - 'cancella' => 'delete', - 'pricelist' => 'pricelist', - 'ordine_di_acquisto' => 'purchase_order', - 'quotation' => 'quotation', - 'rfq' => 'rfq', - 'fattura_di_vendita' => 'sales_invoice', - 'ordine_di_vendita' => 'sales_order', - 'salva' => 'save', - 'save_pricelist' => 'save_pricelist', - 'aggiorna' => 'update', - 'fattura_di_acquisto' => 'vendor_invoice', -}; - -1; diff --git a/sql-ledger/locale/it/gl b/sql-ledger/locale/it/gl deleted file mode 100644 index 23e14d3e9..000000000 --- a/sql-ledger/locale/it/gl +++ /dev/null @@ -1,127 +0,0 @@ -$self{texts} = { - 'AP Transaction' => 'Scrittura fornitore', - 'AR Transaction' => 'Scrittura cliente', - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù contabilità', - 'Add General Ledger Transaction' => 'Inserimento scrittura 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 scrittura', - 'Asset' => 'Attività', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Balance' => 'Saldo', - 'Cannot delete transaction!' => 'Non si può cancellare la scrittura', - 'Cannot post transaction for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post transaction!' => 'Non si può salvare la scrittura!', - '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', - 'Edit General Ledger Transaction' => 'Modifica scrittura di contabilità generale', - 'Equity' => 'Capitale netto', - 'Expense' => 'Costi', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'From' => 'Dal', - 'GIFI' => 'Codice GIFI', - 'GL Transaction' => 'Scrittura di contabilità generale', - 'General Ledger' => 'Contabilità generale', - 'ID' => 'ID', - 'Include in Report' => 'Includere nel prospetto', - 'Jan' => 'Gen', - 'January' => 'Gennaio', - 'Jul' => 'Lug', - 'July' => 'Luglio', - 'Jun' => 'Giu', - 'June' => 'Giugno', - 'Liability' => 'Passività', - 'Mar' => 'Mar', - 'March' => 'Marzo', - 'May' => 'Mag', - 'May ' => 'Mag ', - 'Notes' => 'Note', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Post' => 'Salva', - 'Post as new' => 'Salva come nuovo', - 'Project' => 'Progetto', - 'Project not on file!' => 'Progetto non archiviato!', - 'Reference' => 'Documento', - 'Reference missing!' => 'Manca il documento!', - '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' => 'Riferimento', - 'Subtotal' => 'Totale parziale', - 'To' => 'A', - 'Transaction Date missing!' => 'Manca la data della scrittura!', - 'Transaction deleted!' => 'Scrittura cancellata!', - 'Transaction posted!' => 'Scrittura salvata!', - 'Update' => 'Aggiorna', - 'Vendor not on file!' => 'Fornitore non in archivio!', - 'Yes' => 'Sì', -}; - -$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', - 'delete' => 'delete', - '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', - 'menubar' => 'menubar', - 'name_selected' => 'name_selected', - 'post' => 'post', - 'post_adjustment' => 'post_adjustment', - 'post_as_new' => 'post_as_new', - 'project_selected' => 'project_selected', - 'sales_invoice_' => 'sales_invoice_', - 'search' => 'search', - 'section_menu' => 'section_menu', - 'select_name' => 'select_name', - 'select_project' => 'select_project', - 'update' => 'update', - 'vendor_invoice_' => 'vendor_invoice_', - 'yes' => 'yes', - 'scrittura_fornitore' => 'ap_transaction', - 'scrittura_cliente' => 'ar_transaction', - 'continua' => 'continue', - 'cancella' => 'delete', - 'scrittura_di_contabilità_generale' => 'gl_transaction', - 'salva' => 'post', - 'salva_come_nuovo' => 'post_as_new', - 'sales_invoice_' => 'sales_invoice_', - 'aggiorna' => 'update', - 'vendor_invoice_' => 'vendor_invoice_', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/hr b/sql-ledger/locale/it/hr deleted file mode 100644 index 44ca740d4..000000000 --- a/sql-ledger/locale/it/hr +++ /dev/null @@ -1,69 +0,0 @@ -$self{texts} = { - 'AP' => 'Debiti verso fornitori', - 'Accounting Menu' => 'Menù contabilità', - 'Address' => 'Indirizzo', - 'Administrator' => 'Amministratore', - 'All' => 'Tutti', - 'Amount' => 'Importo', - 'Continue' => 'Continua', - 'Delete' => 'Cancella', - 'Description' => 'Descrizione', - 'E-mail' => 'E-mail', - 'Employee' => 'Dipendente', - 'Expense' => 'Costi', - 'ID' => 'ID', - 'Include in Report' => 'Includere nel prospetto', - 'Login' => 'Login', - 'Name' => 'Nome', - 'Name missing!' => 'Manca il nome!', - 'Notes' => 'Note', - 'Number' => 'Codice', - 'Orphaned' => 'Inutilizzati', - 'Rate' => 'Tasso', - 'Sales' => 'Vendite', - 'Save' => 'Salva', - 'Save as new' => 'Salva come nuovo', - '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', - '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', - 'add_deduction' => 'add_deduction', - 'add_employee' => 'add_employee', - 'continua' => 'continue', - 'cancella' => 'delete', - 'salva' => 'save', - 'salva_come_nuovo' => 'save_as_new', - 'aggiorna' => 'update', -}; - -1; diff --git a/sql-ledger/locale/it/ic b/sql-ledger/locale/it/ic deleted file mode 100644 index 442fb4379..000000000 --- a/sql-ledger/locale/it/ic +++ /dev/null @@ -1,224 +0,0 @@ -$self{texts} = { - 'Accounting Menu' => 'Menù contabilità', - 'Active' => 'Attivi', - 'Add' => 'Inserimento', - 'Add Assembly' => 'Inserimento assemblato', - 'Add Part' => 'Inserimento articolo', - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Sales Order' => 'Inserimento ordine di vendita', - 'Add Service' => 'Inserimento servizio', - 'Address' => 'Indirizzo', - 'Amount' => 'Importo', - 'Apr' => 'Apr', - 'April' => 'Aprile', - 'Assemblies' => 'Assemblati', - 'Assemblies restocked!' => 'Assemblati ricaricati!', - 'Attachment' => 'Allegato', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'BOM' => '"BOM"', - 'Bcc' => 'Bcc', - 'Bin' => 'Codice BIN', - 'COGS' => '"Cost of goods sold"', - 'Cannot delete item!' => 'Non si può cancellare l\'articolo', - 'Cannot stock assemblies!' => 'Non si possono 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' => 'Totale riga', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'From' => 'Dal', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - 'Image' => 'Immagine', - 'In-line' => 'In-line', - 'Include in Report' => 'Includere nel prospetto', - 'Individual Items' => 'Articoli individuali', - 'Inventory' => 'Rimanenze/Acquisti', - 'Inventory quantity must be zero before you can set this assembly obsolete!' => 'La quantità in rimanenza 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 rimamenza deve essere zero per poter mettere l\'articolo come obsoleto!', - 'Invoice' => 'Fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura 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', - 'Line Total' => 'Totale riga', - 'Link Accounts' => 'Collegamenti tra conti', - 'List Price' => 'Prezzo suggerito per la vendita al dettaglio', - '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' => 'Codice', - 'Number missing in Row' => 'Manca il codice nella riga', - 'Obsolete' => 'Obsoleto/i', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'On Hand' => 'Disponibile/i', - 'Open' => 'Aperto/i', - 'Order Date missing!' => 'Manca la data dell\'ordine', - 'Order Number' => 'Ordine numero', - 'Order Number missing!' => 'Manca il numero dell\'ordine!', - 'Orphaned' => 'Inutilizzati', - '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' => 'Componente', - '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' => 'Consegna', - '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 items below' => 'Seleziona uno dei seguenti articoli', - 'Select from one of the names below' => 'Seleziona uno dei seguenti nomi', - 'Sell Price' => 'Prezzo di listino', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Service' => 'Servizio', - 'Services' => 'Servizi', - 'Ship' => 'Invio', - 'Ship to' => 'Spedire a', - 'Short' => 'Scaricati oltre la disponibilità', - 'Stock' => 'Magazzino', - 'Stock Assembly' => 'Magazzino assemblati', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'Tax' => 'Imposta', - 'To' => 'A', - 'Top Level' => 'Livello Top', - 'Unit' => 'Unità', - 'Unit of measure' => 'Unità di misura', - 'Update' => 'Aggiorna', - 'Updated' => 'Aggiornato', - 'Vendor' => 'Fornitore', - 'Vendor Invoice' => 'Fattura di acquisto', - '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', - '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', - 'post_as_new' => 'post_as_new', - 'print' => 'print', - 'print_form' => 'print_form', - 'print_options' => 'print_options', - 'purchase_order' => 'purchase_order', - 'quotation' => 'quotation', - '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', - 'inserimento_assemblato' => 'add_assembly', - 'add_labor/overhead' => 'add_labor/overhead', - 'inserimento_articolo' => 'add_part', - 'inserimento_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/sql-ledger/locale/it/io b/sql-ledger/locale/it/io deleted file mode 100644 index 16623fc64..000000000 --- a/sql-ledger/locale/it/io +++ /dev/null @@ -1,109 +0,0 @@ -$self{texts} = { - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Sales Order' => 'Inserimento ordine di vendita', - 'Address' => 'Indirizzo', - 'Apr' => 'Apr', - 'April' => 'Aprile', - 'Attachment' => 'Allegato', - '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' => 'Totale riga', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - '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', - 'No.' => 'No.', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - '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' => 'Componente', - 'Phone' => 'Tel.', - 'Postscript' => 'PostScript', - 'Price' => 'Prezzo', - 'Project' => 'Progetto', - 'Purchase Order' => 'Ordine di acquisto', - 'Qty' => 'Q.tà', - 'Recd' => 'Ricevuto', - 'Required by' => 'Consegna', - 'Sales Order' => 'Ordine di vendita', - 'Screen' => 'Schermo', - 'Select from one of the items below' => 'Seleziona uno dei seguenti articoli', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Service' => 'Servizio', - 'Ship' => 'Invio', - 'Ship to' => 'Spedire a', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'To' => 'A', - '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', - 'post_as_new' => 'post_as_new', - '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/sql-ledger/locale/it/ir b/sql-ledger/locale/it/ir deleted file mode 100644 index 5551339fa..000000000 --- a/sql-ledger/locale/it/ir +++ /dev/null @@ -1,186 +0,0 @@ -$self{texts} = { - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù contabilità', - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Sales Order' => 'Inserimento ordine di vendita', - 'Add Vendor Invoice' => 'Inserimento fattura di acquisto', - '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' => 'Allegato', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Bcc' => 'Bcc', - 'Bin' => 'Codice BIN', - 'Cannot delete invoice!' => 'Non si può cancellare la fattura!', - 'Cannot post invoice for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post invoice!' => 'Non si può salvare la fattura!', - 'Cannot post payment for a closed period!' => 'Non si possono 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!', - 'Edit Vendor Invoice' => 'Modifica fattura di acquisto', - 'Exch' => 'Cambio', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate for payment missing!' => 'Manca il tasso di cambio per il pagamento!', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Extended' => 'Totale riga', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - 'In-line' => 'In-line', - 'Invoice' => 'Fattura', - 'Invoice Date' => 'Data fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura 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', - 'No.' => 'No.', - 'Notes' => 'Note', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Number missing in Row' => 'Manca il codice nella riga', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Order Date missing!' => 'Manca la data dell\'ordine', - 'Order Number' => 'Ordine numero', - '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' => 'Componente', - 'Payment date missing!' => 'Manca la data del pagamento!', - 'Payments' => 'Pagamenti', - 'Phone' => 'Tel.', - 'Post' => 'Salva', - 'Post as new' => 'Salva come nuovo', - 'Postscript' => 'PostScript', - 'Price' => 'Prezzo', - 'Project' => 'Progetto', - 'Project not on file!' => 'Progetto non archiviato!', - 'Purchase Order' => 'Ordine di acquisto', - 'Qty' => 'Q.tà', - 'Recd' => 'Ricevuto', - 'Record in' => 'Registra in', - 'Remaining' => 'Rimanente', - 'Required by' => 'Consegna', - 'Sales Order' => 'Ordine di vendita', - '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', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Service' => 'Servizio', - 'Ship' => 'Invio', - 'Ship to' => 'Spedire a', - 'Source' => 'Riferimento', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'To' => 'A', - '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' => 'Sì', - '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', - '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', - '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_form' => 'print_form', - 'print_options' => 'print_options', - 'project_selected' => 'project_selected', - 'purchase_order' => 'purchase_order', - 'quotation' => 'quotation', - 'rfq' => 'rfq', - 'sales_invoice_' => 'sales_invoice_', - 'sales_order' => 'sales_order', - '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', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/is b/sql-ledger/locale/it/is deleted file mode 100644 index 7a60dae0d..000000000 --- a/sql-ledger/locale/it/is +++ /dev/null @@ -1,196 +0,0 @@ -$self{texts} = { - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù contabilità', - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Sales Invoice' => 'Inserimento fattura di vendita', - 'Add Sales Order' => 'Inserimento 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' => 'Allegato', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Bcc' => 'Bcc', - 'Bin' => 'Codice BIN', - 'Cannot delete invoice!' => 'Non si può cancellare la fattura!', - 'Cannot post invoice for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post invoice!' => 'Non si può salvare la fattura!', - 'Cannot post payment for a closed period!' => 'Non si possono 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', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate for payment missing!' => 'Manca il tasso di cambio per il pagamento!', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Extended' => 'Totale riga', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - 'In-line' => 'In-line', - 'Invoice' => 'Fattura', - 'Invoice Date' => 'Data fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura numero', - 'Invoice Number missing!' => 'Manca il numero della fattura!', - 'Invoice deleted!' => 'Fattura cancellata!', - 'Invoice posted!' => 'Fattura salvata!', - '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', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Number missing in Row' => 'Manca il codice nella riga', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Order Date missing!' => 'Manca la data dell\'ordine', - 'Order Number' => 'Ordine numero', - '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' => 'Componente', - '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', - 'Remaining' => 'Rimanente', - 'Required by' => 'Consegna', - 'Sales Order' => 'Ordine di vendita', - 'Salesperson' => 'Addetto alle vendite', - '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', - 'Source' => 'Riferimento', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'To' => 'A', - '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' => 'Sì', - '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', - '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', - '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_form' => 'print_form', - 'print_options' => 'print_options', - 'project_selected' => 'project_selected', - 'purchase_order' => 'purchase_order', - 'quotation' => 'quotation', - 'redirect' => 'redirect', - 'rfq' => 'rfq', - 'sales_invoice_' => 'sales_invoice_', - 'sales_order' => 'sales_order', - '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', - 'print_and_post' => 'print_and_post', - 'ordine_di_vendita' => 'sales_order', - 'spedire_a' => 'ship_to', - 'aggiorna' => 'update', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/login b/sql-ledger/locale/it/login deleted file mode 100644 index 690354fad..000000000 --- a/sql-ledger/locale/it/login +++ /dev/null @@ -1,22 +0,0 @@ -$self{texts} = { - 'Company' => 'Ragione sociale', - 'Continue' => 'Continua', - 'Incorrect Dataset version!' => 'Versione dell\'insieme di dati non corretta!', - 'Incorrect Password!' => 'Parola d\'ordine errata!', - 'Login' => 'Login', - 'Name' => 'Nome', - 'Password' => 'Parola d\'ordine', - 'Version' => 'Versione', - 'You did not enter a name!' => 'Non hai inserito il nome!', - 'is not a member!' => 'non è un utente della procedura!', -}; - -$self{subs} = { - 'login' => 'login', - 'login_screen' => 'login_screen', - 'logout' => 'logout', - 'selectdataset' => 'selectdataset', - 'login' => 'login', -}; - -1; diff --git a/sql-ledger/locale/it/menu b/sql-ledger/locale/it/menu deleted file mode 100644 index b41b1393d..000000000 --- a/sql-ledger/locale/it/menu +++ /dev/null @@ -1,81 +0,0 @@ -$self{texts} = { - 'AP' => 'Debiti verso fornitori', - 'AP Aging' => 'Partite aperte', - 'AP Transaction' => 'Scrittura fornitore', - 'AR' => 'Crediti verso clienti', - 'AR Aging' => 'Partite aperte', - 'AR Transaction' => 'Scrittura cliente', - 'Accounting Menu' => 'Menù contabilità', - 'Add Account' => 'Inserimento conto', - 'Add Assembly' => 'Inserimento assemblato', - 'Add Customer' => 'Inserimento cliente', - 'Add GIFI' => 'Inserimento codice GIFI', - 'Add Group' => 'Inserimento gruppo', - 'Add Part' => 'Inserimento articolo', - 'Add Project' => 'Inserimento progetto', - 'Add Service' => 'Inserimento servizio', - 'Add Transaction' => 'Inserimento scrittura', - 'Add Vendor' => 'Inserimento fornitore', - 'Assemblies' => 'Assemblati', - 'Audit Control' => 'Controllo delle revisioni', - 'Backup' => 'Copia di sicurezza', - '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', - 'Groups' => 'Gruppi', - '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/i', - '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' => 'Riscossione', - 'Receipts' => 'Riscossioni', - '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' => 'scritture', - 'Trial Balance' => 'Bilancio di verifica', - 'Vendor Invoice' => 'Fattura di acquisto', - 'Vendors' => 'Fornitori', - 'Version' => 'Versione', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'display' => 'display', - 'menubar' => 'menubar', - 'section_menu' => 'section_menu', -}; - -1; diff --git a/sql-ledger/locale/it/oe b/sql-ledger/locale/it/oe deleted file mode 100644 index 6d0c3d49f..000000000 --- a/sql-ledger/locale/it/oe +++ /dev/null @@ -1,235 +0,0 @@ -$self{texts} = { - 'Accounting Menu' => 'Menù contabilità', - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Sales Invoice' => 'Inserimento fattura di vendita', - 'Add Sales Order' => 'Inserimento ordine di vendita', - 'Add Vendor Invoice' => 'Inserimento fattura di acquisto', - 'Address' => 'Indirizzo', - 'Amount' => 'Importo', - 'Apr' => 'Apr', - 'April' => 'Aprile', - 'Are you sure you want to delete Order Number' => 'Sei sicuro di voler cancellare l\'ordine numero', - 'Attachment' => 'Allegato', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Bcc' => 'Bcc', - 'Bin' => 'Codice BIN', - 'C' => 'Ch.', - 'Cannot delete order!' => 'Non si può cancellare l\'ordine', - 'Cannot save order!' => 'Non si può 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', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Extended' => 'Totale riga', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'From' => 'Dal', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - 'ID' => 'ID', - 'In-line' => 'In-line', - 'Include in Report' => 'Includere 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', - 'Nov' => 'Nov', - 'November' => 'Novembre', - 'Number' => 'Codice', - 'Number missing in Row' => 'Manca il codice nella riga', - 'O' => 'Ap.', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Open' => 'Aperto/i', - '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' => 'Componente', - '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', - 'Remaining' => 'Rimanente', - 'Required by' => 'Consegna', - 'Sales Invoice' => 'Fattura di vendita', - 'Sales Order' => 'Ordine di vendita', - 'Sales Orders' => 'Ordini di vendita', - 'Salesperson' => 'Addetto alle vendite', - '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' => 'Imposta', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'Terms' => 'Pagamento a ', - 'To' => 'A', - 'Total' => 'Totale', - 'Unit' => 'Unità', - 'Update' => 'Aggiorna', - 'Vendor' => 'Fornitore', - 'Vendor Invoice' => 'Fattura di acquisto', - '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' => 'Sì', - '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', - 'continue' => 'continue', - 'create_backorder' => 'create_backorder', - 'create_form' => 'create_form', - 'customer_details' => 'customer_details', - 'delete' => 'delete', - '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', - 'gl_transaction' => 'gl_transaction', - 'invoice' => 'invoice', - 'invoicetotal' => 'invoicetotal', - 'item_selected' => 'item_selected', - 'list_transfer' => 'list_transfer', - 'menubar' => 'menubar', - 'name_selected' => 'name_selected', - 'new_item' => 'new_item', - 'order_links' => 'order_links', - 'post_as_new' => 'post_as_new', - 'prepare_order' => 'prepare_order', - 'print' => 'print', - 'print_and_save' => 'print_and_save', - 'print_form' => 'print_form', - 'print_options' => 'print_options', - 'project_selected' => 'project_selected', - 'purchase_order' => 'purchase_order', - 'quotation' => 'quotation', - 'quotation_' => 'quotation_', - 'redirect' => 'redirect', - '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', - 'search' => 'search', - 'search_transfer' => 'search_transfer', - 'section_menu' => 'section_menu', - 'select_item' => 'select_item', - 'select_name' => 'select_name', - 'select_project' => 'select_project', - '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_', - 'yes' => 'yes', - 'continua' => 'continue', - 'cancella' => 'delete', - 'fatto' => 'done', - 'e_mail' => 'e_mail', - 'stampa' => 'print', - 'print_and_save' => 'print_and_save', - 'ordine_di_acquisto' => 'purchase_order', - 'quotation' => 'quotation', - 'quotation_' => 'quotation_', - 'rfq' => 'rfq', - 'rfq_' => 'rfq_', - 'fattura_di_vendita' => 'sales_invoice', - 'ordine_di_vendita' => 'sales_order', - 'salva' => 'save', - 'salva_come_nuovo' => 'save_as_new', - 'spedire_a' => 'ship_to', - 'transfer' => 'transfer', - 'aggiorna' => 'update', - 'fattura_di_acquisto' => 'vendor_invoice', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/pe b/sql-ledger/locale/it/pe deleted file mode 100644 index eef434cad..000000000 --- a/sql-ledger/locale/it/pe +++ /dev/null @@ -1,67 +0,0 @@ -$self{texts} = { - 'Accounting Menu' => 'Menù contabilità', - 'Add Group' => 'Inserimento gruppo', - 'Add Project' => 'Inserimento progetto', - 'All' => 'Tutti', - 'Continue' => 'Continua', - 'Delete' => 'Cancella', - 'Description' => 'Descrizione', - 'Edit Group' => 'Modifica gruppo', - 'Edit Project' => 'Modifica progetto', - 'Group' => 'Gruppo', - 'Group deleted!' => 'Gruppo cancellato', - 'Group missing!' => 'Gruppo mancante', - 'Group saved!' => 'Gruppo salvato', - 'Groups' => 'Gruppi', - 'Language' => 'Lingua', - 'Number' => 'Codice', - 'Orphaned' => 'Inutilizzati', - 'Project' => 'Progetto', - 'Project Number' => 'Numero progetto', - 'Project Number missing!' => 'Manca il codice del progetto!', - 'Project deleted!' => 'Progetto cancellato!', - 'Project saved!' => 'Progetto salvato!', - 'Projects' => 'Progetti', - 'Save' => 'Salva', - 'Update' => 'Aggiorna', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'add' => 'add', - 'add_group' => 'add_group', - 'add_pricegroup' => 'add_pricegroup', - 'add_project' => 'add_project', - 'continue' => 'continue', - 'delete' => 'delete', - 'display' => 'display', - 'edit' => 'edit', - 'edit_translation' => 'edit_translation', - 'list_translations' => 'list_translations', - 'menubar' => 'menubar', - 'partsgroup_footer' => 'partsgroup_footer', - 'partsgroup_header' => 'partsgroup_header', - 'partsgroup_report' => 'partsgroup_report', - 'pricegroup_footer' => 'pricegroup_footer', - 'pricegroup_header' => 'pricegroup_header', - 'pricegroup_report' => 'pricegroup_report', - 'project_footer' => 'project_footer', - 'project_header' => 'project_header', - 'project_report' => 'project_report', - 'save' => 'save', - 'search' => 'search', - 'section_menu' => 'section_menu', - 'translation' => 'translation', - 'translation_footer' => 'translation_footer', - 'translation_header' => 'translation_header', - 'update' => 'update', - 'inserimento_gruppo' => 'add_group', - 'add_pricegroup' => 'add_pricegroup', - 'inserimento_progetto' => 'add_project', - 'continua' => 'continue', - 'cancella' => 'delete', - 'salva' => 'save', - 'aggiorna' => 'update', -}; - -1; diff --git a/sql-ledger/locale/it/pos b/sql-ledger/locale/it/pos deleted file mode 100644 index a49e13e02..000000000 --- a/sql-ledger/locale/it/pos +++ /dev/null @@ -1,57 +0,0 @@ -$self{texts} = { - 'Account' => 'Conto', - 'Cannot post transaction!' => 'Non si può salvare la scrittura!', - 'Continue' => 'Continua', - 'Credit Limit' => 'Fido', - 'Currency' => 'Valuta', - 'Current' => 'Corrente', - 'Customer' => 'Cliente', - 'Customer missing!' => 'Cliente mancante!', - 'Delete' => 'Cancella', - 'Description' => 'Descrizione', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Extended' => 'Totale riga', - 'From' => 'Dal', - 'Language' => 'Lingua', - 'Number' => 'Codice', - 'Open' => 'Aperto/i', - 'Paid' => 'Importo pagato', - 'Post' => 'Salva', - 'Price' => 'Prezzo', - 'Print' => 'Stampa', - 'Qty' => 'Q.tà', - 'Receipts' => 'Riscossioni', - 'Record in' => 'Registra in', - 'Remaining' => 'Rimanente', - 'Salesperson' => 'Addetto alle vendite', - 'Screen' => 'Schermo', - 'Source' => 'Riferimento', - 'Subtotal' => 'Totale parziale', - 'To' => 'A', - 'Total' => 'Totale', - 'Unit' => 'Unità', - 'Update' => 'Aggiorna', -}; - -$self{subs} = { - 'add' => 'add', - 'display_row' => 'display_row', - 'edit' => 'edit', - 'form_footer' => 'form_footer', - 'form_header' => 'form_header', - 'lookup_partsgroup' => 'lookup_partsgroup', - 'openinvoices' => 'openinvoices', - 'post' => 'post', - 'print' => 'print', - 'print_form' => 'print_form', - 'print_options' => 'print_options', - 'receipts' => 'receipts', - 'continua' => 'continue', - 'cancella' => 'delete', - 'salva' => 'post', - 'stampa' => 'print', - 'aggiorna' => 'update', -}; - -1; diff --git a/sql-ledger/locale/it/ps b/sql-ledger/locale/it/ps deleted file mode 100644 index 8d3a98029..000000000 --- a/sql-ledger/locale/it/ps +++ /dev/null @@ -1,281 +0,0 @@ -$self{texts} = { - 'AP Aging' => 'Partite aperte', - 'AR Aging' => 'Partite aperte', - 'AR Transaction' => 'Scrittura cliente', - 'AR Transactions' => 'Scritture clienti', - 'Account' => 'Conto', - 'Account Number' => 'Numero di conto', - 'Accounting Menu' => 'Menù contabilità', - 'Accounts' => 'Conti', - 'Add Purchase Order' => 'Inserimento ordine di acquisto', - 'Add Sales Invoice' => 'Inserimento fattura di vendita', - 'Add Sales Order' => 'Inserimento 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 scrittura', - 'Attachment' => 'Allegato', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Balance' => 'Saldo', - 'Balance Sheet' => 'Stato patrimoniale', - 'Bcc' => 'Bcc', - 'Bin' => 'Codice BIN', - 'Cannot delete invoice!' => 'Non si può cancellare la fattura!', - 'Cannot delete transaction!' => 'Non si può cancellare la scrittura', - 'Cannot post invoice for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post invoice!' => 'Non si può salvare la fattura!', - 'Cannot post payment for a closed period!' => 'Non si possono salvare pagamenti per un periodo chiuso!', - 'Cannot post transaction for a closed period!' => 'Non si può salvare una scrittura per un periodo chiuso!', - 'Cannot post transaction!' => 'Non si può salvare la scrittura!', - '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', - 'Exch' => 'Cambio', - 'Exchange Rate' => 'Tasso di cambio', - 'Exchange rate for payment missing!' => 'Manca il tasso di cambio per il pagamento!', - 'Exchange rate missing!' => 'Manca il tasso di cambio!', - 'Extended' => 'Totale riga', - 'Fax' => 'Fax', - 'Feb' => 'Feb', - 'February' => 'Febbraio', - 'From' => 'Dal', - 'GIFI' => 'Codice GIFI', - 'Group' => 'Gruppo', - 'Group Items' => 'Articoli del gruppo', - 'Heading' => 'Intestazione', - 'ID' => 'ID', - 'In-line' => 'In-line', - 'Include in Report' => 'Includere nel prospetto', - 'Income Statement' => 'Conto economico', - 'Invoice' => 'Fattura', - 'Invoice Date' => 'Data fattura', - 'Invoice Date missing!' => 'Manca la data della fattura!', - 'Invoice Number' => 'Fattura numero', - 'Invoice Number missing!' => 'Manca il numero della fattura!', - 'Invoice deleted!' => 'Fattura cancellata!', - 'Invoice posted!' => 'Fattura salvata!', - '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' => 'Codice', - 'Number missing in Row' => 'Manca il codice nella riga', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Open' => 'Aperto/i', - 'Order' => 'Ordine', - 'Order Date missing!' => 'Manca la data dell\'ordine', - 'Order Number' => 'Ordine numero', - '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' => 'Componente', - '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 Number' => 'Numero progetto', - 'Project not on file!' => 'Progetto non archiviato!', - 'Purchase Order' => 'Ordine di acquisto', - 'Qty' => 'Q.tà', - 'Recd' => 'Ricevuto', - 'Receipt' => 'Riscossione', - 'Receipts' => 'Riscossioni', - 'Record in' => 'Registra in', - 'Remaining' => 'Rimanente', - 'Report for' => 'Prospetto per', - 'Required by' => 'Consegna', - 'Sales Order' => 'Ordine di vendita', - 'Salesperson' => 'Addetto alle vendite', - '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!', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Service' => 'Servizio', - 'Ship' => 'Invio', - 'Ship to' => 'Spedire a', - 'Ship via' => 'Porto', - 'Source' => 'Riferimento', - 'Standard' => 'Standard', - 'Statement' => 'Sollecito', - 'Statement sent to' => 'Sollecito mandato a', - 'Statements sent to printer!' => 'Solleciti mandati in stampa!', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'Tax' => 'Imposta', - 'Tax Included' => 'Fatturazione con scorporo (imposte incluse)', - 'Tax collected' => 'Debito IVA', - 'Tax paid' => 'Credito IVA', - 'To' => 'A', - 'Total' => 'Totale', - 'Transaction deleted!' => 'Scrittura cancellata!', - 'Transaction posted!' => 'Scrittura salvata!', - 'Trial Balance' => 'Bilancio di verifica', - 'Unit' => 'Unità', - 'Update' => 'Aggiorna', - 'Vendor' => 'Fornitore', - 'Vendor not on file!' => 'Fornitore non in archivio!', - 'What type of item is this?' => 'Che tipo di articolo è questo?', - 'Yes' => 'Sì', - 'as at' => 'Al', - 'ea' => 'ci', - 'for Period' => 'nel periodo', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'add' => 'add', - 'add_transaction' => 'add_transaction', - 'aging' => 'aging', - 'ap_transaction' => 'ap_transaction', - 'ar_subtotal' => 'ar_subtotal', - 'ar_transaction' => 'ar_transaction', - 'ar_transactions' => 'ar_transactions', - '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', - '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', - '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_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', - 'receipts' => 'receipts', - 'redirect' => 'redirect', - 'report' => 'report', - 'rfq' => 'rfq', - 'sales_invoice_' => 'sales_invoice_', - 'sales_order' => 'sales_order', - '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', - 'tax_subtotal' => 'tax_subtotal', - 'update' => 'update', - 'validate_items' => 'validate_items', - 'vendor_details' => 'vendor_details', - 'vendor_invoice_' => 'vendor_invoice_', - 'yes' => 'yes', - 'scrittura_cliente' => 'ar_transaction', - 'continua' => 'continue', - 'cancella' => 'delete', - 'e_mail' => 'e_mail', - 'salva' => 'post', - 'salva_come_nuovo' => 'post_as_new', - 'stampa' => 'print', - 'print_and_post' => 'print_and_post', - 'sales_invoice.' => 'sales_invoice.', - 'ordine_di_vendita' => 'sales_order', - 'seleziona_tutto' => 'select_all', - 'spedire_a' => 'ship_to', - 'aggiorna' => 'update', - 'sì' => 'yes', -}; - -1; diff --git a/sql-ledger/locale/it/pw b/sql-ledger/locale/it/pw deleted file mode 100644 index 711507d2d..000000000 --- a/sql-ledger/locale/it/pw +++ /dev/null @@ -1,11 +0,0 @@ -$self{texts} = { - 'Continue' => 'Continua', - 'Password' => 'Parola d\'ordine', -}; - -$self{subs} = { - 'getpassword' => 'getpassword', - 'continua' => 'continue', -}; - -1; diff --git a/sql-ledger/locale/it/qe b/sql-ledger/locale/it/qe deleted file mode 100644 index 7153d1ec1..000000000 --- a/sql-ledger/locale/it/qe +++ /dev/null @@ -1,199 +0,0 @@ -$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/sql-ledger/locale/it/rc b/sql-ledger/locale/it/rc deleted file mode 100644 index 51c09a139..000000000 --- a/sql-ledger/locale/it/rc +++ /dev/null @@ -1,65 +0,0 @@ -$self{texts} = { - 'Account' => 'Conto', - 'Accounting Menu' => 'Menù contabilità', - 'Apr' => 'Apr', - 'April' => 'Aprile', - 'Aug' => 'Ago', - 'August' => 'Agosto', - 'Balance' => 'Saldo', - 'Continue' => 'Continua', - 'Current' => 'Corrente', - 'Date' => 'Data', - 'Dec' => 'Dic', - 'December' => 'Dicembre', - 'Deposit' => 'Deposito', - '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!', - 'Payment' => 'Pagamento', - 'Reconciliation' => 'Conciliazione', - 'Select all' => 'Seleziona tutto', - 'Sep' => 'Set', - 'September' => 'Settembre', - 'Source' => 'Riferimento', - 'Statement Balance' => 'Saldo', - 'To' => 'A', - 'Update' => 'Aggiorna', -}; - -$self{subs} = { - 'acc_menu' => 'acc_menu', - 'continue' => 'continue', - 'display' => 'display', - 'display_form' => 'display_form', - 'done' => 'done', - 'get_payments' => 'get_payments', - '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/sql-ledger/locale/it/rp b/sql-ledger/locale/it/rp deleted file mode 100644 index af9b1482c..000000000 --- a/sql-ledger/locale/it/rp +++ /dev/null @@ -1,148 +0,0 @@ -$self{texts} = { - 'AP Aging' => 'Partite aperte', - 'AR Aging' => 'Partite aperte', - 'Account' => 'Conto', - 'Account Number' => 'Numero di conto', - 'Accounting Menu' => 'Menù contabilità', - 'Accounts' => 'Conti', - 'Address' => 'Indirizzo', - 'Amount' => 'Importo', - 'Apr' => 'Apr', - 'April' => 'Aprile', - 'Attachment' => 'Allegato', - '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' => 'Includere 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' => 'Codice', - 'Oct' => 'Ott', - 'October' => 'Ottobre', - 'Order' => 'Ordine', - 'PDF' => 'PDF', - 'Payments' => 'Pagamenti', - 'Postscript' => 'PostScript', - 'Print' => 'Stampa', - 'Project' => 'Progetto', - 'Project Number' => 'Numero progetto', - 'Project not on file!' => 'Progetto non archiviato!', - 'Receipts' => 'Riscossioni', - 'Report for' => 'Prospetto per', - 'Salesperson' => 'Addetto alle vendite', - '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' => 'Riferimento', - 'Standard' => 'Standard', - 'Statement' => 'Sollecito', - 'Statement sent to' => 'Sollecito mandato a', - 'Statements sent to printer!' => 'Solleciti mandati in stampa!', - 'Subject' => 'Oggetto', - 'Subtotal' => 'Totale parziale', - 'Tax' => 'Imposta', - 'Tax collected' => 'Debito IVA', - 'Tax paid' => 'Credito IVA', - 'To' => 'A', - 'Total' => 'Totale', - 'Trial Balance' => 'Bilancio di verifica', - 'Vendor' => 'Fornitore', - 'Vendor not on file!' => 'Fornitore non in archivio!', - 'as at' => 'Al', - 'for Period' => 'nel 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', - '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', - 'list_accounts' => 'list_accounts', - 'list_payments' => 'list_payments', - 'menubar' => 'menubar', - 'name_selected' => 'name_selected', - 'payment_subtotal' => 'payment_subtotal', - 'print' => 'print', - 'print_form' => 'print_form', - 'print_options' => 'print_options', - 'project_selected' => 'project_selected', - 'report' => 'report', - 'sales_invoice_' => 'sales_invoice_', - '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; |