diff options
Diffstat (limited to 'sql-ledger/locale/es_iso')
29 files changed, 4418 insertions, 0 deletions
diff --git a/sql-ledger/locale/es_iso/COPYING b/sql-ledger/locale/es_iso/COPYING new file mode 100644 index 000000000..bf7ca4bc6 --- /dev/null +++ b/sql-ledger/locale/es_iso/COPYING @@ -0,0 +1,26 @@ +###################################################################### +# SQL-Ledger Accounting +# Copyright (c) 2002 +# +# Spanish texts: +# +#  Author: Maria Gabriela Fong <mgfong@maga.tzo.org> +#          John Stoddart <jstypo@imagencolor.com.ve> +#          Federico Montesino Pouzols <fedemp@arrok.com> +#          Tomás Pereira <topec@percar.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. +# +####################################################################### + diff --git a/sql-ledger/locale/es_iso/LANGUAGE b/sql-ledger/locale/es_iso/LANGUAGE new file mode 100644 index 000000000..1b864b9f6 --- /dev/null +++ b/sql-ledger/locale/es_iso/LANGUAGE @@ -0,0 +1 @@ +Spanish ISO diff --git a/sql-ledger/locale/es_iso/Num2text b/sql-ledger/locale/es_iso/Num2text new file mode 100644 index 000000000..c9032245a --- /dev/null +++ b/sql-ledger/locale/es_iso/Num2text @@ -0,0 +1,211 @@ +#===================================================================== +# SQL-Ledger Accounting +# Copyright (C) 2002 +# +#  Author: Dieter Simader +#   Email: dsimader@sql-ledger.org +#     Web: http://www.sql-ledger.org +# +#  Language: Spanish +#  Contributors: John Christian Stoddart +# +# 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. +#====================================================================== + + +sub init { +  my $self = shift; + +  %{ $self->{numbername} } = +                   (0 => 'cero', +                    1 => 'un', +		 '1o' => 'uno', +                    2 => 'dos', +	            3 => 'tres', +		    4 => 'cuatro', +		    5 => 'cinco', +		    6 => 'seis', +		    7 => 'siete', +		    8 => 'ocho', +		    9 => 'nueve', +		   10 => 'diez', +		   11 => 'once', +		   12 => 'doce', +		   13 => 'trece', +		   14 => 'catorce', +		   15 => 'quince', +		   16 => 'dieciséis', +		   17 => 'diecisiete', +		   18 => 'dieciocho', +		   19 => 'diecinueve', +		   20 => 'veinte', +		   21 => 'veintiún', +	        '21o' => 'veintiuno', +		   22 => 'veintidós', +		   23 => 'veintitrés', +		   24 => 'veinticuatro', +		   25 => 'veinticinco', +		   26 => 'veintiséis', +		   27 => 'veintisiete', +		   28 => 'veintiocho', +		   29 => 'veintinueve', +		   30 => 'treinta', +		   40 => 'cuarenta', +		   50 => 'cincuenta', +		   60 => 'sesenta', +		   70 => 'setenta', +		   80 => 'ochenta', +		   90 => 'noventa', +		  500 => 'quinientos', +		  700 => 'setecientos', +		  900 => 'novecientos', +                10**2 => 'ciento', +                10**3 => 'mil', +		10**6 => 'millón', +	       10**12 => 'billón', +		); + +} + + +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 $stripun = 0; +  my @a = (); +  my $i; + +  while (@num) { +    @a = (); +    for (1 .. 3) { +      push @a, shift @num; +    } +    push @numblock, join / /, reverse @a; +  } +   +  # special case for 1000 +  if ($numblock[1] eq '1' && $numblock[0] gt '000') { +    # remove first array element from textnumber +    $stripun = 1; +  } + +  while (@numblock) { + +    $i = $#numblock; +    @num = split //, $numblock[$i]; +     +    $numblock[$i] *= 1; + +    if ($numblock[$i] == 0) { +      pop @numblock; +      next; +    } +     +    if ($numblock[$i] > 99) { +      if ($num[0] == 1) { +	push @textnumber, $self->{numbername}{10**2}; +      } else { +        # special case for 500, 700, 900 +	if (grep /$num[0]/, (5,7,9)) { +	  push @textnumber, $self->{numbername}{"${num[0]}00"}; +	   +	} else { +	 +	  # the one from hundreds, append cientos +	  push @textnumber, $self->{numbername}{$num[0]}.$self->{numbername}{10**2}.'s'; +	   +	} +      } +      +      # reduce numblock +      $numblock[$i] -= $num[0] * 100; +    } +     +    if ($numblock[$i] > 9) { +      # tens +      push @textnumber, $self->format_ten($numblock[$i], $i); +    } elsif ($numblock[$i] > 0) { +      # ones +      $num = $numblock[$i]; +      $num .= 'o' if ($num == 1 && $i == 0); +      push @textnumber, $self->{numbername}{$num}; +    } +     +    # add thousand, million +    if ($i) { +      $num = 10**($i * 3); +      if ($numblock[$i] > 1) { +	if ($i == 2 || $i == 4) { +	  $a = $self->{numbername}{$num}."es"; +	  $a =~ s/ó/o/; +	  push @textnumber, $a; +	} elsif ($i == 3) { +	  $num = 10**($i * 2); +	  $a = "$self->{10**3} $self->{numbername}{$num}"."es"; +	  $a =~ s/ó/o/; +	  push @textnumber, $a; +	} else { +	  if ($i == 1) { +	    push @textnumber, $self->{numbername}{$num}; +	  } else { +	    push @textnumber, $self->{numbername}{$num}.'s'; +	  } +	} +      } else { +	push @textnumber, $self->{numbername}{$num}; +      } +    } +       +    pop @numblock; +     +  } + +  shift @textnumber if $stripun; + +  join ' ', @textnumber; + +} + + +sub format_ten { +  my ($self, $amount, $i) = @_; +   +  my $textnumber = ""; +  my @num = split //, $amount; + +  if ($amount > 30) { +    $textnumber = $self->{numbername}{$num[0]*10}; +    $amount = $num[1]; +  } else { +    $amount .= 'o' if ($num[1] == 1 && $i == 0); +    $textnumber = $self->{numbername}{$amount}; +    $amount = 0; +  } + +  $textnumber .= " y ".$self->{numbername}{$amount} if $amount; + +  $textnumber; +   +} + + +1; + diff --git a/sql-ledger/locale/es_iso/admin b/sql-ledger/locale/es_iso/admin new file mode 100644 index 000000000..bcf52dd7d --- /dev/null +++ b/sql-ledger/locale/es_iso/admin @@ -0,0 +1,141 @@ +$self{texts} = { +  'Access Control'              => 'Control de Acceso', +  'Accounting'                  => 'Contabilidad', +  'Add User'                    => 'Añadir usuario', +  'Address'                     => 'Dirección', +  'Administration'              => 'Administración', +  'Administrator'               => 'Administrador', +  'All Datasets up to date!'    => 'Todas las bases de datos están actualizadas', +  'Cannot create Lock!'         => 'Cannot create Lock!', +  'Change Admin Password'       => 'Cambiar la contraseña del administrador', +  'Change Password'             => 'Cambiar contraseña', +  'Character Set'               => 'Conjunto de caracteres', +  'Click on login name to edit!' => 'Haga clic en el nombre de usuario por +editar', +  'Company'                     => 'Compañía', +  'Connect to'                  => 'Conectar a', +  'Continue'                    => 'Continuar', +  'Create Chart of Accounts'    => 'Crear catálogo de cuentas', +  'Create Dataset'              => 'Crear base de datos', +  'DBI not installed!'          => 'No se ha instalado DBI', +  'Database'                    => 'Base de datos', +  'Database Administration'     => 'Administración de las bases de datos', +  'Database Driver not checked!' => 'No se ha podido verificar el gestor de la base de datos', +  'Database User missing!'      => 'No se ha definido el usuario de la base de datos', +  'Dataset'                     => 'Base de datos', +  'Dataset missing!'            => 'No se ha definido la base de datos', +  'Dataset updated!'            => 'Base de datos actualizada', +  'Date Format'                 => 'Formato de fecha', +  'Delete'                      => 'Borrar', +  'Delete Dataset'              => 'Borrar base de datos', +  'Directory'                   => 'Directorio', +  'Driver'                      => 'Gestor', +  'Dropdown Limit'              => 'Límite de efectivo', +  'E-mail'                      => 'Correo electrónico', +  'Edit User'                   => 'Editar usuario', +  'Existing Datasets'           => 'Bases de datos existentes', +  'Fax'                         => 'Fax', +  'Host'                        => 'Máquina servidor de base de datos', +  'Hostname missing!'           => 'No se ha definido la máquina servidor de base de datos', +  'Language'                    => 'Lenguaje', +  'Leave host and port field empty unless you want to make a remote connection.' => 'Deje los campos de máquina servidor de base de datos y puerto vacíos al menos que quiera hacer una conexión remota', +  'Lock System'                 => 'Lock System', +  'Lockfile created!'           => 'Lockfile created!', +  'Lockfile removed!'           => 'Lockfile removed!', +  'Login'                       => 'Entrar', +  'Login name missing!'         => 'Login name missing!', +  'Logout'                      => 'Salir', +  'Manager'                     => 'Administrador', +  'Menu Width'                  => 'Ancho del Menu', +  'Multibyte Encoding'          => 'Multibyte Encoding', +  'Name'                        => 'Nombre', +  'New Templates'               => 'Nuevas plantillas', +  'No Database Drivers available!' => 'No hay ningún gestor de base de datos disponible', +  'No Dataset selected!'        => 'No se ha seleccionado ninguna base de datos', +  'Nothing to delete!'          => '¡No hay nada para borrar!', +  'Number Format'               => 'Formato de número', +  'Oracle Database Administration' => 'Administración de la base de datos Oracle', +  'Password'                    => 'Contraseña', +  'Password changed!'           => '¡Contraseña cambiada!', +  'Pg Database Administration'  => 'Administración de la base de datos PostgreSQL', +  'PgPP Database Administration' => 'PgPP Database Administration', +  'Phone'                       => 'Teléfono', +  'Port'                        => 'Puerto', +  'Port missing!'               => 'No se ha definido  el puerto', +  'Printer'                     => 'Impresora', +  'Save'                        => 'Guardar', +  'Setup Templates'             => 'Configurar plantillas', +  'Signature'                   => 'Firma', +  'Stylesheet'                  => 'Hoja de estilo', +  'Templates'                   => 'Plantillas', +  'The following Datasets are not in use and can be deleted' => 'Las siguientes bases de datos no están en uso y se pueden borrar', +  'The following Datasets need to be updated' => 'Es necesario actualizar las siguientes bases de datos', +  'This is a preliminary check for existing sources. Nothing will be created or deleted at this stage!' => 'Esta es una verificacion preliminar de fuentes existentes.  No se creará ni borrará nada durante esta etapa', +  '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.' => 'Para añadir un usuario a un grupo, edite un nombre, cambie el nombre de usuario (login) y guarde los cambios.  Un nuevo usuario, con las mismas propiedades se guardará bajo el nuevo nombre de usuario (login).', +  'Unlock System'               => 'Unlock System', +  'Update Dataset'              => 'Actualizar base de datos', +  'Use Templates'               => 'Plantillas de usuarios', +  'User'                        => 'Usuario', +  'User deleted!'               => '¡Usuario borrado!', +  'User saved!'                 => '¡Usuario guardado!', +  'Version'                     => 'Versión', +  'You must enter a host and port for local and remote connections!' => 'Debe introducir una máquina servidor de bases de datos y un puerto para conexiones locales y remotas', +  'does not exist'              => 'no existe', +  'is already a member!'        => 'ya es actualmente un miembro', +  'localhost'                   => 'máquina local', +  'locked!'                     => 'Bloqueado!', +  'successfully created!'       => 'creado satisfactoriamente', +  'successfully deleted!'       => 'borrado satisfactoriamente', +  'website'                     => 'sitio 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', +  'añadir_usuario'              => 'add_user', +  'cambiar_la_contraseña_del_administrador' => 'change_admin_password', +  'cambiar_contraseña'          => 'change_password', +  'continuar'                   => 'continue', +  'crear_base_de_datos'         => 'create_dataset', +  'borrar'                      => 'delete', +  'borrar_base_de_datos'        => 'delete_dataset', +  'lock_system'                 => 'lock_system', +  'entrar'                      => 'login', +  'salir'                       => 'logout', +  'administración_de_la_base_de_datos_oracle' => 'oracle_database_administration', +  'administración_de_la_base_de_datos_postgresql' => 'pg_database_administration', +  'pgpp_database_administration' => 'pgpp_database_administration', +  'guardar'                     => 'save', +  'unlock_system'               => 'unlock_system', +  'actualizar_base_de_datos'    => 'update_dataset', +}; + +1; diff --git a/sql-ledger/locale/es_iso/all b/sql-ledger/locale/es_iso/all new file mode 100644 index 000000000..c16f4587a --- /dev/null +++ b/sql-ledger/locale/es_iso/all @@ -0,0 +1,768 @@ +# 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'                           => 'A', +  'AP'                          => 'Cartera de pagos', +  'AP Aging'                    => 'Diario resumido de pagos', +  'AP Outstanding'              => 'Impagados Proveedores', +  'AP Transaction'              => 'Gestión se pago', +  'AP Transactions'             => 'Gestiones de pagos', +  'AR'                          => 'Cartera de cobros', +  'AR Aging'                    => 'Diario resumido de cobros ', +  'AR Outstanding'              => 'Impagados Cartera', +  'AR Transaction'              => 'Gestión de cobro', +  'AR Transactions'             => 'Gestiones de cobros', +  'About'                       => 'Acerca de', +  'Above'                       => 'Encima de', +  'Access Control'              => 'Control de Acceso', +  'Account'                     => 'Cuenta', +  'Account Number'              => 'Número de cuenta', +  'Account Number missing!'     => 'No se ha definido el número de la cuenta', +  'Account Type'                => 'Categoría de cuenta', +  'Account Type missing!'       => 'No se ha definido el tipo de la cuenta', +  'Account deleted!'            => '¡Cuenta borraba!', +  'Account does not exist!'     => 'Cuenta no existe!', +  'Account saved!'              => '¡Cuenta guardada!', +  'Accounting'                  => 'Contabilidad', +  'Accounting Menu'             => 'Menú general', +  'Accounts'                    => 'Cuentas', +  'Accrual'                     => 'Acumulado', +  'Activate Audit trails'       => 'Activar Rastro Auditoría', +  'Active'                      => 'Activo', +  'Add'                         => 'Añadir', +  'Add AP Transaction'          => '', +  'Add AR Transaction'          => '', +  'Add Account'                 => 'Añadir cuenta', +  'Add Assembly'                => 'Añadir compuesto', +  'Add Business'                => 'Agregar Empresa', +  'Add Cash Transfer Transaction' => 'Agregar transacción', +  'Add Customer'                => 'Añadir cliente', +  'Add Deduction'               => 'Agregar Deducción', +  'Add Department'              => 'Agregar Centro de Costos', +  'Add Employee'                => 'Agregar Empleado', +  'Add Exchange Rate'           => 'Agregar Tasa de Cambio', +  'Add GIFI'                    => 'Añadir código GIFI', +  'Add General Ledger Transaction' => 'Añadir transacción al libro mayor general', +  'Add Group'                   => 'Agregar Grupo', +  'Add Labor/Overhead'          => 'Agregar Mano de Obra', +  'Add Language'                => 'Agregar Idioma', +  'Add POS Invoice'             => 'Agregar Factura POS', +  'Add Part'                    => 'Añadir artículo', +  'Add Pricegroup'              => 'Añadir Grupo de Precios', +  'Add Project'                 => 'Añadir proyecto', +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add SIC'                     => 'Agregar SIC', +  'Add Sales Invoice'           => 'Añadir factura', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Add Service'                 => 'Añadir servicio', +  'Add Transaction'             => 'Añadir', +  'Add User'                    => 'Añadir usuario', +  'Add Vendor'                  => 'Añadir proveedor', +  'Add Vendor Invoice'          => 'Añadir factura de compra', +  'Add Warehouse'               => 'Agregar Bodega', +  'Address'                     => 'Dirección', +  'Administration'              => 'Administración', +  'Administrator'               => 'Administrador', +  'After Deduction'             => 'Despues Deducción', +  'All'                         => 'Todos', +  'All Accounts'                => 'Todas las Cuentas', +  'All Datasets up to date!'    => 'Todas las bases de datos están actualizadas', +  'All Items'                   => 'Todo', +  'Allowances'                  => 'Permisos', +  'Amount'                      => 'Total', +  'Amount Due'                  => 'Cantidad adeudada', +  'Amount missing!'             => 'Falta suma', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Invoice Number' => '¿Esta seguro de que desea borrar la factura número', +  'Are you sure you want to delete Order Number' => '¿Esta seguro de que desea +borrar la orden número?', +  'Are you sure you want to delete Quotation Number' => 'Seguro que quiere borrar la cotización número', +  'Are you sure you want to delete Transaction' => '¿Está seguro de que desea borrar la transacción?', +  'Are you sure you want to remove the marked entries from the queue?' => 'Seguro que quieres remover las entradas seleccionadas de la cola?', +  'Assemblies'                  => 'Compuestos', +  'Assemblies restocked!'       => '¡Compuestos actualizados en almacen!', +  'Assembly'                    => 'Compuesto', +  'Asset'                       => 'Activo', +  'Attachment'                  => 'Adjunto', +  'Audit Control'               => 'Control de auditoría', +  'Audit trail removed up to'   => 'Rastro de Auditoría removido hasta', +  'Audit trails disabled'       => 'Rastro de Auditoría desactivado', +  'Audit trails enabled'        => 'Rastro de Auditoría activado', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'BIC'                         => 'BIC', +  'BOM'                         => 'Listado de piezas', +  'Backup'                      => 'Copia de seguridad de los datos', +  'Backup sent to'              => 'Copia de seguridad enviada a', +  'Balance'                     => 'Balance', +  'Balance Sheet'               => 'Hoja de balance', +  'Based on'                    => 'Basado en', +  'Batch Printing'              => 'Impresión en serie', +  'Bcc'                         => 'Bcc', +  'Before Deduction'            => 'Antes de la Deducción', +  'Beginning Balance'           => 'Balance Inicial', +  'Below'                       => 'Debajo', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Bin Lists'                   => 'Listas Empaque', +  'Books are open'              => 'Los libros están abiertos', +  'Break'                       => 'Pausa', +  'Business'                    => 'Empresa', +  'Business Number'             => 'Numero de negocio', +  'Business deleted!'           => 'Empresa eliminada!', +  'Business saved!'             => 'Empresa guardada!', +  'C'                           => 'C', +  'COGS'                        => 'Costo de los artículos', +  'Cannot create Lock!'         => 'Cannot create Lock!', +  'Cannot delete account!'      => '¡No se puede borrar la cuenta!', +  'Cannot delete customer!'     => '¡No se puede borrar el cliente!', +  'Cannot delete default account!' => 'No se puede borrar la cuenta por omisión', +  'Cannot delete invoice!'      => '¡No se puede borrar la factura!', +  'Cannot delete item!'         => '¡No se puede borrar el artículo!', +  'Cannot delete order!'        => '¡No se puede borrar el pedido!', +  'Cannot delete quotation!'    => '¡No puedo borrar cotización!', +  'Cannot delete transaction!'  => '¡No se puede borrar la transacción!', +  'Cannot delete vendor!'       => '¡No se puede borrar el vendedor!', +  'Cannot post Payment!'        => 'No puedo guardar pago', +  'Cannot post Receipt!'        => 'No puedo guardar recibo', +  'Cannot post invoice for a closed period!' => '¡No se puede registrar una factura en un periodo ya cerrado!', +  'Cannot post invoice!'        => '¡No se puede registrar la factura!', +  'Cannot post payment for a closed period!' => '¡No se puede registrar un pago en un periodo ya cerrado!', +  'Cannot post transaction for a closed period!' => '¡No se puede registrar una transacción para un periodo cerrado', +  'Cannot post transaction!'    => '¡No se puede registrar la transacción', +  'Cannot process payment for a closed period!' => '¡No se puede procesar un pago de un periodo ya cerrado!', +  'Cannot remove files!'        => 'No puedo borrar archivos!', +  'Cannot save account!'        => '¡No se puede guardar la cuenta!', +  'Cannot save defaults!'       => 'No puedo guardar preferencias!', +  'Cannot save order!'          => '¡No se puede guardar el pedido!', +  'Cannot save preferences!'    => '¡No se puede guardar las preferencias!', +  'Cannot save quotation!'      => 'No puedo guardar cotización!', +  'Cannot set account for more than one of AR, AP or IC' => 'Tiene que seleccionar cuenta!', +  'Cannot set multiple options for' => 'No puedo crear multiples opciones para', +  'Cannot set multiple options for Parts Inventory' => 'No puedo crear multiples opciones para Inventario', +  'Cannot set multiple options for Service Items' => 'No puedo crear multiples opciones para Servicios', +  'Cannot stock assemblies!'    => '¡No se pueden almacenar los compuestos!', +  'Cash'                        => 'Efectivo', +  'Cc'                          => 'Cc', +  'Change'                      => 'Cambiar', +  'Change Admin Password'       => 'Cambiar la contraseña del administrador', +  'Change Password'             => 'Cambiar contraseña', +  'Character Set'               => 'Conjunto de caracteres', +  'Chart of Accounts'           => 'Cuadro de cuentas', +  'Check'                       => 'Cheque', +  'Check Inventory'             => 'Revisar Inventario', +  'Checks'                      => 'Cheques', +  'City'                        => 'Ciudad', +  'Cleared'                     => 'Borrado', +  'Click on login name to edit!' => 'Haga clic en el nombre de usuario por +editar', +  'Close Books up to'           => 'Cerrar los libros hasta', +  'Closed'                      => 'Cerrado', +  'Code'                        => 'Código', +  'Code missing!'               => 'Falta código', +  'Company'                     => 'Compañía', +  'Company Name'                => 'Nombre de la empresa', +  'Compare to'                  => 'Comparar con', +  'Components'                  => 'Componentes', +  'Confirm'                     => '', +  'Confirm!'                    => 'Confirmar', +  'Connect to'                  => 'Conectar a', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Contra'                      => 'Cuentas del Orden', +  'Copies'                      => 'Copias', +  'Copy to COA'                 => 'Copiar al catálogo de cuentas', +  'Cost'                        => 'Costo', +  'Cost Center'                 => 'Centro de Costos (Gastos)', +  'Could not save pricelist!'   => '', +  'Could not save!'             => 'No pude guardar', +  'Could not transfer Inventory!' => 'No puedo transferir inventario!', +  'Country'                     => 'País', +  'Create Chart of Accounts'    => 'Crear catálogo de cuentas', +  'Create Dataset'              => 'Crear base de datos', +  'Credit'                      => 'Crédito', +  'Credit Limit'                => 'Limite de credito', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Current'                     => 'Actual', +  'Current Earnings'            => 'Resultado del periodo', +  'Customer'                    => 'Cliente', +  'Customer History'            => 'Historial del Cliente', +  'Customer Number'             => 'Número del cliente', +  'Customer deleted!'           => '¡Cliente borrado!', +  'Customer missing!'           => '¡Falta el cliente!', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Customer saved!'             => '¡Cliente guardado!', +  'Customers'                   => 'Clientes', +  'DBI not installed!'          => 'No se ha instalado DBI', +  'DOB'                         => '', +  'Database'                    => 'Base de datos', +  'Database Administration'     => 'Administración de las bases de datos', +  'Database Driver not checked!' => 'No se ha podido verificar el gestor de la base de datos', +  'Database Host'               => 'Máquina servidor de base de datos', +  'Database User missing!'      => 'No se ha definido el usuario de la base de datos', +  'Dataset'                     => 'Base de datos', +  'Dataset is newer than version!' => 'La base de datos está más actual que la versión del programa', +  'Dataset missing!'            => 'No se ha definido la base de datos', +  'Dataset updated!'            => 'Base de datos actualizada', +  'Date'                        => 'Fecha', +  'Date Format'                 => 'Formato de fecha', +  'Date Paid'                   => 'Fecha de pago', +  'Date Received'               => 'Fecha recibido', +  'Date missing!'               => '¡Falta la fecha!', +  'Date received missing!'      => 'Faltas datos', +  'Debit'                       => 'Débito', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Decimalplaces'               => 'Lugar de los decimales', +  'Decrease'                    => 'Reducir', +  'Deduct after'                => 'Deducir despues de', +  'Deduction deleted!'          => 'Deducción borrado!', +  'Deduction saved!'            => 'Deducción guardado', +  'Deductions'                  => 'Deducciones', +  'Defaults'                    => 'Preferencias', +  'Defaults saved!'             => 'Guardado!', +  'Delete'                      => 'Borrar', +  'Delete Account'              => 'Borrar cuenta', +  'Delete Dataset'              => 'Borrar base de datos', +  'Delivery Date'               => 'Fecha de entrega', +  'Department'                  => 'Centro de Costos', +  'Department deleted!'         => 'Centro de Costos borrado!', +  'Department saved!'           => 'Centro de Costos guardado!', +  'Departments'                 => 'Centro de Costos', +  'Deposit'                     => 'Depósito', +  'Description'                 => 'Descripción', +  'Description Translations'    => 'Descripción Traducción', +  'Description missing!'        => 'Falta Descripción', +  'Detail'                      => 'Detalle', +  'Difference'                  => 'Diferencia', +  'Directory'                   => 'Directorio', +  'Discount'                    => 'Descuento', +  'Done'                        => 'Hecho', +  'Drawing'                     => 'Reintegro', +  'Driver'                      => 'Gestor', +  'Dropdown Limit'              => 'Límite de efectivo', +  'Due Date'                    => 'Fecha de vencimiento', +  'Due Date missing!'           => 'Falta la fecha de vencimiento', +  'E-mail'                      => 'Correo electrónico', +  'E-mail Statement to'         => 'Enviar comprobante por correo electrónico a', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Edit'                        => 'Editar', +  'Edit AP Transaction'         => '', +  'Edit AR Transaction'         => '', +  'Edit Account'                => 'Editar cuenta', +  'Edit Assembly'               => 'Editar compuesto', +  'Edit Business'               => 'Editar empresa', +  'Edit Cash Transfer Transaction' => 'Editar Transacción en Effectivo', +  'Edit Customer'               => 'Editar Cliente', +  'Edit Deduction'              => 'Editar Deducción', +  'Edit Department'             => 'Editar Centro de Costos', +  'Edit Description Translations' => 'Editar Descripción Traducción', +  'Edit Employee'               => 'Editar Empleado', +  'Edit GIFI'                   => 'Editar GIFI', +  'Edit General Ledger Transaction' => 'Editar transacción del libro mayor general', +  'Edit Group'                  => 'Editar Grupo', +  'Edit Labor/Overhead'         => 'Editar Mano de Obra', +  'Edit Language'               => 'Editar Idioma', +  'Edit POS Invoice'            => 'Editar Factura Punto de Venta', +  'Edit Part'                   => 'Editar compuesto', +  'Edit Preferences for'        => 'Editar preferencias de', +  'Edit Pricegroup'             => 'Editar Grupo de Precios', +  'Edit Project'                => 'Editar proyecto', +  'Edit Purchase Order'         => 'Editar pedido', +  'Edit Quotation'              => 'Editar Cotización', +  'Edit Request for Quotation'  => 'Editar Solicitud de Cotización', +  'Edit SIC'                    => 'Editar SIC', +  'Edit Sales Invoice'          => 'Edirar factura de venta', +  'Edit Sales Order'            => 'Editar presupuesto', +  'Edit Service'                => 'Editar servicio', +  'Edit Template'               => 'Editar plantilla', +  'Edit User'                   => 'Editar usuario', +  'Edit Vendor'                 => 'Editar Proveedor', +  'Edit Vendor Invoice'         => 'Editar factura de compra', +  'Edit Warehouse'              => 'Editar Bodega', +  'Employee'                    => 'Colaborador/Empleado', +  'Employee Name'               => 'Nombre del Empleado', +  'Employee Number'             => '', +  'Employee deleted!'           => 'Empleado borrado!', +  'Employee pays'               => 'Empleado cancela', +  'Employee saved!'             => 'Empleado guardado!', +  'Employees'                   => 'Empleados', +  'Employer'                    => 'Empleador', +  'Employer pays'               => 'Empleador cancela', +  'Enddate'                     => 'Fecha final', +  'Enforce transaction reversal for all dates' => 'Forzar la anulación de las transacciones para todas las fechas', +  'Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies' => 'Introduzca hasta 3 letras separadas por dos puntos (p.e. CAD:USD:EUR) para las monedas locales y las extranjeras', +  'Equity'                      => 'Balance', +  'Excempt age <'               => '', +  'Exch'                        => 'Cambio', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate for payment missing!' => '¡Falta la tasa de cambio para el pago!', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Existing Datasets'           => 'Bases de datos existentes', +  'Expense'                     => 'Gastos', +  'Expense Account'             => 'Cuenta de gastos', +  'Expense/Asset'               => 'Gastos/Activo', +  'Extended'                    => 'Extendido', +  'FX'                          => 'TC', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'Foreign Exchange Gain'       => 'Ganancia en moneda extranjera', +  'Foreign Exchange Loss'       => 'Pérdida en moneda extranjera', +  'From'                        => 'Desde', +  'GIFI'                        => 'Código GIFI', +  'GIFI deleted!'               => '¡Borrado el código GIFI!', +  'GIFI missing!'               => 'No se ha definido el código GIFI', +  'GIFI saved!'                 => '¡Guardado el código GIFI!', +  'GL Transaction'              => 'Transacción en el libro mayor', +  'General Ledger'              => 'Libro mayor general', +  'Goods & Services'            => 'Bienes y servicios', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'Group Translations'          => 'Traducción Grupos', +  'Group deleted!'              => 'Grupo eleminado!', +  'Group missing!'              => 'Falta el grupo', +  'Group saved!'                => 'Grupo guardado!', +  'Groups'                      => 'Grupos', +  'HR'                          => 'Recursos Humanos', +  'HTML Templates'              => 'Plantillas HTML', +  'Heading'                     => 'Encabezado', +  'History'                     => 'Historial', +  'Home Phone'                  => 'Teléfono residencia', +  'Host'                        => 'Máquina servidor de base de datos', +  'Hostname missing!'           => 'No se ha definido la máquina servidor de base de datos', +  'IBAN'                        => 'IBAN', +  'ID'                          => 'ID', +  'Image'                       => 'Imagen', +  'In-line'                     => 'Incrustado', +  'Include Exchange Rate Difference' => 'Incluir Diferencia por Tasa de Cambio', +  'Include in Report'           => 'Incluir en informe', +  'Include in drop-down menus'  => 'Incluir en menúes desplegables:', +  'Include this account on the customer/vendor forms to flag customer/vendor as taxable?' => 'Mostrar esta cuenta en los formularios de cliente/proveedor para seleccionar si hay que aplicar impuestos al cliente/proveedor?', +  'Income'                      => 'Ingreso', +  'Income Account'              => 'Cuenta de Ingreso', +  'Income Statement'            => 'Balance de situación', +  'Incorrect Dataset version!'  => 'Versión de base de datos incorrecta', +  'Incorrect Password!'         => 'Contraseña incorrecta', +  'Increase'                    => 'Aumentar', +  'Individual Items'            => 'Artículos individuales', +  'Internal Notes'              => 'Notas internas', +  'Inventory'                   => 'Inventario', +  'Inventory Account'           => 'Cuenta de inventario', +  'Inventory quantity must be zero before you can set this assembly obsolete!' => 'La cantidad en inventario debe ser cero antes de cambiar este compuesto a obsoleto', +  'Inventory quantity must be zero before you can set this part obsolete!' => 'La cantidad en inventario debe ser cero antes de cambiar este artículo a obsoleto', +  'Inventory saved!'            => 'Inventario guardado!', +  'Inventory transferred!'      => 'Inventario transferido!', +  'Invoice'                     => 'Factura', +  'Invoice Date'                => 'Fecha de factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Invoice deleted!'            => '¡Factura borrada!', +  'Invoice posted!'             => '¡Factura registrada!', +  'Invoice processed!'          => 'Factura procesada!', +  'Invoices'                    => 'Facturas', +  'Is this a summary account to record' => '¿Es esta una cuenta de resumen a registrar?', +  'Item already on pricelist!'  => '', +  'Item deleted!'               => '¡Concepto borrado!', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Items'                       => 'Productos/Servicios', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'LaTeX Templates'             => 'Plantillas LaTeX', +  'Labor/Overhead'              => 'Mano de Obra', +  'Language'                    => 'Lenguaje', +  'Language deleted!'           => 'Idioma Borrada!', +  'Language saved!'             => 'Idioma Guardada!', +  'Languages'                   => 'Idiomas', +  'Languages not defined!'      => 'Idiomas no configuradas!', +  'Last Numbers & Default Accounts' => 'Últimos números y cuentas por omisión', +  'Leadtime'                    => 'Tiempo de Entrega', +  'Leave host and port field empty unless you want to make a remote connection.' => 'Deje los campos de máquina servidor de base de datos y puerto vacíos al menos que quiera hacer una conexión remota', +  'Liability'                   => 'Pasivo', +  'Licensed to'                 => 'Adaptado para', +  'Line Total'                  => 'Total de la línea', +  'Link'                        => 'Enlaces', +  'Link Accounts'               => 'Enlazar cuentas', +  'List'                        => '', +  'List Accounts'               => 'Listar cuentas', +  'List Businesses'             => 'Mostrar empresas', +  'List Departments'            => 'Mostrar Centro de Costos', +  'List GIFI'                   => 'Listar código GIFI', +  'List Languages'              => 'Mostrar Idiomas', +  'List Price'                  => 'Precio de lista', +  'List Projects'               => 'Mostrar Projectos', +  'List SIC'                    => 'Mostrar SIC', +  'List Transactions'           => 'Listar transacciones', +  'List Warehouses'             => 'Mostar bodegas', +  'Lock System'                 => 'Lock System', +  'Lockfile created!'           => 'Lockfile created!', +  'Lockfile removed!'           => 'Lockfile removed!', +  'Login'                       => 'Entrar', +  'Login name missing!'         => 'Login name missing!', +  'Logout'                      => 'Salir', +  'Make'                        => 'Marca', +  'Manager'                     => 'Administrador', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'Marked entries printed!'     => 'Selección impresa', +  'Markup'                      => 'Margen', +  'Maximum'                     => 'Maximo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Menu Width'                  => 'Ancho del Menu', +  'Message'                     => 'Mensaje', +  'Method'                      => 'Metódo', +  'Microfiche'                  => 'Microficha', +  'Model'                       => 'Modelo', +  'Month'                       => '', +  'Multibyte Encoding'          => 'Multibyte Encoding', +  'N/A'                         => 'Sin respuesta', +  'Name'                        => 'Nombre', +  'Name missing!'               => '¡Falta el nombre!', +  'New Templates'               => 'Nuevas plantillas', +  'No'                          => 'No', +  'No Database Drivers available!' => 'No hay ningún gestor de base de datos disponible', +  'No Dataset selected!'        => 'No se ha seleccionado ninguna base de datos', +  'No email address for'        => 'Falta la dirección de correo electrónico de', +  'No.'                         => 'No.', +  'Non-taxable'                 => 'Sin Impuestos', +  'Non-taxable Purchases'       => 'Compras sin Impuestos', +  'Non-taxable Sales'           => 'Ventas sin Impuestos', +  'Notes'                       => 'Notas', +  'Nothing entered!'            => 'Información Incompleta', +  'Nothing outstanding for '    => 'Nada en Cartera para', +  'Nothing selected!'           => '¡No es seleccionado nada!', +  'Nothing to delete!'          => '¡No hay nada para borrar!', +  'Nothing to print!'           => '', +  'Nothing to transfer!'        => 'Nada para transferir', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number Format'               => 'Formato de número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'O'                           => 'O', +  'Obsolete'                    => 'Obsoleto', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'On Hand'                     => 'Disponible', +  'Open'                        => 'Abierto', +  'Oracle Database Administration' => 'Administración de la base de datos Oracle', +  'Order'                       => 'Orden', +  'Order Date'                  => 'Fecha de elaboración', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Entry'                 => 'Presupuestos y pedidos', +  'Order Number'                => 'Número de orden', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'Order deleted!'              => '¡Orden borrada!', +  'Order processed!'            => 'Pedido procesado', +  'Order saved!'                => 'Pedido guardado', +  'Orphaned'                    => 'Huérfano', +  'Out of balance transaction!' => 'Transacción fuera de Balance!', +  'Out of balance!'             => '¡Fuera de balance!', +  'Outstanding'                 => 'Impagados', +  'PDF'                         => 'PDF', +  'POS'                         => 'Punto de Venta', +  'POS Invoice'                 => 'Factura Punto de Venta', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Packing Lists'               => 'Lista de empaque', +  'Paid'                        => 'Pagado', +  'Part'                        => 'Artículo', +  'Part Number'                 => 'Número parte', +  'Partnumber'                  => '', +  'Parts'                       => 'Artículos', +  'Parts Inventory'             => 'Inventario de artículos', +  'Password'                    => 'Contraseña', +  'Password changed!'           => '¡Contraseña cambiada!', +  'Password does not match!'    => '', +  'Passwords do not match!'     => '', +  'Payables'                    => 'Pagos', +  'Payment'                     => 'Pago', +  'Payment date missing!'       => 'No se encuentra la fecha de pago', +  'Payment posted!'             => '¡Pago registrado!', +  'Payments'                    => 'Vencimientos impagados', +  'Payroll Deduction'           => 'Deducciones Nómina', +  'Period'                      => '', +  'Pg Database Administration'  => 'Administración de la base de datos PostgreSQL', +  'PgPP Database Administration' => 'PgPP Database Administration', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Pick Lists'                  => 'Listas de Empaque', +  'Port'                        => 'Puerto', +  'Port missing!'               => 'No se ha definido  el puerto', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Posted!'                     => 'Agregado!', +  'Postscript'                  => 'Postscript', +  'Preferences'                 => 'Preferencias', +  'Preferences saved!'          => 'Preferencias guardadas', +  'Prepayment'                  => 'Prepago', +  'Price'                       => 'Precio', +  'Pricegroup'                  => 'Grupo de Precios', +  'Pricegroup deleted!'         => 'Grupo Borrado!', +  'Pricegroup missing!'         => 'Falta Grupo!', +  'Pricegroup saved!'           => 'Guardado!', +  'Pricegroups'                 => 'Grupos de Precios', +  'Pricelist'                   => '', +  'Print'                       => 'Imprimir', +  'Print and Post'              => '', +  'Print and Save'              => '', +  'Printed'                     => 'Impreso', +  'Printer'                     => 'Impresora', +  'Printing ... '               => 'Imprimiendo...', +  'Profit Center'               => 'Centro de Costo (Ingresos)', +  'Project'                     => 'Proyecto', +  'Project Description Translations' => 'Descripción Traducción del Proyecto', +  'Project Number'              => 'Número del Proyecto', +  'Project Number missing!'     => '¡Falta el número de proyecto!', +  'Project Transactions'        => 'Transacciones del Projecto', +  'Project deleted!'            => '¡Proyecto borrado!', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Project saved!'              => '¡Proyecto guardado ', +  'Projects'                    => 'Proyectos', +  'Purchase Order'              => 'Pedido', +  'Purchase Order Number'       => '', +  'Purchase Orders'             => 'Pedidos', +  'Qty'                         => 'Cantidad', +  'Quantity exceeds available units to stock!' => 'No hay esta cantidad disponible en el Inventario!', +  'Quarter'                     => '', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation '                  => '', +  'Quotation Date'              => 'Fecha de cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number'            => 'Número cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Quotation deleted!'          => 'Cotización borrado', +  'Quotations'                  => 'Cotizaciones', +  'R'                           => 'R', +  'RFQ'                         => 'Solicitar Cotización', +  'RFQ '                        => '', +  'RFQ Number'                  => 'Número de Cotización', +  'RFQs'                        => 'Cotizaciones solicitados', +  'ROP'                         => 'Tope de envio', +  'Rate'                        => 'Tarifa', +  'Rate missing!'               => 'Falta Tarifa!', +  'Recd'                        => 'Cobrado', +  'Receipt'                     => 'Recibo', +  'Receipt posted!'             => 'Recibo agregado', +  'Receipts'                    => 'Recibos', +  'Receivables'                 => 'Cobros', +  'Receive'                     => 'Recibir', +  'Receive Merchandise'         => 'Recibir mercancia', +  'Reconciliation'              => 'Reconciliación', +  'Reconciliation Report'       => 'Reporte de Reconciliación', +  'Record in'                   => 'Registrar en', +  'Reference'                   => 'Referencia', +  'Reference missing!'          => '¡Falta la referencia!', +  'Remaining'                   => 'Resto', +  'Remove'                      => 'Eliminar', +  'Remove Audit trails up to'   => 'Remover Rastro de Auditoría hasta', +  'Removed spoolfiles!'         => 'Archivos eliminados de la cola', +  'Removing marked entries from queue ...' => 'Removiendo entradas sellecionads de la cola...', +  'Report for'                  => 'Informe para', +  'Reports'                     => 'Informes', +  'Request for Quotation'       => 'Solicitar Cotización', +  'Request for Quotations'      => 'Solicitar Cotizaciones', +  'Required by'                 => 'Aceptado el', +  'Retained Earnings'           => 'Resultado del Ejercicio', +  'Role'                        => 'Función', +  'S'                           => 'S', +  'SIC'                         => 'SIC', +  'SIC deleted!'                => 'SIC borrado!', +  'SIC saved!'                  => 'SIC guardado!', +  'SKU'                         => 'SKU', +  'SSN'                         => '', +  'Sale'                        => 'Venta', +  'Sales'                       => 'Ventas', +  'Sales Invoice'               => 'Facturas de ventas', +  'Sales Invoice '              => '', +  'Sales Invoice Number'        => '', +  'Sales Invoice.'              => '', +  'Sales Invoices'              => 'Factura de venta', +  'Sales Order'                 => 'Presupuesto', +  'Sales Order Number'          => '', +  'Sales Orders'                => 'Presupuestos', +  'Sales Quotation Number'      => '', +  'Salesperson'                 => 'Vendedor', +  'Save'                        => 'Guardar', +  'Save Pricelist'              => '', +  'Save as new'                 => 'Guardar como nuevo', +  'Save to File'                => 'Guardar en un archivo', +  'Screen'                      => 'Pantalla', +  'Search'                      => 'Búsqueda', +  'Select'                      => 'Seleccionar', +  'Select Printer or Queue!'    => '', +  'Select all'                  => 'Guardar todo', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select payment'              => '', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Select txt, postscript or PDF!' => '', +  'Sell'                        => '', +  'Sell Price'                  => 'Precio de venta', +  'Send by E-Mail'              => 'Enviar por correo electrónico', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Serial Number'               => 'Número del Serial', +  'Service'                     => 'Servicio', +  'Service Items'               => 'Servicios', +  'Services'                    => 'Servicios', +  'Session Timeout'             => '', +  'Session expired!'            => '', +  'Setup Templates'             => 'Configurar plantillas', +  'Ship'                        => 'Envio', +  'Ship Merchandise'            => 'Enviar Mercancía', +  'Ship to'                     => 'Destino', +  'Ship via'                    => 'Envio por', +  'Shipping'                    => 'Envio', +  'Shipping Address'            => 'Dirección del envio', +  'Shipping Date'               => 'Fecha del Envio', +  'Shipping Date missing!'      => 'Falta Fecha del Envio', +  'Shipping Point'              => 'Destino', +  'Short'                       => 'Corto', +  'Signature'                   => 'Firma', +  'Source'                      => 'Fuente', +  'Spoolfile'                   => 'Cola de Impresión', +  'Standard'                    => 'Estándard', +  'Standard Industrial Codes'   => 'Standard Industrial Codes (Código estandardizado)', +  'Startdate'                   => 'Fecha inicial', +  'State'                       => '', +  'State/Province'              => 'Departamento', +  'Statement'                   => 'Estado de cuenta', +  'Statement Balance'           => 'Balance de cuenta', +  'Statement sent to'           => 'Estado de cuenta enviado a', +  'Statements sent to printer!' => '¡Estado de cuenta enviado a la impresora!', +  'Stock'                       => 'Inventario', +  'Stock Assembly'              => 'Inventariar compuesto', +  'Stylesheet'                  => 'Hoja de estilo', +  'Sub-contract GIFI'           => 'Sub-Contrato PUC', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Summary'                     => 'Résumen', +  'Supervisor'                  => '', +  'System'                      => 'Sistema', +  'System Defaults'             => 'Predeterminados del Sistema', +  'Tax'                         => 'Impuesto', +  'Tax Accounts'                => 'Cuentas de impuestos', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'Tax Number'                  => 'Numero de Impuesto', +  'Tax Number / SSN'            => 'NIT./CC./CE.', +  'Tax collected'               => 'Impuestos cobrados', +  'Tax paid'                    => 'Impuestos pagados', +  'Taxable'                     => 'Impuestos gravables', +  'Template saved!'             => '¡Plantilla guardada!', +  'Templates'                   => 'Plantillas', +  'Terms'                       => 'Crédito', +  'Text Templates'              => 'Plantillas de Texto', +  'The following Datasets are not in use and can be deleted' => 'Las siguientes bases de datos no están en uso y se pueden borrar', +  'The following Datasets need to be updated' => 'Es necesario actualizar las siguientes bases de datos', +  'This is a preliminary check for existing sources. Nothing will be created or deleted at this stage!' => 'Esta es una verificacion preliminar de fuentes existentes.  No se creará ni borrará nada durante esta etapa', +  'Till'                        => 'Caja', +  'To'                          => 'Hasta', +  '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.' => 'Para añadir un usuario a un grupo, edite un nombre, cambie el nombre de usuario (login) y guarde los cambios.  Un nuevo usuario, con las mismas propiedades se guardará bajo el nuevo nombre de usuario (login).', +  'Top Level'                   => 'Nivel superior', +  'Total'                       => 'Total', +  'Trade Discount'              => 'Descuento', +  'Transaction'                 => '', +  'Transaction Date missing!'   => 'No se ha definido la fecha de la transacción', +  'Transaction deleted!'        => '¡Transacción borrada!', +  'Transaction posted!'         => '¡Transacción registrada!', +  'Transaction reversal enforced for all dates' => 'Se ha forzado la anulación de las transacciones para todas las fechas', +  'Transaction reversal enforced up to' => 'Se ha forzado la anulación de las transacciones hasta', +  'Transactions'                => 'Impagados', +  'Transfer'                    => 'Transferencia', +  'Transfer Inventory'          => 'Transferir Inventario', +  'Transfer to'                 => 'Transferir a', +  'Translation'                 => 'Traducción', +  'Translation deleted!'        => 'Traducción Borrada!', +  'Translation not on file!'    => '', +  'Translations'                => 'Traducciones', +  'Translations saved!'         => 'Guardado', +  'Trial Balance'               => 'Balance de comprobación', +  'Type of Business'            => 'Clase de Negocio', +  'Unit'                        => 'Unidad', +  'Unit of measure'             => 'Unidad de medida', +  'Unlock System'               => 'Unlock System', +  'Update'                      => 'Actualizar', +  'Update Dataset'              => 'Actualizar base de datos', +  'Updated'                     => '¡Actualizado!', +  'Upgrading to Version'        => 'Actulaizando a versión', +  'Use Templates'               => 'Plantillas de usuarios', +  'User'                        => 'Usuario', +  'User deleted!'               => '¡Usuario borrado!', +  'User saved!'                 => '¡Usuario guardado!', +  'Valid until'                 => 'Válido hasta', +  'Vendor'                      => 'Proveedor', +  'Vendor History'              => 'Historial Proveedor', +  'Vendor Invoice'              => 'Factura de compras', +  'Vendor Invoice '             => '', +  'Vendor Invoice Number'       => '', +  'Vendor Invoice.'             => '', +  'Vendor Invoices'             => 'Facturas de Proveedor', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor deleted!'             => '¡Proveedor borrado!', +  'Vendor missing!'             => '¡Falta el proveedor!', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'Vendor saved!'               => '¡Proveedor guardado!', +  'Vendors'                     => 'Proveedores', +  'Version'                     => 'Versión', +  'Warehouse'                   => 'Bodega', +  'Warehouse deleted!'          => 'Bodega borrado', +  'Warehouse saved!'            => 'Bodegas guardado', +  'Warehouses'                  => 'Bodegas', +  'Warning!'                    => 'Alerta!', +  'Weight'                      => 'Peso', +  'Weight Unit'                 => 'Unidad de peso', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'Work Orders'                 => 'Ordenes de Trabajo', +  'Work Phone'                  => 'Teléfono (Oficina)', +  'Year'                        => '', +  'Yearend'                     => 'Fin del Año', +  'Yearend date missing!'       => 'Falta fecha del Fin del Año', +  'Yearend posted!'             => 'Fin del Año guardado!', +  'Yearend posting failed!'     => 'No se puede guardar Fin del Año', +  'Yes'                         => 'Si', +  'You are logged out'          => '', +  'You did not enter a name!'   => 'No ha introducido el nombre', +  'You must enter a host and port for local and remote connections!' => 'Debe introducir una máquina servidor de bases de datos y un puerto para conexiones locales y remotas', +  'Zip/Postal Code'             => '', +  'account cannot be set to any other type of account' => 'No se puede cambiar a otro tipo de cuenta', +  'as at'                       => 'al', +  'days'                        => 'días', +  'does not exist'              => 'no existe', +  'done'                        => 'hecho', +  'ea'                          => 'unid.', +  'for Period'                  => 'para el periodo', +  'is already a member!'        => 'ya es actualmente un miembro', +  'is not a member!'            => 'no es miembro', +  'localhost'                   => 'máquina local', +  'locked!'                     => 'Bloqueado!', +  'posted!'                     => 'Guardado', +  'sent'                        => 'Enviado', +  'successfully created!'       => 'creado satisfactoriamente', +  'successfully deleted!'       => 'borrado satisfactoriamente', +  'website'                     => 'sitio web', +}; + +1; diff --git a/sql-ledger/locale/es_iso/am b/sql-ledger/locale/es_iso/am new file mode 100644 index 000000000..7e409e26b --- /dev/null +++ b/sql-ledger/locale/es_iso/am @@ -0,0 +1,249 @@ +$self{texts} = { +  'AP'                          => 'Cartera de pagos', +  'AR'                          => 'Cartera de cobros', +  'About'                       => 'Acerca de', +  'Account'                     => 'Cuenta', +  'Account Number'              => 'Número de cuenta', +  'Account Number missing!'     => 'No se ha definido el número de la cuenta', +  'Account Type'                => 'Categoría de cuenta', +  'Account Type missing!'       => 'No se ha definido el tipo de la cuenta', +  'Account deleted!'            => '¡Cuenta borraba!', +  'Account does not exist!'     => 'Cuenta no existe!', +  'Account saved!'              => '¡Cuenta guardada!', +  'Accounting Menu'             => 'Menú general', +  'Accrual'                     => 'Acumulado', +  'Activate Audit trails'       => 'Activar Rastro Auditoría', +  'Add Account'                 => 'Añadir cuenta', +  'Add Business'                => 'Agregar Empresa', +  'Add Department'              => 'Agregar Centro de Costos', +  'Add GIFI'                    => 'Añadir código GIFI', +  'Add Language'                => 'Agregar Idioma', +  'Add SIC'                     => 'Agregar SIC', +  'Add Warehouse'               => 'Agregar Bodega', +  'Address'                     => 'Dirección', +  'Asset'                       => 'Activo', +  'Audit Control'               => 'Control de auditoría', +  'Audit trail removed up to'   => 'Rastro de Auditoría removido hasta', +  'Audit trails disabled'       => 'Rastro de Auditoría desactivado', +  'Audit trails enabled'        => 'Rastro de Auditoría activado', +  'Backup sent to'              => 'Copia de seguridad enviada a', +  'Books are open'              => 'Los libros están abiertos', +  'Business Number'             => 'Numero de negocio', +  'Business deleted!'           => 'Empresa eliminada!', +  'Business saved!'             => 'Empresa guardada!', +  'COGS'                        => 'Costo de los artículos', +  'Cannot delete account!'      => '¡No se puede borrar la cuenta!', +  'Cannot delete default account!' => 'No se puede borrar la cuenta por omisión', +  'Cannot save account!'        => '¡No se puede guardar la cuenta!', +  'Cannot save defaults!'       => 'No puedo guardar preferencias!', +  'Cannot save preferences!'    => '¡No se puede guardar las preferencias!', +  'Cannot set account for more than one of AR, AP or IC' => 'Tiene que seleccionar cuenta!', +  'Cannot set multiple options for' => 'No puedo crear multiples opciones para', +  'Cannot set multiple options for Parts Inventory' => 'No puedo crear multiples opciones para Inventario', +  'Cannot set multiple options for Service Items' => 'No puedo crear multiples opciones para Servicios', +  'Cash'                        => 'Efectivo', +  'Character Set'               => 'Conjunto de caracteres', +  'Chart of Accounts'           => 'Cuadro de cuentas', +  'Close Books up to'           => 'Cerrar los libros hasta', +  'Code'                        => 'Código', +  'Code missing!'               => 'Falta código', +  'Company'                     => 'Compañía', +  'Continue'                    => 'Continuar', +  'Contra'                      => 'Cuentas del Orden', +  'Copy to COA'                 => 'Copiar al catálogo de cuentas', +  'Cost Center'                 => 'Centro de Costos (Gastos)', +  'Credit'                      => 'Crédito', +  'Customer Number'             => 'Número del cliente', +  'Database Host'               => 'Máquina servidor de base de datos', +  'Dataset'                     => 'Base de datos', +  'Date Format'                 => 'Formato de fecha', +  'Debit'                       => 'Débito', +  'Defaults saved!'             => 'Guardado!', +  'Delete'                      => 'Borrar', +  'Delete Account'              => 'Borrar cuenta', +  'Department deleted!'         => 'Centro de Costos borrado!', +  'Department saved!'           => 'Centro de Costos guardado!', +  'Departments'                 => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Description missing!'        => 'Falta Descripción', +  'Discount'                    => 'Descuento', +  'Dropdown Limit'              => 'Límite de efectivo', +  'E-mail'                      => 'Correo electrónico', +  'Edit'                        => 'Editar', +  'Edit Account'                => 'Editar cuenta', +  'Edit Business'               => 'Editar empresa', +  'Edit Department'             => 'Editar Centro de Costos', +  'Edit GIFI'                   => 'Editar GIFI', +  'Edit Language'               => 'Editar Idioma', +  'Edit Preferences for'        => 'Editar preferencias de', +  'Edit SIC'                    => 'Editar SIC', +  'Edit Template'               => 'Editar plantilla', +  'Edit Warehouse'              => 'Editar Bodega', +  'Enforce transaction reversal for all dates' => 'Forzar la anulación de las transacciones para todas las fechas', +  'Enter up to 3 letters separated by a colon (i.e CAD:USD:EUR) for your native and foreign currencies' => 'Introduzca hasta 3 letras separadas por dos puntos (p.e. CAD:USD:EUR) para las monedas locales y las extranjeras', +  'Equity'                      => 'Balance', +  'Expense'                     => 'Gastos', +  'Expense Account'             => 'Cuenta de gastos', +  'Expense/Asset'               => 'Gastos/Activo', +  'Fax'                         => 'Fax', +  'Foreign Exchange Gain'       => 'Ganancia en moneda extranjera', +  'Foreign Exchange Loss'       => 'Pérdida en moneda extranjera', +  'GIFI'                        => 'Código GIFI', +  'GIFI deleted!'               => '¡Borrado el código GIFI!', +  'GIFI missing!'               => 'No se ha definido el código GIFI', +  'GIFI saved!'                 => '¡Guardado el código GIFI!', +  'Heading'                     => 'Encabezado', +  'Include in drop-down menus'  => 'Incluir en menúes desplegables:', +  'Include this account on the customer/vendor forms to flag customer/vendor as taxable?' => 'Mostrar esta cuenta en los formularios de cliente/proveedor para seleccionar si hay que aplicar impuestos al cliente/proveedor?', +  'Income'                      => 'Ingreso', +  'Income Account'              => 'Cuenta de Ingreso', +  'Inventory'                   => 'Inventario', +  'Inventory Account'           => 'Cuenta de inventario', +  'Is this a summary account to record' => '¿Es esta una cuenta de resumen a registrar?', +  'Labor/Overhead'              => 'Mano de Obra', +  'Language'                    => 'Lenguaje', +  'Language deleted!'           => 'Idioma Borrada!', +  'Language saved!'             => 'Idioma Guardada!', +  'Languages'                   => 'Idiomas', +  'Last Numbers & Default Accounts' => 'Últimos números y cuentas por omisión', +  'Liability'                   => 'Pasivo', +  'Licensed to'                 => 'Adaptado para', +  'Link'                        => 'Enlaces', +  'Menu Width'                  => 'Ancho del Menu', +  'Method'                      => 'Metódo', +  'Name'                        => 'Nombre', +  'No'                          => 'No', +  'No email address for'        => 'Falta la dirección de correo electrónico de', +  'Number'                      => 'Número', +  'Number Format'               => 'Formato de número', +  'Parts Inventory'             => 'Inventario de artículos', +  'Password'                    => 'Contraseña', +  'Payables'                    => 'Pagos', +  'Payment'                     => 'Pago', +  'Phone'                       => 'Teléfono', +  'Preferences saved!'          => 'Preferencias guardadas', +  'Printer'                     => 'Impresora', +  'Profit Center'               => 'Centro de Costo (Ingresos)', +  'RFQ Number'                  => 'Número de Cotización', +  'Rate'                        => 'Tarifa', +  'Receivables'                 => 'Cobros', +  'Reference'                   => 'Referencia', +  'Remove Audit trails up to'   => 'Remover Rastro de Auditoría hasta', +  'Retained Earnings'           => 'Resultado del Ejercicio', +  'SIC deleted!'                => 'SIC borrado!', +  'SIC saved!'                  => 'SIC guardado!', +  'Save'                        => 'Guardar', +  'Save as new'                 => 'Guardar como nuevo', +  'Service Items'               => 'Servicios', +  'Signature'                   => 'Firma', +  'Standard Industrial Codes'   => 'Standard Industrial Codes (Código estandardizado)', +  'Stylesheet'                  => 'Hoja de estilo', +  'System Defaults'             => 'Predeterminados del Sistema', +  'Tax'                         => 'Impuesto', +  'Tax Accounts'                => 'Cuentas de impuestos', +  'Template saved!'             => '¡Plantilla guardada!', +  'Transaction reversal enforced for all dates' => 'Se ha forzado la anulación de las transacciones para todas las fechas', +  'Transaction reversal enforced up to' => 'Se ha forzado la anulación de las transacciones hasta', +  'Type of Business'            => 'Clase de Negocio', +  'User'                        => 'Usuario', +  'Vendor Number'               => 'Código Vendedor', +  'Version'                     => 'Versión', +  'Warehouse deleted!'          => 'Bodega borrado', +  'Warehouse saved!'            => 'Bodegas guardado', +  'Warehouses'                  => 'Bodegas', +  'Weight Unit'                 => 'Unidad de peso', +  'Yearend'                     => 'Fin del Año', +  'Yearend date missing!'       => 'Falta fecha del Fin del Año', +  'Yearend posted!'             => 'Fin del Año guardado!', +  'Yearend posting failed!'     => 'No se puede guardar Fin del Año', +  'Yes'                         => 'Si', +  'account cannot be set to any other type of account' => 'No se puede cambiar a otro tipo de cuenta', +  'localhost'                   => 'máquina local', +}; + +$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', +  'añadir_cuenta'               => 'add_account', +  'agregar_empresa'             => 'add_business', +  'agregar_centro_de_costos'    => 'add_department', +  'agregar_idioma'              => 'add_language', +  'agregar_sic'                 => 'add_sic', +  'agregar_bodega'              => 'add_warehouse', +  'continuar'                   => 'continue', +  'copiar_al_catálogo_de_cuentas' => 'copy_to_coa', +  'borrar'                      => 'delete', +  'editar'                      => 'edit', +  'editar_cuenta'               => 'edit_account', +  'guardar'                     => 'save', +  'guardar_como_nuevo'          => 'save_as_new', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ap b/sql-ledger/locale/es_iso/ap new file mode 100644 index 000000000..e768575da --- /dev/null +++ b/sql-ledger/locale/es_iso/ap @@ -0,0 +1,163 @@ +$self{texts} = { +  'AP Outstanding'              => 'Impagados Proveedores', +  'AP Transaction'              => 'Gestión se pago', +  'AP Transactions'             => 'Gestiones de pagos', +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Address'                     => 'Dirección', +  'Amount'                      => 'Total', +  'Amount Due'                  => 'Cantidad adeudada', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Transaction' => '¿Está seguro de que desea borrar la transacción?', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Cannot delete transaction!'  => '¡No se puede borrar la transacción!', +  'Cannot post payment for a closed period!' => '¡No se puede registrar un pago en un periodo ya cerrado!', +  'Cannot post transaction for a closed period!' => '¡No se puede registrar una transacción para un periodo cerrado', +  'Cannot post transaction!'    => '¡No se puede registrar la transacción', +  'Check'                       => 'Cheque', +  'Closed'                      => 'Cerrado', +  'Confirm!'                    => 'Confirmar', +  'Continue'                    => 'Continuar', +  'Credit Limit'                => 'Limite de credito', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Current'                     => 'Actual', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Date Paid'                   => 'Fecha de pago', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Due Date'                    => 'Fecha de vencimiento', +  'Due Date missing!'           => 'Falta la fecha de vencimiento', +  'Employee'                    => 'Colaborador/Empleado', +  'Exch'                        => 'Cambio', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate for payment missing!' => '¡Falta la tasa de cambio para el pago!', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'ID'                          => 'ID', +  'Include in Report'           => 'Incluir en informe', +  'Invoice'                     => 'Factura', +  'Invoice Date'                => 'Fecha de factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Manager'                     => 'Administrador', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Notes'                       => 'Notas', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Open'                        => 'Abierto', +  'Order'                       => 'Orden', +  'Order Number'                => 'Número de orden', +  'PDF'                         => 'PDF', +  'Paid'                        => 'Pagado', +  'Payment date missing!'       => 'No se encuentra la fecha de pago', +  'Payments'                    => 'Vencimientos impagados', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Postscript'                  => 'Postscript', +  'Print'                       => 'Imprimir', +  'Printed'                     => 'Impreso', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Receipt'                     => 'Recibo', +  'Remaining'                   => 'Resto', +  'Screen'                      => 'Pantalla', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Source'                      => 'Fuente', +  'Subtotal'                    => 'Subtotal', +  'Tax'                         => 'Impuesto', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Transaction deleted!'        => '¡Transacción borrada!', +  'Transaction posted!'         => '¡Transacción registrada!', +  'Update'                      => 'Actualizar', +  'Vendor'                      => 'Proveedor', +  'Vendor missing!'             => '¡Falta el proveedor!', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'Yes'                         => 'Si', +}; + +$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', +  'gestión_se_pago'             => 'ap_transaction', +  'add_ap_transaction'          => 'add_ap_transaction', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'edit_ap_transaction'         => 'edit_ap_transaction', +  'registrar'                   => 'post', +  'registrar_como_nuevo'        => 'post_as_new', +  'imprimir'                    => 'print', +  'print_and_post'              => 'print_and_post', +  'actualizar'                  => 'update', +  'vendor_invoice.'             => 'vendor_invoice.', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ar b/sql-ledger/locale/es_iso/ar new file mode 100644 index 000000000..265366c2e --- /dev/null +++ b/sql-ledger/locale/es_iso/ar @@ -0,0 +1,164 @@ +$self{texts} = { +  'AR Outstanding'              => 'Impagados Cartera', +  'AR Transaction'              => 'Gestión de cobro', +  'AR Transactions'             => 'Gestiones de cobros', +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Address'                     => 'Dirección', +  'Amount'                      => 'Total', +  'Amount Due'                  => 'Cantidad adeudada', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Transaction' => '¿Está seguro de que desea borrar la transacción?', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Cannot delete transaction!'  => '¡No se puede borrar la transacción!', +  'Cannot post payment for a closed period!' => '¡No se puede registrar un pago en un periodo ya cerrado!', +  'Cannot post transaction for a closed period!' => '¡No se puede registrar una transacción para un periodo cerrado', +  'Cannot post transaction!'    => '¡No se puede registrar la transacción', +  'Check'                       => 'Cheque', +  'Closed'                      => 'Cerrado', +  'Confirm!'                    => 'Confirmar', +  'Continue'                    => 'Continuar', +  'Credit Limit'                => 'Limite de credito', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Current'                     => 'Actual', +  'Customer'                    => 'Cliente', +  'Customer missing!'           => '¡Falta el cliente!', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Date Paid'                   => 'Fecha de pago', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Due Date'                    => 'Fecha de vencimiento', +  'Due Date missing!'           => 'Falta la fecha de vencimiento', +  'Exch'                        => 'Cambio', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate for payment missing!' => '¡Falta la tasa de cambio para el pago!', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'ID'                          => 'ID', +  'Include in Report'           => 'Incluir en informe', +  'Invoice'                     => 'Factura', +  'Invoice Date'                => 'Fecha de factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Manager'                     => 'Administrador', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Notes'                       => 'Notas', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Open'                        => 'Abierto', +  'Order'                       => 'Orden', +  'Order Number'                => 'Número de orden', +  'PDF'                         => 'PDF', +  'Paid'                        => 'Pagado', +  'Payment date missing!'       => 'No se encuentra la fecha de pago', +  'Payments'                    => 'Vencimientos impagados', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Postscript'                  => 'Postscript', +  'Print'                       => 'Imprimir', +  'Printed'                     => 'Impreso', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Receipt'                     => 'Recibo', +  'Remaining'                   => 'Resto', +  'Salesperson'                 => 'Vendedor', +  'Screen'                      => 'Pantalla', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Ship via'                    => 'Envio por', +  'Shipping Point'              => 'Destino', +  'Source'                      => 'Fuente', +  'Subtotal'                    => 'Subtotal', +  'Tax'                         => 'Impuesto', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'Till'                        => 'Caja', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Transaction deleted!'        => '¡Transacción borrada!', +  'Transaction posted!'         => '¡Transacción registrada!', +  'Update'                      => 'Actualizar', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'Yes'                         => 'Si', +}; + +$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', +  'gestión_de_cobro'            => 'ar_transaction', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'registrar'                   => 'post', +  'registrar_como_nuevo'        => 'post_as_new', +  'imprimir'                    => 'print', +  'print_and_post'              => 'print_and_post', +  'sales_invoice.'              => 'sales_invoice.', +  'actualizar'                  => 'update', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/arap b/sql-ledger/locale/es_iso/arap new file mode 100644 index 000000000..578e11367 --- /dev/null +++ b/sql-ledger/locale/es_iso/arap @@ -0,0 +1,30 @@ +$self{texts} = { +  'Address'                     => 'Dirección', +  'Continue'                    => 'Continuar', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Description'                 => 'Descripción', +  'Number'                      => 'Número', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +}; + +$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_', +  'continuar'                   => 'continue', +}; + +1; diff --git a/sql-ledger/locale/es_iso/arapprn b/sql-ledger/locale/es_iso/arapprn new file mode 100644 index 000000000..165c34224 --- /dev/null +++ b/sql-ledger/locale/es_iso/arapprn @@ -0,0 +1,33 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Amount'                      => 'Total', +  'Check'                       => 'Cheque', +  'Continue'                    => 'Continuar', +  'Date'                        => 'Fecha', +  'Memo'                        => 'Memo', +  'PDF'                         => 'PDF', +  'Postscript'                  => 'Postscript', +  'Printed'                     => 'Impreso', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Receipt'                     => 'Recibo', +  'Screen'                      => 'Pantalla', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Source'                      => 'Fuente', +}; + +$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', +  'continuar'                   => 'continue', +}; + +1; diff --git a/sql-ledger/locale/es_iso/bp b/sql-ledger/locale/es_iso/bp new file mode 100644 index 000000000..b48fc3145 --- /dev/null +++ b/sql-ledger/locale/es_iso/bp @@ -0,0 +1,63 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Are you sure you want to remove the marked entries from the queue?' => 'Seguro que quieres remover las entradas seleccionadas de la cola?', +  'Bin Lists'                   => 'Listas Empaque', +  'Cannot remove files!'        => 'No puedo borrar archivos!', +  'Checks'                      => 'Cheques', +  'Confirm!'                    => 'Confirmar', +  'Continue'                    => 'Continuar', +  'Current'                     => 'Actual', +  'Customer'                    => 'Cliente', +  'Date'                        => 'Fecha', +  'From'                        => 'Desde', +  'Invoice'                     => 'Factura', +  'Invoice Number'              => 'Número de factura', +  'Marked entries printed!'     => 'Selección impresa', +  'Order'                       => 'Orden', +  'Order Number'                => 'Número de orden', +  'Packing Lists'               => 'Lista de empaque', +  'Pick Lists'                  => 'Listas de Empaque', +  'Print'                       => 'Imprimir', +  'Printing ... '               => 'Imprimiendo...', +  'Purchase Orders'             => 'Pedidos', +  'Quotation'                   => 'Cotización', +  'Quotation Number'            => 'Número cotización', +  'Quotations'                  => 'Cotizaciones', +  'RFQs'                        => 'Cotizaciones solicitados', +  'Receipts'                    => 'Recibos', +  'Reference'                   => 'Referencia', +  'Remove'                      => 'Eliminar', +  'Removed spoolfiles!'         => 'Archivos eliminados de la cola', +  'Removing marked entries from queue ...' => 'Removiendo entradas sellecionads de la cola...', +  'Sales Invoices'              => 'Factura de venta', +  'Sales Orders'                => 'Presupuestos', +  'Select all'                  => 'Guardar todo', +  'Spoolfile'                   => 'Cola de Impresión', +  'To'                          => 'Hasta', +  'Vendor'                      => 'Proveedor', +  'Work Orders'                 => 'Ordenes de Trabajo', +  'Yes'                         => 'Si', +  'done'                        => 'hecho', +}; + +$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', +  'continuar'                   => 'continue', +  'imprimir'                    => 'print', +  'eliminar'                    => 'remove', +  'guardar_todo'                => 'select_all', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ca b/sql-ledger/locale/es_iso/ca new file mode 100644 index 000000000..751ddb38c --- /dev/null +++ b/sql-ledger/locale/es_iso/ca @@ -0,0 +1,54 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Balance'                     => 'Balance', +  'Chart of Accounts'           => 'Cuadro de cuentas', +  'Credit'                      => 'Crédito', +  'Current'                     => 'Actual', +  'Date'                        => 'Fecha', +  'Debit'                       => 'Débito', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'GIFI'                        => 'Código GIFI', +  'Include in Report'           => 'Incluir en informe', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'List Transactions'           => 'Listar transacciones', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Project Number'              => 'Número del Proyecto', +  'R'                           => 'R', +  'Reference'                   => 'Referencia', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Subtotal'                    => 'Subtotal', +  'To'                          => 'Hasta', +}; + +$self{subs} = { +  'ca_subtotal'                 => 'ca_subtotal', +  'chart_of_accounts'           => 'chart_of_accounts', +  'list'                        => 'list', +  'list_transactions'           => 'list_transactions', +  'listar_transacciones'        => 'list_transactions', +}; + +1; diff --git a/sql-ledger/locale/es_iso/cp b/sql-ledger/locale/es_iso/cp new file mode 100644 index 000000000..69d47dad1 --- /dev/null +++ b/sql-ledger/locale/es_iso/cp @@ -0,0 +1,84 @@ +$self{texts} = { +  'AP'                          => 'Cartera de pagos', +  'AR'                          => 'Cartera de cobros', +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Address'                     => 'Dirección', +  'All'                         => 'Todos', +  'Amount'                      => 'Total', +  'Amount Due'                  => 'Cantidad adeudada', +  'Cannot post Payment!'        => 'No puedo guardar pago', +  'Cannot post Receipt!'        => 'No puedo guardar recibo', +  'Cannot process payment for a closed period!' => '¡No se puede procesar un pago de un periodo ya cerrado!', +  'Continue'                    => 'Continuar', +  'Currency'                    => 'Moneda', +  'Customer'                    => 'Cliente', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Date missing!'               => '¡Falta la fecha!', +  'Department'                  => 'Centro de Costos', +  'Deposit'                     => 'Depósito', +  'Description'                 => 'Descripción', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Invoice'                     => 'Factura', +  'Invoices'                    => 'Facturas', +  'Memo'                        => 'Memo', +  'Nothing outstanding for '    => 'Nada en Cartera para', +  'Number'                      => 'Número', +  'PDF'                         => 'PDF', +  'Payment'                     => 'Pago', +  'Payment posted!'             => '¡Pago registrado!', +  'Post'                        => 'Registrar', +  'Postscript'                  => 'Postscript', +  'Prepayment'                  => 'Prepago', +  'Print'                       => 'Imprimir', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Queue'                       => 'Cola', +  'Receipt'                     => 'Recibo', +  'Receipt posted!'             => 'Recibo agregado', +  'Screen'                      => 'Pantalla', +  'Select'                      => 'Seleccionar', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Source'                      => 'Fuente', +  'Update'                      => 'Actualizar', +  'Vendor'                      => 'Proveedor', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +}; + +$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_', +  'continuar'                   => 'continue', +  'registrar'                   => 'post', +  'imprimir'                    => 'print', +  'actualizar'                  => 'update', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ct b/sql-ledger/locale/es_iso/ct new file mode 100644 index 000000000..44acff0ed --- /dev/null +++ b/sql-ledger/locale/es_iso/ct @@ -0,0 +1,171 @@ +$self{texts} = { +  'AP Transaction'              => 'Gestión se pago', +  'AP Transactions'             => 'Gestiones de pagos', +  'AR Transaction'              => 'Gestión de cobro', +  'AR Transactions'             => 'Gestiones de cobros', +  'Accounting Menu'             => 'Menú general', +  'Add Customer'                => 'Añadir cliente', +  'Add Vendor'                  => 'Añadir proveedor', +  'Address'                     => 'Dirección', +  'All'                         => 'Todos', +  'Amount'                      => 'Total', +  'BIC'                         => 'BIC', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Break'                       => 'Pausa', +  'Cannot delete customer!'     => '¡No se puede borrar el cliente!', +  'Cannot delete vendor!'       => '¡No se puede borrar el vendedor!', +  'Cc'                          => 'Cc', +  'City'                        => 'Ciudad', +  'Closed'                      => 'Cerrado', +  'Company Name'                => 'Nombre de la empresa', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Cost'                        => 'Costo', +  'Country'                     => 'País', +  'Credit Limit'                => 'Limite de credito', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Customer History'            => 'Historial del Cliente', +  'Customer Number'             => 'Número del cliente', +  'Customer deleted!'           => '¡Cliente borrado!', +  'Customer saved!'             => '¡Cliente guardado!', +  'Customers'                   => 'Clientes', +  'Delete'                      => 'Borrar', +  'Delivery Date'               => 'Fecha de entrega', +  'Description'                 => 'Descripción', +  'Detail'                      => 'Detalle', +  'Discount'                    => 'Descuento', +  'E-mail'                      => 'Correo electrónico', +  'Edit Customer'               => 'Editar Cliente', +  'Edit Vendor'                 => 'Editar Proveedor', +  'Employee'                    => 'Colaborador/Empleado', +  'Enddate'                     => 'Fecha final', +  'Fax'                         => 'Fax', +  'From'                        => 'Desde', +  'GIFI'                        => 'Código GIFI', +  'Group'                       => 'Grupo', +  'IBAN'                        => 'IBAN', +  'ID'                          => 'ID', +  'Include in Report'           => 'Incluir en informe', +  'Invoice'                     => 'Factura', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Language'                    => 'Lenguaje', +  'Leadtime'                    => 'Tiempo de Entrega', +  'Manager'                     => 'Administrador', +  'Name'                        => 'Nombre', +  'Name missing!'               => '¡Falta el nombre!', +  'Notes'                       => 'Notas', +  'Number'                      => 'Número', +  'Open'                        => 'Abierto', +  'Order'                       => 'Orden', +  'Orphaned'                    => 'Huérfano', +  'Part Number'                 => 'Número parte', +  'Phone'                       => 'Teléfono', +  'Pricegroup'                  => 'Grupo de Precios', +  'Project Number'              => 'Número del Proyecto', +  'Purchase Order'              => 'Pedido', +  'Purchase Orders'             => 'Pedidos', +  'Qty'                         => 'Cantidad', +  'Quotation'                   => 'Cotización', +  'Quotations'                  => 'Cotizaciones', +  'RFQ'                         => 'Solicitar Cotización', +  'Request for Quotations'      => 'Solicitar Cotizaciones', +  'SIC'                         => 'SIC', +  'SKU'                         => 'SKU', +  'Sales Invoice'               => 'Facturas de ventas', +  'Sales Invoices'              => 'Factura de venta', +  'Sales Order'                 => 'Presupuesto', +  'Sales Orders'                => 'Presupuestos', +  'Salesperson'                 => 'Vendedor', +  'Save'                        => 'Guardar', +  'Search'                      => 'Búsqueda', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Sell Price'                  => 'Precio de venta', +  'Serial Number'               => 'Número del Serial', +  'Shipping Address'            => 'Dirección del envio', +  'Startdate'                   => 'Fecha inicial', +  'State/Province'              => 'Departamento', +  'Sub-contract GIFI'           => 'Sub-Contrato PUC', +  'Subtotal'                    => 'Subtotal', +  'Summary'                     => 'Résumen', +  'Tax'                         => 'Impuesto', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'Tax Number'                  => 'Numero de Impuesto', +  'Tax Number / SSN'            => 'NIT./CC./CE.', +  'Taxable'                     => 'Impuestos gravables', +  'Terms'                       => 'Crédito', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Type of Business'            => 'Clase de Negocio', +  'Unit'                        => 'Unidad', +  'Update'                      => 'Actualizar', +  'Vendor History'              => 'Historial Proveedor', +  'Vendor Invoice'              => 'Factura de compras', +  'Vendor Invoices'             => 'Facturas de Proveedor', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor deleted!'             => '¡Proveedor borrado!', +  'Vendor saved!'               => '¡Proveedor guardado!', +  'Vendors'                     => 'Proveedores', +  'days'                        => 'días', +}; + +$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', +  'gestión_se_pago'             => 'ap_transaction', +  'gestión_de_cobro'            => 'ar_transaction', +  'añadir_cliente'              => 'add_customer', +  'añadir_proveedor'            => 'add_vendor', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'pricelist'                   => 'pricelist', +  'pedido'                      => 'purchase_order', +  'cotización'                  => 'quotation', +  'solicitar_cotización'        => 'rfq', +  'facturas_de_ventas'          => 'sales_invoice', +  'presupuesto'                 => 'sales_order', +  'guardar'                     => 'save', +  'save_pricelist'              => 'save_pricelist', +  'actualizar'                  => 'update', +  'factura_de_compras'          => 'vendor_invoice', +}; + +1; diff --git a/sql-ledger/locale/es_iso/gl b/sql-ledger/locale/es_iso/gl new file mode 100644 index 000000000..89c777c71 --- /dev/null +++ b/sql-ledger/locale/es_iso/gl @@ -0,0 +1,136 @@ +$self{texts} = { +  'AP Transaction'              => 'Gestión se pago', +  'AR Transaction'              => 'Gestión de cobro', +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Add Cash Transfer Transaction' => 'Agregar transacción', +  'Add General Ledger Transaction' => 'Añadir transacción al libro mayor general', +  'Address'                     => 'Dirección', +  'All'                         => 'Todos', +  'Amount'                      => 'Total', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Transaction' => '¿Está seguro de que desea borrar la transacción?', +  'Asset'                       => 'Activo', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Balance'                     => 'Balance', +  'Cannot delete transaction!'  => '¡No se puede borrar la transacción!', +  'Cannot post transaction for a closed period!' => '¡No se puede registrar una transacción para un periodo cerrado', +  'Cannot post transaction!'    => '¡No se puede registrar la transacción', +  'Confirm!'                    => 'Confirmar', +  'Continue'                    => 'Continuar', +  'Contra'                      => 'Cuentas del Orden', +  'Credit'                      => 'Crédito', +  'Current'                     => 'Actual', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Debit'                       => 'Débito', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Edit Cash Transfer Transaction' => 'Editar Transacción en Effectivo', +  'Edit General Ledger Transaction' => 'Editar transacción del libro mayor general', +  'Equity'                      => 'Balance', +  'Expense'                     => 'Gastos', +  'FX'                          => 'TC', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'GIFI'                        => 'Código GIFI', +  'GL Transaction'              => 'Transacción en el libro mayor', +  'General Ledger'              => 'Libro mayor general', +  'ID'                          => 'ID', +  'Include in Report'           => 'Incluir en informe', +  'Income'                      => 'Ingreso', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Liability'                   => 'Pasivo', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Notes'                       => 'Notas', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Out of balance transaction!' => 'Transacción fuera de Balance!', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Project'                     => 'Proyecto', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'R'                           => 'R', +  'Reference'                   => 'Referencia', +  'Reference missing!'          => '¡Falta la referencia!', +  'Reports'                     => 'Informes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Source'                      => 'Fuente', +  'Subtotal'                    => 'Subtotal', +  'To'                          => 'Hasta', +  'Transaction Date missing!'   => 'No se ha definido la fecha de la transacción', +  'Transaction deleted!'        => '¡Transacción borrada!', +  'Transaction posted!'         => '¡Transacción registrada!', +  'Update'                      => 'Actualizar', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'Warning!'                    => 'Alerta!', +  'Yes'                         => 'Si', +}; + +$self{subs} = { +  'acc_menu'                    => 'acc_menu', +  'add'                         => 'add', +  'add_transaction'             => 'add_transaction', +  'ap_transaction'              => 'ap_transaction', +  'ar_transaction'              => 'ar_transaction', +  'check_name'                  => 'check_name', +  'check_project'               => 'check_project', +  'continue'                    => 'continue', +  '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', +  'gestión_se_pago'             => 'ap_transaction', +  'gestión_de_cobro'            => 'ar_transaction', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'transacción_en_el_libro_mayor' => 'gl_transaction', +  'registrar'                   => 'post', +  'registrar_como_nuevo'        => 'post_as_new', +  'sales_invoice_'              => 'sales_invoice_', +  'actualizar'                  => 'update', +  'vendor_invoice_'             => 'vendor_invoice_', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/hr b/sql-ledger/locale/es_iso/hr new file mode 100644 index 000000000..f3dd85357 --- /dev/null +++ b/sql-ledger/locale/es_iso/hr @@ -0,0 +1,107 @@ +$self{texts} = { +  'AP'                          => 'Cartera de pagos', +  'Above'                       => 'Encima de', +  'Accounting Menu'             => 'Menú general', +  'Add Deduction'               => 'Agregar Deducción', +  'Add Employee'                => 'Agregar Empleado', +  'Address'                     => 'Dirección', +  'Administrator'               => 'Administrador', +  'After Deduction'             => 'Despues Deducción', +  'All'                         => 'Todos', +  'Allowances'                  => 'Permisos', +  'Amount'                      => 'Total', +  'Amount missing!'             => 'Falta suma', +  'BIC'                         => 'BIC', +  'Based on'                    => 'Basado en', +  'Before Deduction'            => 'Antes de la Deducción', +  'Below'                       => 'Debajo', +  'City'                        => 'Ciudad', +  'Continue'                    => 'Continuar', +  'Country'                     => 'País', +  'Deduct after'                => 'Deducir despues de', +  'Deduction deleted!'          => 'Deducción borrado!', +  'Deduction saved!'            => 'Deducción guardado', +  'Deductions'                  => 'Deducciones', +  'Delete'                      => 'Borrar', +  'Description'                 => 'Descripción', +  'Description missing!'        => 'Falta Descripción', +  'E-mail'                      => 'Correo electrónico', +  'Edit Deduction'              => 'Editar Deducción', +  'Edit Employee'               => 'Editar Empleado', +  'Employee'                    => 'Colaborador/Empleado', +  'Employee Name'               => 'Nombre del Empleado', +  'Employee deleted!'           => 'Empleado borrado!', +  'Employee pays'               => 'Empleado cancela', +  'Employee saved!'             => 'Empleado guardado!', +  'Employees'                   => 'Empleados', +  'Employer'                    => 'Empleador', +  'Employer pays'               => 'Empleador cancela', +  'Enddate'                     => 'Fecha final', +  'Expense'                     => 'Gastos', +  'Home Phone'                  => 'Teléfono residencia', +  'IBAN'                        => 'IBAN', +  'ID'                          => 'ID', +  'Include in Report'           => 'Incluir en informe', +  'Login'                       => 'Entrar', +  'Manager'                     => 'Administrador', +  'Maximum'                     => 'Maximo', +  'Name'                        => 'Nombre', +  'Name missing!'               => '¡Falta el nombre!', +  'Notes'                       => 'Notas', +  'Number'                      => 'Número', +  'Orphaned'                    => 'Huérfano', +  'Payroll Deduction'           => 'Deducciones Nómina', +  'Rate'                        => 'Tarifa', +  'Rate missing!'               => 'Falta Tarifa!', +  'Role'                        => 'Función', +  'S'                           => 'S', +  'Sales'                       => 'Ventas', +  'Save'                        => 'Guardar', +  'Save as new'                 => 'Guardar como nuevo', +  'Startdate'                   => 'Fecha inicial', +  'State/Province'              => 'Departamento', +  'Update'                      => 'Actualizar', +  'User'                        => 'Usuario', +  'Work Phone'                  => 'Teléfono (Oficina)', +}; + +$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', +  'agregar_deducción'           => 'add_deduction', +  'agregar_empleado'            => 'add_employee', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'guardar'                     => 'save', +  'guardar_como_nuevo'          => 'save_as_new', +  'actualizar'                  => 'update', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ic b/sql-ledger/locale/es_iso/ic new file mode 100644 index 000000000..c2619950e --- /dev/null +++ b/sql-ledger/locale/es_iso/ic @@ -0,0 +1,269 @@ +$self{texts} = { +  'A'                           => 'A', +  'Accounting Menu'             => 'Menú general', +  'Accrual'                     => 'Acumulado', +  'Active'                      => 'Activo', +  'Add'                         => 'Añadir', +  'Add Assembly'                => 'Añadir compuesto', +  'Add Labor/Overhead'          => 'Agregar Mano de Obra', +  'Add Part'                    => 'Añadir artículo', +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Add Service'                 => 'Añadir servicio', +  'Address'                     => 'Dirección', +  'Amount'                      => 'Total', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Assemblies'                  => 'Compuestos', +  'Assemblies restocked!'       => '¡Compuestos actualizados en almacen!', +  'Assembly'                    => 'Compuesto', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'BOM'                         => 'Listado de piezas', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Break'                       => 'Pausa', +  'COGS'                        => 'Costo de los artículos', +  'Cannot delete item!'         => '¡No se puede borrar el artículo!', +  'Cannot stock assemblies!'    => '¡No se pueden almacenar los compuestos!', +  'Cash'                        => 'Efectivo', +  'Cc'                          => 'Cc', +  'Check Inventory'             => 'Revisar Inventario', +  'City'                        => 'Ciudad', +  'Closed'                      => 'Cerrado', +  'Company Name'                => 'Nombre de la empresa', +  'Components'                  => 'Componentes', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Cost'                        => 'Costo', +  'Country'                     => 'País', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Customer'                    => 'Cliente', +  'Customer Number'             => 'Número del cliente', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Delivery Date'               => 'Fecha de entrega', +  'Description'                 => 'Descripción', +  'Drawing'                     => 'Reintegro', +  'E-mail'                      => 'Correo electrónico', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Edit Assembly'               => 'Editar compuesto', +  'Edit Labor/Overhead'         => 'Editar Mano de Obra', +  'Edit Part'                   => 'Editar compuesto', +  'Edit Service'                => 'Editar servicio', +  'Employee'                    => 'Colaborador/Empleado', +  'Expense'                     => 'Gastos', +  'Extended'                    => 'Extendido', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'Image'                       => 'Imagen', +  'In-line'                     => 'Incrustado', +  'Include in Report'           => 'Incluir en informe', +  'Income'                      => 'Ingreso', +  'Individual Items'            => 'Artículos individuales', +  'Inventory'                   => 'Inventario', +  'Inventory quantity must be zero before you can set this assembly obsolete!' => 'La cantidad en inventario debe ser cero antes de cambiar este compuesto a obsoleto', +  'Inventory quantity must be zero before you can set this part obsolete!' => 'La cantidad en inventario debe ser cero antes de cambiar este artículo a obsoleto', +  'Invoice'                     => 'Factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Item deleted!'               => '¡Concepto borrado!', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Items'                       => 'Productos/Servicios', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Labor/Overhead'              => 'Mano de Obra', +  'Leadtime'                    => 'Tiempo de Entrega', +  'Line Total'                  => 'Total de la línea', +  'Link Accounts'               => 'Enlazar cuentas', +  'List Price'                  => 'Precio de lista', +  'Make'                        => 'Marca', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'Markup'                      => 'Margen', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Message'                     => 'Mensaje', +  'Microfiche'                  => 'Microficha', +  'Model'                       => 'Modelo', +  'Name'                        => 'Nombre', +  'No.'                         => 'No.', +  'Notes'                       => 'Notas', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'Obsolete'                    => 'Obsoleto', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'On Hand'                     => 'Disponible', +  'Open'                        => 'Abierto', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Number'                => 'Número de orden', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'Orphaned'                    => 'Huérfano', +  'PDF'                         => 'PDF', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Part'                        => 'Artículo', +  'Parts'                       => 'Artículos', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Postscript'                  => 'Postscript', +  'Price'                       => 'Precio', +  'Pricegroup'                  => 'Grupo de Precios', +  'Printed'                     => 'Impreso', +  'Project'                     => 'Proyecto', +  'Purchase Order'              => 'Pedido', +  'Purchase Orders'             => 'Pedidos', +  'Qty'                         => 'Cantidad', +  'Quantity exceeds available units to stock!' => 'No hay esta cantidad disponible en el Inventario!', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Quotations'                  => 'Cotizaciones', +  'RFQ'                         => 'Solicitar Cotización', +  'ROP'                         => 'Tope de envio', +  'Recd'                        => 'Cobrado', +  'Required by'                 => 'Aceptado el', +  'SKU'                         => 'SKU', +  'Sales Invoice'               => 'Facturas de ventas', +  'Sales Invoices'              => 'Factura de venta', +  'Sales Order'                 => 'Presupuesto', +  'Sales Orders'                => 'Presupuestos', +  'Save'                        => 'Guardar', +  'Save as new'                 => 'Guardar como nuevo', +  'Screen'                      => 'Pantalla', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Sell Price'                  => 'Precio de venta', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Serial Number'               => 'Número del Serial', +  'Service'                     => 'Servicio', +  'Services'                    => 'Servicios', +  'Ship'                        => 'Envio', +  'Ship to'                     => 'Destino', +  'Shipping Address'            => 'Dirección del envio', +  'Short'                       => 'Corto', +  'State/Province'              => 'Departamento', +  'Stock'                       => 'Inventario', +  'Stock Assembly'              => 'Inventariar compuesto', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Tax'                         => 'Impuesto', +  'To'                          => 'Hasta', +  'Top Level'                   => 'Nivel superior', +  'Unit'                        => 'Unidad', +  'Unit of measure'             => 'Unidad de medida', +  'Update'                      => 'Actualizar', +  'Updated'                     => '¡Actualizado!', +  'Vendor'                      => 'Proveedor', +  'Vendor Invoice'              => 'Factura de compras', +  'Vendor Invoices'             => 'Facturas de Proveedor', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'Warehouse'                   => 'Bodega', +  'Weight'                      => 'Peso', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'days'                        => 'días', +  'sent'                        => 'Enviado', +}; + +$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', +  'añadir_compuesto'            => 'add_assembly', +  'agregar_mano_de_obra'        => 'add_labor/overhead', +  'añadir_artículo'             => 'add_part', +  'añadir_servicio'             => 'add_service', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'editar_compuesto'            => 'edit_assembly', +  'editar_compuesto'            => 'edit_part', +  'editar_servicio'             => 'edit_service', +  'guardar'                     => 'save', +  'guardar_como_nuevo'          => 'save_as_new', +  'actualizar'                  => 'update', +}; + +1; diff --git a/sql-ledger/locale/es_iso/io b/sql-ledger/locale/es_iso/io new file mode 100644 index 000000000..30eb4720e --- /dev/null +++ b/sql-ledger/locale/es_iso/io @@ -0,0 +1,132 @@ +$self{texts} = { +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Address'                     => 'Dirección', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Cc'                          => 'Cc', +  'City'                        => 'Ciudad', +  'Company Name'                => 'Nombre de la empresa', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Country'                     => 'País', +  'Customer Number'             => 'Número del cliente', +  'Date'                        => 'Fecha', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delivery Date'               => 'Fecha de entrega', +  'Description'                 => 'Descripción', +  'E-mail'                      => 'Correo electrónico', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Extended'                    => 'Extendido', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'In-line'                     => 'Incrustado', +  'Invoice'                     => 'Factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Message'                     => 'Mensaje', +  'No.'                         => 'No.', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'PDF'                         => 'PDF', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Part'                        => 'Artículo', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Postscript'                  => 'Postscript', +  'Price'                       => 'Precio', +  'Printed'                     => 'Impreso', +  'Project'                     => 'Proyecto', +  'Purchase Order'              => 'Pedido', +  'Qty'                         => 'Cantidad', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Recd'                        => 'Cobrado', +  'Required by'                 => 'Aceptado el', +  'SKU'                         => 'SKU', +  'Sales Order'                 => 'Presupuesto', +  'Screen'                      => 'Pantalla', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Service'                     => 'Servicio', +  'Ship'                        => 'Envio', +  'Ship to'                     => 'Destino', +  'Shipping Address'            => 'Dirección del envio', +  'State/Province'              => 'Departamento', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'To'                          => 'Hasta', +  'Unit'                        => 'Unidad', +  'Vendor Number'               => 'Código Vendedor', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'sent'                        => 'Enviado', +}; + +$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', +  'continuar'                   => 'continue', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ir b/sql-ledger/locale/es_iso/ir new file mode 100644 index 000000000..4c7d885d8 --- /dev/null +++ b/sql-ledger/locale/es_iso/ir @@ -0,0 +1,213 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Add Vendor Invoice'          => 'Añadir factura de compra', +  'Address'                     => 'Dirección', +  'Amount'                      => 'Total', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Invoice Number' => '¿Esta seguro de que desea borrar la factura número', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Cannot delete invoice!'      => '¡No se puede borrar la factura!', +  'Cannot post invoice for a closed period!' => '¡No se puede registrar una factura en un periodo ya cerrado!', +  'Cannot post invoice!'        => '¡No se puede registrar la factura!', +  'Cannot post payment for a closed period!' => '¡No se puede registrar un pago en un periodo ya cerrado!', +  'Cc'                          => 'Cc', +  'City'                        => 'Ciudad', +  'Company Name'                => 'Nombre de la empresa', +  'Confirm!'                    => 'Confirmar', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Country'                     => 'País', +  'Credit Limit'                => 'Limite de credito', +  'Currency'                    => 'Moneda', +  'Customer Number'             => 'Número del cliente', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Delivery Date'               => 'Fecha de entrega', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Due Date'                    => 'Fecha de vencimiento', +  'E-mail'                      => 'Correo electrónico', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Edit Vendor Invoice'         => 'Editar factura de compra', +  'Exch'                        => 'Cambio', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate for payment missing!' => '¡Falta la tasa de cambio para el pago!', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Extended'                    => 'Extendido', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'In-line'                     => 'Incrustado', +  'Internal Notes'              => 'Notas internas', +  'Invoice'                     => 'Factura', +  'Invoice Date'                => 'Fecha de factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Invoice deleted!'            => '¡Factura borrada!', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Language'                    => 'Lenguaje', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Message'                     => 'Mensaje', +  'No.'                         => 'No.', +  'Notes'                       => 'Notas', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Number'                => 'Número de orden', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'PDF'                         => 'PDF', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Part'                        => 'Artículo', +  'Payment date missing!'       => 'No se encuentra la fecha de pago', +  'Payments'                    => 'Vencimientos impagados', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Postscript'                  => 'Postscript', +  'Price'                       => 'Precio', +  'Printed'                     => 'Impreso', +  'Project'                     => 'Proyecto', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Purchase Order'              => 'Pedido', +  'Qty'                         => 'Cantidad', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Recd'                        => 'Cobrado', +  'Record in'                   => 'Registrar en', +  'Remaining'                   => 'Resto', +  'Required by'                 => 'Aceptado el', +  'SKU'                         => 'SKU', +  'Sales Order'                 => 'Presupuesto', +  'Screen'                      => 'Pantalla', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Service'                     => 'Servicio', +  'Ship'                        => 'Envio', +  'Ship to'                     => 'Destino', +  'Shipping Address'            => 'Dirección del envio', +  'Source'                      => 'Fuente', +  'State/Province'              => 'Departamento', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Unit'                        => 'Unidad', +  'Update'                      => 'Actualizar', +  'Vendor'                      => 'Proveedor', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor missing!'             => '¡Falta el proveedor!', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'Yes'                         => 'Si', +  'ea'                          => 'unid.', +  'posted!'                     => 'Guardado', +  'sent'                        => 'Enviado', +}; + +$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', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'registrar'                   => 'post', +  'registrar_como_nuevo'        => 'post_as_new', +  'pedido'                      => 'purchase_order', +  'actualizar'                  => 'update', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/is b/sql-ledger/locale/es_iso/is new file mode 100644 index 000000000..345eba6cd --- /dev/null +++ b/sql-ledger/locale/es_iso/is @@ -0,0 +1,226 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add Sales Invoice'           => 'Añadir factura', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Address'                     => 'Dirección', +  'Amount'                      => 'Total', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Invoice Number' => '¿Esta seguro de que desea borrar la factura número', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Business'                    => 'Empresa', +  'Cannot delete invoice!'      => '¡No se puede borrar la factura!', +  'Cannot post invoice for a closed period!' => '¡No se puede registrar una factura en un periodo ya cerrado!', +  'Cannot post invoice!'        => '¡No se puede registrar la factura!', +  'Cannot post payment for a closed period!' => '¡No se puede registrar un pago en un periodo ya cerrado!', +  'Cc'                          => 'Cc', +  'City'                        => 'Ciudad', +  'Company Name'                => 'Nombre de la empresa', +  'Confirm!'                    => 'Confirmar', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Country'                     => 'País', +  'Credit Limit'                => 'Limite de credito', +  'Currency'                    => 'Moneda', +  'Customer'                    => 'Cliente', +  'Customer Number'             => 'Número del cliente', +  'Customer missing!'           => '¡Falta el cliente!', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Delivery Date'               => 'Fecha de entrega', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Due Date'                    => 'Fecha de vencimiento', +  'E-mail'                      => 'Correo electrónico', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Edit Sales Invoice'          => 'Edirar factura de venta', +  'Exch'                        => 'Cambio', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate for payment missing!' => '¡Falta la tasa de cambio para el pago!', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Extended'                    => 'Extendido', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'In-line'                     => 'Incrustado', +  'Internal Notes'              => 'Notas internas', +  'Invoice'                     => 'Factura', +  'Invoice Date'                => 'Fecha de factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Invoice deleted!'            => '¡Factura borrada!', +  'Invoice posted!'             => '¡Factura registrada!', +  'Invoice processed!'          => 'Factura procesada!', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Message'                     => 'Mensaje', +  'No.'                         => 'No.', +  'Notes'                       => 'Notas', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Number'                => 'Número de orden', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'PDF'                         => 'PDF', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Part'                        => 'Artículo', +  'Payment date missing!'       => 'No se encuentra la fecha de pago', +  'Payments'                    => 'Vencimientos impagados', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Postscript'                  => 'Postscript', +  'Price'                       => 'Precio', +  'Print'                       => 'Imprimir', +  'Printed'                     => 'Impreso', +  'Project'                     => 'Proyecto', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Purchase Order'              => 'Pedido', +  'Qty'                         => 'Cantidad', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Recd'                        => 'Cobrado', +  'Record in'                   => 'Registrar en', +  'Remaining'                   => 'Resto', +  'Required by'                 => 'Aceptado el', +  'SKU'                         => 'SKU', +  'Sales Order'                 => 'Presupuesto', +  'Salesperson'                 => 'Vendedor', +  'Screen'                      => 'Pantalla', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Service'                     => 'Servicio', +  'Ship'                        => 'Envio', +  'Ship to'                     => 'Destino', +  'Ship via'                    => 'Envio por', +  'Shipping Address'            => 'Dirección del envio', +  'Shipping Point'              => 'Destino', +  'Source'                      => 'Fuente', +  'State/Province'              => 'Departamento', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Trade Discount'              => 'Descuento', +  'Unit'                        => 'Unidad', +  'Update'                      => 'Actualizar', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'Yes'                         => 'Si', +  'ea'                          => 'unid.', +  'sent'                        => 'Enviado', +}; + +$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', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'correo_electrónico'          => 'e_mail', +  'registrar'                   => 'post', +  'registrar_como_nuevo'        => 'post_as_new', +  'imprimir'                    => 'print', +  'print_and_post'              => 'print_and_post', +  'presupuesto'                 => 'sales_order', +  'destino'                     => 'ship_to', +  'actualizar'                  => 'update', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/login b/sql-ledger/locale/es_iso/login new file mode 100644 index 000000000..a35157302 --- /dev/null +++ b/sql-ledger/locale/es_iso/login @@ -0,0 +1,25 @@ +$self{texts} = { +  'Company'                     => 'Compañía', +  'Continue'                    => 'Continuar', +  'Dataset is newer than version!' => 'La base de datos está más actual que la versión del programa', +  'Incorrect Dataset version!'  => 'Versión de base de datos incorrecta', +  'Incorrect Password!'         => 'Contraseña incorrecta', +  'Login'                       => 'Entrar', +  'Name'                        => 'Nombre', +  'Password'                    => 'Contraseña', +  'Upgrading to Version'        => 'Actulaizando a versión', +  'Version'                     => 'Versión', +  'You did not enter a name!'   => 'No ha introducido el nombre', +  'done'                        => 'hecho', +  'is not a member!'            => 'no es miembro', +}; + +$self{subs} = { +  'login'                       => 'login', +  'login_screen'                => 'login_screen', +  'logout'                      => 'logout', +  'selectdataset'               => 'selectdataset', +  'entrar'                      => 'login', +}; + +1; diff --git a/sql-ledger/locale/es_iso/menu b/sql-ledger/locale/es_iso/menu new file mode 100644 index 000000000..16d09a250 --- /dev/null +++ b/sql-ledger/locale/es_iso/menu @@ -0,0 +1,133 @@ +$self{texts} = { +  'AP'                          => 'Cartera de pagos', +  'AP Aging'                    => 'Diario resumido de pagos', +  'AP Transaction'              => 'Gestión se pago', +  'AR'                          => 'Cartera de cobros', +  'AR Aging'                    => 'Diario resumido de cobros ', +  'AR Transaction'              => 'Gestión de cobro', +  'Accounting Menu'             => 'Menú general', +  'Add Account'                 => 'Añadir cuenta', +  'Add Assembly'                => 'Añadir compuesto', +  'Add Business'                => 'Agregar Empresa', +  'Add Customer'                => 'Añadir cliente', +  'Add Department'              => 'Agregar Centro de Costos', +  'Add Employee'                => 'Agregar Empleado', +  'Add GIFI'                    => 'Añadir código GIFI', +  'Add Group'                   => 'Agregar Grupo', +  'Add Labor/Overhead'          => 'Agregar Mano de Obra', +  'Add Language'                => 'Agregar Idioma', +  'Add Part'                    => 'Añadir artículo', +  'Add Pricegroup'              => 'Añadir Grupo de Precios', +  'Add Project'                 => 'Añadir proyecto', +  'Add SIC'                     => 'Agregar SIC', +  'Add Service'                 => 'Añadir servicio', +  'Add Transaction'             => 'Añadir', +  'Add Vendor'                  => 'Añadir proveedor', +  'Add Warehouse'               => 'Agregar Bodega', +  'All Items'                   => 'Todo', +  'Assemblies'                  => 'Compuestos', +  'Audit Control'               => 'Control de auditoría', +  'Backup'                      => 'Copia de seguridad de los datos', +  'Balance Sheet'               => 'Hoja de balance', +  'Batch Printing'              => 'Impresión en serie', +  'Bin List'                    => 'Lista Empaque', +  'Bin Lists'                   => 'Listas Empaque', +  'Cash'                        => 'Efectivo', +  'Chart of Accounts'           => 'Cuadro de cuentas', +  'Check'                       => 'Cheque', +  'Checks'                      => 'Cheques', +  'Components'                  => 'Componentes', +  'Customers'                   => 'Clientes', +  'Defaults'                    => 'Preferencias', +  'Departments'                 => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Employees'                   => 'Empleados', +  'General Ledger'              => 'Libro mayor general', +  'Goods & Services'            => 'Bienes y servicios', +  'Groups'                      => 'Grupos', +  'HR'                          => 'Recursos Humanos', +  'HTML Templates'              => 'Plantillas HTML', +  'History'                     => 'Historial', +  'Income Statement'            => 'Balance de situación', +  'Invoice'                     => 'Factura', +  'LaTeX Templates'             => 'Plantillas LaTeX', +  'Labor/Overhead'              => 'Mano de Obra', +  'Language'                    => 'Lenguaje', +  'List Accounts'               => 'Listar cuentas', +  'List Businesses'             => 'Mostrar empresas', +  'List Departments'            => 'Mostrar Centro de Costos', +  'List GIFI'                   => 'Listar código GIFI', +  'List Languages'              => 'Mostrar Idiomas', +  'List Projects'               => 'Mostrar Projectos', +  'List SIC'                    => 'Mostrar SIC', +  'List Warehouses'             => 'Mostar bodegas', +  'Logout'                      => 'Salir', +  'Non-taxable'                 => 'Sin Impuestos', +  'Open'                        => 'Abierto', +  'Order Entry'                 => 'Presupuestos y pedidos', +  'Outstanding'                 => 'Impagados', +  'POS'                         => 'Punto de Venta', +  'POS Invoice'                 => 'Factura Punto de Venta', +  'Packing List'                => 'Albarán', +  'Packing Lists'               => 'Lista de empaque', +  'Parts'                       => 'Artículos', +  'Payment'                     => 'Pago', +  'Payments'                    => 'Vencimientos impagados', +  'Pick List'                   => 'Lista de Empaque', +  'Pick Lists'                  => 'Listas de Empaque', +  'Preferences'                 => 'Preferencias', +  'Pricegroups'                 => 'Grupos de Precios', +  'Print'                       => 'Imprimir', +  'Projects'                    => 'Proyectos', +  'Purchase Order'              => 'Pedido', +  'Purchase Orders'             => 'Pedidos', +  'Quotation'                   => 'Cotización', +  'Quotations'                  => 'Cotizaciones', +  'RFQ'                         => 'Solicitar Cotización', +  'RFQs'                        => 'Cotizaciones solicitados', +  'Receipt'                     => 'Recibo', +  'Receipts'                    => 'Recibos', +  'Receive'                     => 'Recibir', +  'Reconciliation'              => 'Reconciliación', +  'Reports'                     => 'Informes', +  'SIC'                         => 'SIC', +  'Sale'                        => 'Venta', +  'Sales Invoice'               => 'Facturas de ventas', +  'Sales Invoices'              => 'Factura de venta', +  'Sales Order'                 => 'Presupuesto', +  'Sales Orders'                => 'Presupuestos', +  'Save to File'                => 'Guardar en un archivo', +  'Search'                      => 'Búsqueda', +  'Send by E-Mail'              => 'Enviar por correo electrónico', +  'Services'                    => 'Servicios', +  'Ship'                        => 'Envio', +  'Shipping'                    => 'Envio', +  'Statement'                   => 'Estado de cuenta', +  'Stock Assembly'              => 'Inventariar compuesto', +  'Stylesheet'                  => 'Hoja de estilo', +  'System'                      => 'Sistema', +  'Tax collected'               => 'Impuestos cobrados', +  'Tax paid'                    => 'Impuestos pagados', +  'Text Templates'              => 'Plantillas de Texto', +  'Transactions'                => 'Impagados', +  'Transfer'                    => 'Transferencia', +  'Translations'                => 'Traducciones', +  'Trial Balance'               => 'Balance de comprobación', +  'Type of Business'            => 'Clase de Negocio', +  'Vendor Invoice'              => 'Factura de compras', +  'Vendors'                     => 'Proveedores', +  'Version'                     => 'Versión', +  'Warehouses'                  => 'Bodegas', +  'Work Order'                  => 'Orden de Trabajo', +  'Work Orders'                 => 'Ordenes de Trabajo', +  'Yearend'                     => 'Fin del Año', +}; + +$self{subs} = { +  'acc_menu'                    => 'acc_menu', +  'display'                     => 'display', +  'menubar'                     => 'menubar', +  'section_menu'                => 'section_menu', +}; + +1; diff --git a/sql-ledger/locale/es_iso/oe b/sql-ledger/locale/es_iso/oe new file mode 100644 index 000000000..44deeb71f --- /dev/null +++ b/sql-ledger/locale/es_iso/oe @@ -0,0 +1,298 @@ +$self{texts} = { +  'Accounting Menu'             => 'Menú general', +  'Add Exchange Rate'           => 'Agregar Tasa de Cambio', +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add Sales Invoice'           => 'Añadir factura', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Add Vendor Invoice'          => 'Añadir factura de compra', +  'Address'                     => 'Dirección', +  'Amount'                      => 'Total', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Order Number' => '¿Esta seguro de que desea +borrar la orden número?', +  'Are you sure you want to delete Quotation Number' => 'Seguro que quiere borrar la cotización número', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Business'                    => 'Empresa', +  'C'                           => 'C', +  'Cannot delete order!'        => '¡No se puede borrar el pedido!', +  'Cannot delete quotation!'    => '¡No puedo borrar cotización!', +  'Cannot save order!'          => '¡No se puede guardar el pedido!', +  'Cannot save quotation!'      => 'No puedo guardar cotización!', +  'Cc'                          => 'Cc', +  'City'                        => 'Ciudad', +  'Closed'                      => 'Cerrado', +  'Company Name'                => 'Nombre de la empresa', +  'Confirm!'                    => 'Confirmar', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Could not save!'             => 'No pude guardar', +  'Could not transfer Inventory!' => 'No puedo transferir inventario!', +  'Country'                     => 'País', +  'Credit Limit'                => 'Limite de credito', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Current'                     => 'Actual', +  'Customer'                    => 'Cliente', +  'Customer Number'             => 'Número del cliente', +  'Customer missing!'           => '¡Falta el cliente!', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Date Received'               => 'Fecha recibido', +  'Date received missing!'      => 'Faltas datos', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Delete'                      => 'Borrar', +  'Delivery Date'               => 'Fecha de entrega', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Done'                        => 'Hecho', +  'E-mail'                      => 'Correo electrónico', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Edit Purchase Order'         => 'Editar pedido', +  'Edit Quotation'              => 'Editar Cotización', +  'Edit Request for Quotation'  => 'Editar Solicitud de Cotización', +  'Edit Sales Order'            => 'Editar presupuesto', +  'Employee'                    => 'Colaborador/Empleado', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Extended'                    => 'Extendido', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'ID'                          => 'ID', +  'In-line'                     => 'Incrustado', +  'Include in Report'           => 'Incluir en informe', +  'Internal Notes'              => 'Notas internas', +  'Inventory saved!'            => 'Inventario guardado!', +  'Inventory transferred!'      => 'Inventario transferido!', +  'Invoice'                     => 'Factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Manager'                     => 'Administrador', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Message'                     => 'Mensaje', +  'No.'                         => 'No.', +  'Notes'                       => 'Notas', +  'Nothing entered!'            => 'Información Incompleta', +  'Nothing to transfer!'        => 'Nada para transferir', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'O'                           => 'O', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Open'                        => 'Abierto', +  'Order'                       => 'Orden', +  'Order Date'                  => 'Fecha de elaboración', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Number'                => 'Número de orden', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'Order deleted!'              => '¡Orden borrada!', +  'Order processed!'            => 'Pedido procesado', +  'Order saved!'                => 'Pedido guardado', +  'PDF'                         => 'PDF', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Part'                        => 'Artículo', +  'Part Number'                 => 'Número parte', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Postscript'                  => 'Postscript', +  'Price'                       => 'Precio', +  'Print'                       => 'Imprimir', +  'Printed'                     => 'Impreso', +  'Project'                     => 'Proyecto', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Purchase Order'              => 'Pedido', +  'Purchase Orders'             => 'Pedidos', +  'Qty'                         => 'Cantidad', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation Date'              => 'Fecha de cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number'            => 'Número cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Quotation deleted!'          => 'Cotización borrado', +  'Quotations'                  => 'Cotizaciones', +  'RFQ'                         => 'Solicitar Cotización', +  'RFQ Number'                  => 'Número de Cotización', +  'Recd'                        => 'Cobrado', +  'Receive Merchandise'         => 'Recibir mercancia', +  'Remaining'                   => 'Resto', +  'Request for Quotation'       => 'Solicitar Cotización', +  'Request for Quotations'      => 'Solicitar Cotizaciones', +  'Required by'                 => 'Aceptado el', +  'SKU'                         => 'SKU', +  'Sales Invoice'               => 'Facturas de ventas', +  'Sales Order'                 => 'Presupuesto', +  'Sales Orders'                => 'Presupuestos', +  'Salesperson'                 => 'Vendedor', +  'Save'                        => 'Guardar', +  'Save as new'                 => 'Guardar como nuevo', +  'Screen'                      => 'Pantalla', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Service'                     => 'Servicio', +  'Ship'                        => 'Envio', +  'Ship Merchandise'            => 'Enviar Mercancía', +  'Ship to'                     => 'Destino', +  'Ship via'                    => 'Envio por', +  'Shipping Address'            => 'Dirección del envio', +  'Shipping Date'               => 'Fecha del Envio', +  'Shipping Date missing!'      => 'Falta Fecha del Envio', +  'Shipping Point'              => 'Destino', +  'State/Province'              => 'Departamento', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Tax'                         => 'Impuesto', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'Terms'                       => 'Crédito', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Trade Discount'              => 'Descuento', +  'Transfer'                    => 'Transferencia', +  'Transfer Inventory'          => 'Transferir Inventario', +  'Transfer to'                 => 'Transferir a', +  'Unit'                        => 'Unidad', +  'Update'                      => 'Actualizar', +  'Valid until'                 => 'Válido hasta', +  'Vendor'                      => 'Proveedor', +  'Vendor Invoice'              => 'Factura de compras', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor missing!'             => '¡Falta el proveedor!', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'Warehouse'                   => 'Bodega', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'Yes'                         => 'Si', +  'days'                        => 'días', +  'ea'                          => 'unid.', +  'sent'                        => 'Enviado', +}; + +$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', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'hecho'                       => 'done', +  'correo_electrónico'          => 'e_mail', +  'imprimir'                    => 'print', +  'print_and_save'              => 'print_and_save', +  'pedido'                      => 'purchase_order', +  'cotización'                  => 'quotation', +  'quotation_'                  => 'quotation_', +  'solicitar_cotización'        => 'rfq', +  'rfq_'                        => 'rfq_', +  'facturas_de_ventas'          => 'sales_invoice', +  'presupuesto'                 => 'sales_order', +  'guardar'                     => 'save', +  'guardar_como_nuevo'          => 'save_as_new', +  'destino'                     => 'ship_to', +  'transferencia'               => 'transfer', +  'actualizar'                  => 'update', +  'factura_de_compras'          => 'vendor_invoice', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/pe b/sql-ledger/locale/es_iso/pe new file mode 100644 index 000000000..9bb6babac --- /dev/null +++ b/sql-ledger/locale/es_iso/pe @@ -0,0 +1,82 @@ +$self{texts} = { +  'Accounting Menu'             => 'Menú general', +  'Add Group'                   => 'Agregar Grupo', +  'Add Pricegroup'              => 'Añadir Grupo de Precios', +  'Add Project'                 => 'Añadir proyecto', +  'All'                         => 'Todos', +  'Continue'                    => 'Continuar', +  'Delete'                      => 'Borrar', +  'Description'                 => 'Descripción', +  'Description Translations'    => 'Descripción Traducción', +  'Edit Description Translations' => 'Editar Descripción Traducción', +  'Edit Group'                  => 'Editar Grupo', +  'Edit Pricegroup'             => 'Editar Grupo de Precios', +  'Edit Project'                => 'Editar proyecto', +  'Group'                       => 'Grupo', +  'Group Translations'          => 'Traducción Grupos', +  'Group deleted!'              => 'Grupo eleminado!', +  'Group missing!'              => 'Falta el grupo', +  'Group saved!'                => 'Grupo guardado!', +  'Groups'                      => 'Grupos', +  'Language'                    => 'Lenguaje', +  'Languages not defined!'      => 'Idiomas no configuradas!', +  'Number'                      => 'Número', +  'Orphaned'                    => 'Huérfano', +  'Pricegroup'                  => 'Grupo de Precios', +  'Pricegroup deleted!'         => 'Grupo Borrado!', +  'Pricegroup missing!'         => 'Falta Grupo!', +  'Pricegroup saved!'           => 'Guardado!', +  'Pricegroups'                 => 'Grupos de Precios', +  'Project'                     => 'Proyecto', +  'Project Description Translations' => 'Descripción Traducción del Proyecto', +  'Project Number'              => 'Número del Proyecto', +  'Project Number missing!'     => '¡Falta el número de proyecto!', +  'Project deleted!'            => '¡Proyecto borrado!', +  'Project saved!'              => '¡Proyecto guardado ', +  'Projects'                    => 'Proyectos', +  'Save'                        => 'Guardar', +  'Translation'                 => 'Traducción', +  'Translation deleted!'        => 'Traducción Borrada!', +  'Translations saved!'         => 'Guardado', +  'Update'                      => 'Actualizar', +}; + +$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', +  'agregar_grupo'               => 'add_group', +  'añadir_grupo_de_precios'     => 'add_pricegroup', +  'añadir_proyecto'             => 'add_project', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'guardar'                     => 'save', +  'actualizar'                  => 'update', +}; + +1; diff --git a/sql-ledger/locale/es_iso/pos b/sql-ledger/locale/es_iso/pos new file mode 100644 index 000000000..0a34f00c1 --- /dev/null +++ b/sql-ledger/locale/es_iso/pos @@ -0,0 +1,64 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Add POS Invoice'             => 'Agregar Factura POS', +  'Cannot post transaction!'    => '¡No se puede registrar la transacción', +  'Change'                      => 'Cambiar', +  'Continue'                    => 'Continuar', +  'Credit Limit'                => 'Limite de credito', +  'Currency'                    => 'Moneda', +  'Current'                     => 'Actual', +  'Customer'                    => 'Cliente', +  'Customer missing!'           => '¡Falta el cliente!', +  'Delete'                      => 'Borrar', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Edit POS Invoice'            => 'Editar Factura Punto de Venta', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Extended'                    => 'Extendido', +  'From'                        => 'Desde', +  'Language'                    => 'Lenguaje', +  'Memo'                        => 'Memo', +  'Number'                      => 'Número', +  'Open'                        => 'Abierto', +  'Paid'                        => 'Pagado', +  'Post'                        => 'Registrar', +  'Posted!'                     => 'Agregado!', +  'Price'                       => 'Precio', +  'Print'                       => 'Imprimir', +  'Printed'                     => 'Impreso', +  'Qty'                         => 'Cantidad', +  'Receipts'                    => 'Recibos', +  'Record in'                   => 'Registrar en', +  'Remaining'                   => 'Resto', +  'Salesperson'                 => 'Vendedor', +  'Screen'                      => 'Pantalla', +  'Source'                      => 'Fuente', +  'Subtotal'                    => 'Subtotal', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Unit'                        => 'Unidad', +  'Update'                      => 'Actualizar', +}; + +$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', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'registrar'                   => 'post', +  'imprimir'                    => 'print', +  'actualizar'                  => 'update', +}; + +1; diff --git a/sql-ledger/locale/es_iso/ps b/sql-ledger/locale/es_iso/ps new file mode 100644 index 000000000..267d8516d --- /dev/null +++ b/sql-ledger/locale/es_iso/ps @@ -0,0 +1,328 @@ +$self{texts} = { +  'AP Aging'                    => 'Diario resumido de pagos', +  'AR Aging'                    => 'Diario resumido de cobros ', +  'AR Outstanding'              => 'Impagados Cartera', +  'AR Transaction'              => 'Gestión de cobro', +  'AR Transactions'             => 'Gestiones de cobros', +  'Account'                     => 'Cuenta', +  'Account Number'              => 'Número de cuenta', +  'Accounting Menu'             => 'Menú general', +  'Accounts'                    => 'Cuentas', +  'Accrual'                     => 'Acumulado', +  'Add POS Invoice'             => 'Agregar Factura POS', +  'Add Purchase Order'          => 'Añadir pedido', +  'Add Quotation'               => 'Agregar Cotización', +  'Add Request for Quotation'   => 'Pedir Cotización', +  'Add Sales Invoice'           => 'Añadir factura', +  'Add Sales Order'             => 'Añadir presupuesto', +  'Address'                     => 'Dirección', +  'All Accounts'                => 'Todas las Cuentas', +  'Amount'                      => 'Total', +  'Amount Due'                  => 'Cantidad adeudada', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Are you sure you want to delete Invoice Number' => '¿Esta seguro de que desea borrar la factura número', +  'Are you sure you want to delete Transaction' => '¿Está seguro de que desea borrar la transacción?', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Balance'                     => 'Balance', +  'Balance Sheet'               => 'Hoja de balance', +  'Bcc'                         => 'Bcc', +  'Billing Address'             => 'Dirección Factura', +  'Bin'                         => 'Bin', +  'Bin List'                    => 'Lista Empaque', +  'Business'                    => 'Empresa', +  'Cannot delete invoice!'      => '¡No se puede borrar la factura!', +  'Cannot delete transaction!'  => '¡No se puede borrar la transacción!', +  'Cannot post invoice for a closed period!' => '¡No se puede registrar una factura en un periodo ya cerrado!', +  'Cannot post invoice!'        => '¡No se puede registrar la factura!', +  'Cannot post payment for a closed period!' => '¡No se puede registrar un pago en un periodo ya cerrado!', +  'Cannot post transaction for a closed period!' => '¡No se puede registrar una transacción para un periodo cerrado', +  'Cannot post transaction!'    => '¡No se puede registrar la transacción', +  'Cash'                        => 'Efectivo', +  'Cc'                          => 'Cc', +  'Change'                      => 'Cambiar', +  'Check'                       => 'Cheque', +  'City'                        => 'Ciudad', +  'Closed'                      => 'Cerrado', +  'Company Name'                => 'Nombre de la empresa', +  'Compare to'                  => 'Comparar con', +  'Confirm!'                    => 'Confirmar', +  'Contact'                     => 'Contacto', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Country'                     => 'País', +  'Credit'                      => 'Crédito', +  'Credit Limit'                => 'Limite de credito', +  'Curr'                        => 'Mon.', +  'Currency'                    => 'Moneda', +  'Current'                     => 'Actual', +  'Current Earnings'            => 'Resultado del periodo', +  'Customer'                    => 'Cliente', +  'Customer Number'             => 'Número del cliente', +  'Customer missing!'           => '¡Falta el cliente!', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Date Paid'                   => 'Fecha de pago', +  'Debit'                       => 'Débito', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Decimalplaces'               => 'Lugar de los decimales', +  'Delete'                      => 'Borrar', +  'Delivery Date'               => 'Fecha de entrega', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Detail'                      => 'Detalle', +  'Due Date'                    => 'Fecha de vencimiento', +  'Due Date missing!'           => 'Falta la fecha de vencimiento', +  'E-mail'                      => 'Correo electrónico', +  'E-mail Statement to'         => 'Enviar comprobante por correo electrónico a', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'E-mailed'                    => 'Enviado por mail', +  'Edit POS Invoice'            => 'Editar Factura Punto de Venta', +  'Edit Sales Invoice'          => 'Edirar factura de venta', +  'Exch'                        => 'Cambio', +  'Exchange Rate'               => 'Tasa de cambio', +  'Exchange rate for payment missing!' => '¡Falta la tasa de cambio para el pago!', +  'Exchange rate missing!'      => '¡Falta la tasa de cambio!', +  'Extended'                    => 'Extendido', +  'Fax'                         => 'Fax', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'GIFI'                        => 'Código GIFI', +  'Group'                       => 'Grupo', +  'Group Items'                 => 'Agrupar itemes', +  'Heading'                     => 'Encabezado', +  'ID'                          => 'ID', +  'In-line'                     => 'Incrustado', +  'Include Exchange Rate Difference' => 'Incluir Diferencia por Tasa de Cambio', +  'Include in Report'           => 'Incluir en informe', +  'Income Statement'            => 'Balance de situación', +  'Internal Notes'              => 'Notas internas', +  'Invoice'                     => 'Factura', +  'Invoice Date'                => 'Fecha de factura', +  'Invoice Date missing!'       => 'No se ha definido la fecha de la factura', +  'Invoice Number'              => 'Número de factura', +  'Invoice Number missing!'     => 'No se ha definido el número de la factura', +  'Invoice deleted!'            => '¡Factura borrada!', +  'Invoice posted!'             => '¡Factura registrada!', +  'Invoice processed!'          => 'Factura procesada!', +  'Item not on file!'           => 'El concepto no se encuentra en ningún archivo', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Language'                    => 'Lenguaje', +  'Manager'                     => 'Administrador', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Message'                     => 'Mensaje', +  'Method'                      => 'Metódo', +  'N/A'                         => 'Sin respuesta', +  'No.'                         => 'No.', +  'Non-taxable Purchases'       => 'Compras sin Impuestos', +  'Non-taxable Sales'           => 'Ventas sin Impuestos', +  'Notes'                       => 'Notas', +  'Nothing selected!'           => '¡No es seleccionado nada!', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Number missing in Row'       => 'No se ha definido el número en la fila', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Open'                        => 'Abierto', +  'Order'                       => 'Orden', +  'Order Date missing!'         => 'No se ha definido la fecha de la elaboración', +  'Order Number'                => 'Número de orden', +  'Order Number missing!'       => 'No se ha definido el número de la orden', +  'PDF'                         => 'PDF', +  'Packing List'                => 'Albarán', +  'Packing List Date missing!'  => 'No se ha definido la fecha del albarán', +  'Packing List Number missing!' => 'No se ha definido el número del albarán', +  'Paid'                        => 'Pagado', +  'Part'                        => 'Artículo', +  'Payment date missing!'       => 'No se encuentra la fecha de pago', +  'Payments'                    => 'Vencimientos impagados', +  'Phone'                       => 'Teléfono', +  'Pick List'                   => 'Lista de Empaque', +  'Post'                        => 'Registrar', +  'Post as new'                 => 'Registrar como nuevo', +  'Posted!'                     => 'Agregado!', +  'Postscript'                  => 'Postscript', +  'Price'                       => 'Precio', +  'Print'                       => 'Imprimir', +  'Printed'                     => 'Impreso', +  'Project'                     => 'Proyecto', +  'Project Number'              => 'Número del Proyecto', +  'Project Transactions'        => 'Transacciones del Projecto', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Purchase Order'              => 'Pedido', +  'Qty'                         => 'Cantidad', +  'Queue'                       => 'Cola', +  'Queued'                      => 'En Cola', +  'Quotation'                   => 'Cotización', +  'Quotation Date missing!'     => 'Falta fecha de cotización', +  'Quotation Number missing!'   => 'Falta número de cotización', +  'Recd'                        => 'Cobrado', +  'Receipt'                     => 'Recibo', +  'Receipts'                    => 'Recibos', +  'Record in'                   => 'Registrar en', +  'Remaining'                   => 'Resto', +  'Report for'                  => 'Informe para', +  'Required by'                 => 'Aceptado el', +  'SKU'                         => 'SKU', +  'Sales Order'                 => 'Presupuesto', +  'Salesperson'                 => 'Vendedor', +  'Screen'                      => 'Pantalla', +  'Select all'                  => 'Guardar todo', +  'Select from one of the items below' => 'Seleccione uno de los artículos siguientes', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Serial No.'                  => 'No de Serial', +  'Service'                     => 'Servicio', +  'Ship'                        => 'Envio', +  'Ship to'                     => 'Destino', +  'Ship via'                    => 'Envio por', +  'Shipping Address'            => 'Dirección del envio', +  'Shipping Point'              => 'Destino', +  'Source'                      => 'Fuente', +  'Standard'                    => 'Estándard', +  'State/Province'              => 'Departamento', +  'Statement'                   => 'Estado de cuenta', +  'Statement sent to'           => 'Estado de cuenta enviado a', +  'Statements sent to printer!' => '¡Estado de cuenta enviado a la impresora!', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Summary'                     => 'Résumen', +  'Tax'                         => 'Impuesto', +  'Tax Included'                => 'Impuestos incluidos en el precio', +  'Tax collected'               => 'Impuestos cobrados', +  'Tax paid'                    => 'Impuestos pagados', +  'Till'                        => 'Caja', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Trade Discount'              => 'Descuento', +  'Transaction deleted!'        => '¡Transacción borrada!', +  'Transaction posted!'         => '¡Transacción registrada!', +  'Trial Balance'               => 'Balance de comprobación', +  'Unit'                        => 'Unidad', +  'Update'                      => 'Actualizar', +  'Vendor'                      => 'Proveedor', +  'Vendor Number'               => 'Código Vendedor', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'What type of item is this?'  => '¿De qué tipo es este concepto?', +  'Work Order'                  => 'Orden de Trabajo', +  'Yes'                         => 'Si', +  'as at'                       => 'al', +  'ea'                          => 'unid.', +  'for Period'                  => 'para el periodo', +  'sent'                        => 'Enviado', +}; + +$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', +  'gestión_de_cobro'            => 'ar_transaction', +  'continuar'                   => 'continue', +  'borrar'                      => 'delete', +  'correo_electrónico'          => 'e_mail', +  'registrar'                   => 'post', +  'registrar_como_nuevo'        => 'post_as_new', +  'imprimir'                    => 'print', +  'print_and_post'              => 'print_and_post', +  'sales_invoice.'              => 'sales_invoice.', +  'presupuesto'                 => 'sales_order', +  'guardar_todo'                => 'select_all', +  'destino'                     => 'ship_to', +  'actualizar'                  => 'update', +  'si'                          => 'yes', +}; + +1; diff --git a/sql-ledger/locale/es_iso/pw b/sql-ledger/locale/es_iso/pw new file mode 100644 index 000000000..6ce7c48df --- /dev/null +++ b/sql-ledger/locale/es_iso/pw @@ -0,0 +1,11 @@ +$self{texts} = { +  'Continue'                    => 'Continuar', +  'Password'                    => 'Contraseña', +}; + +$self{subs} = { +  'getpassword'                 => 'getpassword', +  'continuar'                   => 'continue', +}; + +1; diff --git a/sql-ledger/locale/es_iso/rc b/sql-ledger/locale/es_iso/rc new file mode 100644 index 000000000..3dace129e --- /dev/null +++ b/sql-ledger/locale/es_iso/rc @@ -0,0 +1,75 @@ +$self{texts} = { +  'Account'                     => 'Cuenta', +  'Accounting Menu'             => 'Menú general', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Balance'                     => 'Balance', +  'Beginning Balance'           => 'Balance Inicial', +  'Cleared'                     => 'Borrado', +  'Continue'                    => 'Continuar', +  'Current'                     => 'Actual', +  'Date'                        => 'Fecha', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Decrease'                    => 'Reducir', +  'Deposit'                     => 'Depósito', +  'Description'                 => 'Descripción', +  'Detail'                      => 'Detalle', +  'Difference'                  => 'Diferencia', +  'Done'                        => 'Hecho', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'Include Exchange Rate Difference' => 'Incluir Diferencia por Tasa de Cambio', +  'Increase'                    => 'Aumentar', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Out of balance!'             => '¡Fuera de balance!', +  'Outstanding'                 => 'Impagados', +  'Payment'                     => 'Pago', +  'R'                           => 'R', +  'Reconciliation'              => 'Reconciliación', +  'Reconciliation Report'       => 'Reporte de Reconciliación', +  'Select all'                  => 'Guardar todo', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Source'                      => 'Fuente', +  'Statement Balance'           => 'Balance de cuenta', +  'Summary'                     => 'Résumen', +  'To'                          => 'Hasta', +  'Update'                      => 'Actualizar', +}; + +$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', +  'continuar'                   => 'continue', +  'hecho'                       => 'done', +  'guardar_todo'                => 'select_all', +  'actualizar'                  => 'update', +}; + +1; diff --git a/sql-ledger/locale/es_iso/rp b/sql-ledger/locale/es_iso/rp new file mode 100644 index 000000000..86e4b1d4b --- /dev/null +++ b/sql-ledger/locale/es_iso/rp @@ -0,0 +1,161 @@ +$self{texts} = { +  'AP Aging'                    => 'Diario resumido de pagos', +  'AR Aging'                    => 'Diario resumido de cobros ', +  'Account'                     => 'Cuenta', +  'Account Number'              => 'Número de cuenta', +  'Accounting Menu'             => 'Menú general', +  'Accounts'                    => 'Cuentas', +  'Accrual'                     => 'Acumulado', +  'Address'                     => 'Dirección', +  'All Accounts'                => 'Todas las Cuentas', +  'Amount'                      => 'Total', +  'Apr'                         => 'Abr', +  'April'                       => 'Abril', +  'Attachment'                  => 'Adjunto', +  'Aug'                         => 'Ago', +  'August'                      => 'Agosto', +  'Balance'                     => 'Balance', +  'Balance Sheet'               => 'Hoja de balance', +  'Bcc'                         => 'Bcc', +  'Cash'                        => 'Efectivo', +  'Cc'                          => 'Cc', +  'Compare to'                  => 'Comparar con', +  'Continue'                    => 'Continuar', +  'Copies'                      => 'Copias', +  'Credit'                      => 'Crédito', +  'Curr'                        => 'Mon.', +  'Current'                     => 'Actual', +  'Current Earnings'            => 'Resultado del periodo', +  'Customer'                    => 'Cliente', +  'Customer not on file!'       => '¡El cliente no existe!', +  'Date'                        => 'Fecha', +  'Debit'                       => 'Débito', +  'Dec'                         => 'Dic', +  'December'                    => 'Diciembre', +  'Decimalplaces'               => 'Lugar de los decimales', +  'Department'                  => 'Centro de Costos', +  'Description'                 => 'Descripción', +  'Detail'                      => 'Detalle', +  'Due Date'                    => 'Fecha de vencimiento', +  'E-mail'                      => 'Correo electrónico', +  'E-mail Statement to'         => 'Enviar comprobante por correo electrónico a', +  'E-mail address missing!'     => 'No se ha definido el correo electrónico', +  'Feb'                         => 'Feb', +  'February'                    => 'Febrero', +  'From'                        => 'Desde', +  'GIFI'                        => 'Código GIFI', +  'Heading'                     => 'Encabezado', +  'ID'                          => 'ID', +  'In-line'                     => 'Incrustado', +  'Include Exchange Rate Difference' => 'Incluir Diferencia por Tasa de Cambio', +  'Include in Report'           => 'Incluir en informe', +  'Income Statement'            => 'Balance de situación', +  'Invoice'                     => 'Factura', +  'Jan'                         => 'Ene', +  'January'                     => 'Enero', +  'Jul'                         => 'Jul', +  'July'                        => 'Julio', +  'Jun'                         => 'Jun', +  'June'                        => 'Junio', +  'Language'                    => 'Lenguaje', +  'Mar'                         => 'Mar', +  'March'                       => 'Marzo', +  'May'                         => 'May', +  'May '                        => 'Mayo', +  'Memo'                        => 'Memo', +  'Message'                     => 'Mensaje', +  'Method'                      => 'Metódo', +  'N/A'                         => 'Sin respuesta', +  'Non-taxable Purchases'       => 'Compras sin Impuestos', +  'Non-taxable Sales'           => 'Ventas sin Impuestos', +  'Nothing selected!'           => '¡No es seleccionado nada!', +  'Nov'                         => 'Nov', +  'November'                    => 'Noviembre', +  'Number'                      => 'Número', +  'Oct'                         => 'Oct', +  'October'                     => 'Octubre', +  'Order'                       => 'Orden', +  'PDF'                         => 'PDF', +  'Payments'                    => 'Vencimientos impagados', +  'Postscript'                  => 'Postscript', +  'Print'                       => 'Imprimir', +  'Project'                     => 'Proyecto', +  'Project Number'              => 'Número del Proyecto', +  'Project Transactions'        => 'Transacciones del Projecto', +  'Project not on file!'        => '¡No se encuentra el proyecto en la base de datos!', +  'Receipts'                    => 'Recibos', +  'Report for'                  => 'Informe para', +  'Salesperson'                 => 'Vendedor', +  'Screen'                      => 'Pantalla', +  'Select all'                  => 'Guardar todo', +  'Select from one of the names below' => 'Seleccione uno de los nombres de la lista', +  'Select from one of the projects below' => 'Seleccione uno de los proyectos de la lista', +  'Select postscript or PDF!'   => '¡Seleccione postscript o PDF', +  'Sep'                         => 'Sep', +  'September'                   => 'Septiembre', +  'Source'                      => 'Fuente', +  'Standard'                    => 'Estándard', +  'Statement'                   => 'Estado de cuenta', +  'Statement sent to'           => 'Estado de cuenta enviado a', +  'Statements sent to printer!' => '¡Estado de cuenta enviado a la impresora!', +  'Subject'                     => 'Asunto', +  'Subtotal'                    => 'Subtotal', +  'Summary'                     => 'Résumen', +  'Tax'                         => 'Impuesto', +  'Tax collected'               => 'Impuestos cobrados', +  'Tax paid'                    => 'Impuestos pagados', +  'Till'                        => 'Caja', +  'To'                          => 'Hasta', +  'Total'                       => 'Total', +  'Trial Balance'               => 'Balance de comprobación', +  'Vendor'                      => 'Proveedor', +  'Vendor not on file!'         => '¡No se encuentra el proveedor en la base de datos!', +  'as at'                       => 'al', +  'for Period'                  => 'para el 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_', +  'continuar'                   => 'continue', +  'correo_electrónico'          => 'e_mail', +  'imprimir'                    => 'print', +  'guardar_todo'                => 'select_all', +}; + +1;  | 
