From d0f2a6315dc13693be583e548cb432ae5651cf84 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Mon, 10 Oct 2011 18:55:21 +0200 Subject: [PATCH] =?UTF-8?q?[MERGE]=20added=20l10n=5Fhn=20module=20(Hondura?= =?UTF-8?q?s=20accounting=20localization=20module).=20Courtesy=20of=20Salv?= =?UTF-8?q?atore=20Josu=C3=A9=20Trimarchi=20Pinto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bzr revid: qdp-launchpad@openerp.com-20111010165521-17mrnd3s6sygh6la --- addons/l10n_hn/__init__.py | 22 ++ addons/l10n_hn/__openerp__.py | 54 +++ addons/l10n_hn/account_chart.xml | 650 +++++++++++++++++++++++++++++++ addons/l10n_hn/account_tax.xml | 75 ++++ addons/l10n_hn/account_types.xml | 69 ++++ addons/l10n_hn/i18n/ca.po | 44 +++ addons/l10n_hn/i18n/es.po | 43 ++ addons/l10n_hn/i18n/es_PY.po | 44 +++ addons/l10n_hn/i18n/fr.po | 50 +++ addons/l10n_hn/i18n/gl.po | 44 +++ addons/l10n_hn/i18n/hu.po | 39 ++ addons/l10n_hn/i18n/it.po | 45 +++ addons/l10n_hn/i18n/l10n_hn.pot | 32 ++ addons/l10n_hn/i18n/pt_BR.po | 45 +++ addons/l10n_hn/i18n/sr@latin.po | 39 ++ addons/l10n_hn/l10n_hn_base.xml | 64 +++ 16 files changed, 1359 insertions(+) create mode 100755 addons/l10n_hn/__init__.py create mode 100755 addons/l10n_hn/__openerp__.py create mode 100755 addons/l10n_hn/account_chart.xml create mode 100755 addons/l10n_hn/account_tax.xml create mode 100755 addons/l10n_hn/account_types.xml create mode 100755 addons/l10n_hn/i18n/ca.po create mode 100755 addons/l10n_hn/i18n/es.po create mode 100755 addons/l10n_hn/i18n/es_PY.po create mode 100755 addons/l10n_hn/i18n/fr.po create mode 100755 addons/l10n_hn/i18n/gl.po create mode 100755 addons/l10n_hn/i18n/hu.po create mode 100755 addons/l10n_hn/i18n/it.po create mode 100755 addons/l10n_hn/i18n/l10n_hn.pot create mode 100755 addons/l10n_hn/i18n/pt_BR.po create mode 100755 addons/l10n_hn/i18n/sr@latin.po create mode 100755 addons/l10n_hn/l10n_hn_base.xml diff --git a/addons/l10n_hn/__init__.py b/addons/l10n_hn/__init__.py new file mode 100755 index 00000000000..b4f408623f9 --- /dev/null +++ b/addons/l10n_hn/__init__.py @@ -0,0 +1,22 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2009-2010 Salvatore J. Trimarchi +# (http://salvatoreweb.co.cc) +# +# 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 3 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, see . +# +############################################################################## + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_hn/__openerp__.py b/addons/l10n_hn/__openerp__.py new file mode 100755 index 00000000000..c4428759af0 --- /dev/null +++ b/addons/l10n_hn/__openerp__.py @@ -0,0 +1,54 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2009-2010 Salvatore J. Trimarchi +# (http://salvatoreweb.co.cc) +# +# 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 3 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, see . +# +############################################################################## + +# +# This module provides a minimal Honduran chart of accounts that can be use +# to build upon a more complex one. It also includes a chart of taxes and +# the Lempira currency. +# +# This module is based on the Guatemalan chart of accounts: +# Copyright (c) 2009-2010 Soluciones Tecnologócias Prisma S.A. All Rights Reserved. +# José Rodrigo Fernández Menegazzo, Soluciones Tecnologócias Prisma S.A. +# (http://www.solucionesprisma.com) +# +# This module works with OpenERP 6.0 +# + +{ + 'name': 'Honduras - Plan contable general', + 'version': '0.1', + 'category': 'Localisation/Account Charts', + 'description': """Agrega una nomenclatura contable para Honduras. También incluye impuestos y la moneda Lempira. -- Adds accounting chart for Honduras. It also includes taxes and the Lempira currency""", + 'author': 'Salvatore Josue Trimarchi Pinto', + 'website': 'http://trimarchi.co.cc', + 'depends': ['base', 'account', 'account_chart'], + 'init_xml': [], + 'update_xml': [ + 'account_types.xml', + 'account_chart.xml', + 'account_tax.xml', + 'l10n_hn_base.xml', + ], + 'demo_xml': [], + 'installable': True, + 'certificate': '', +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_hn/account_chart.xml b/addons/l10n_hn/account_chart.xml new file mode 100755 index 00000000000..7bd17b0e82d --- /dev/null +++ b/addons/l10n_hn/account_chart.xml @@ -0,0 +1,650 @@ + + + + + + + + - + Plan contable de Honduras (sencillo) + + view + + + + + + + A + Balance General + + view + + + + + 1 + Activo + + view + + + + + 1.1 + Activo Corriente + + view + + + + + 1.1.01 + Caja y Bancos + + view + + + + + 1.1.01.01 + Caja Chica + + liquidity + + + + + 1.1.02 + Cuentas y Documentos por Cobrar + + view + + + + + 1.1.02.01 + Cuentas por Cobrar Generales + + receivable + + + + + + 1.1.02.02 + Cuentas por Cobrar Empresas Afilidas + + receivable + + + + + + 1.1.02.03 + Prestamos al Personal + + receivable + + + + + + 1.1.02.04 + Otras Cuentas por Cobrar + + receivable + + + + + + 1.1.03 + ISV por Cobrar + + view + + + + + 1.1.03.01 + ISV por Cobrar + + other + + + + + 1.1.03.02 + Retenciones de ISV recibidas + + other + + + + + 1.1.04 + Inventario + + view + + + + + 1.2 + No Corriente + + view + + + + + 1.2.01 + Propiedad, Planta y Equipo + + view + + + + + 1.2.01.01 + Propiedad, Planta y Equipo + + other + + + + + 1.2.02 + Depreciaciones Acumuladas + + view + + + + + 1.2.02.01 + Depreciaciones Acumuladas + + other + + + + + 1.3 + Diferido + + view + + + + + 1.3.01 + Gastos por Amortizar + + view + + + + + 1.3.01.01 + Gastos por Amortizar + + other + + + + + 1.3.02 + Gastos Anticipados + + view + + + + + 1.3.02.01 + Gastos Anticipados + + other + + + + + 1.3.03 + Gastos de Organización + + view + + + + + 1.3.03.01 + Gastos de Organización + + other + + + + + 1.3.04 + Otros Activos + + view + + + + + 1.3.04.01 + Otros Activos + + other + + + + + 2 + Pasivo + + view + + + + + 2.1 + Pasivo Corto Plazo + + view + + + + + 2.1.01 + Cuentas y Documentos por Pagar + + view + + + + + 2.1.01.01 + Cuentas y Documentos por Pagar + + payable + + + + + + 2.1.02 + ISV por Pagar + + view + + + + + 2.1.02.01 + ISV por Pagar + + other + + + + + 2.1.03 + Impuestos + + view + + + + + 2.1.03.01 + Impuestos + + other + + + + + 2.2 + Pasivo a Largo Plazo + + view + + + + + 2.2.01 + Provisión para Indemnizaciones + + view + + + + + 2.2.01.01 + Provisión para Indemnizaciones + + other + + + + + 2.3 + Créditos Diferidos + + view + + + + + 2.3.01 + Créditos Diferidos + + view + + + + + 2.3.01.01 + Anticipos + + other + + + + + 3 + Patrimonio + + view + + + + + 3.1 + Patrimonio de los Accionistas + + view + + + + + 3.1.01 + Patrimonio de los Accionistas + + view + + + + + 3.1.01.01 + Capital Autorizado, Suscríto y Pagado + + other + + + + + 3.1.01.02 + Reservas + + other + + + + + 3.1.01.03 + Perdidas y Ganancias + + other + + + + + + + B + Estado de Resultados + + view + + + + + 4 + Ingresos + + view + + + + + 4.1 + Ventas + + view + + + + + 4.1.01 + Ventas Netas + + view + + + + + 4.1.01.01 + Ventas + + other + + + + + 4.1.01.02 + Descuentos Sobre Ventas + + other + + + + + 4.2 + Otros Ingresos + + view + + + + + 4.2.01 + Otros Ingresos + + view + + + + + 4.2.01.01 + Otros Ingresos + + other + + + + + 5 + Egresos + + view + + + + + 5.1 + Costos + + view + + + + + 5.1.01 + Costos de Ventas + + view + + + + + 5.1.01.01 + Costos de Ventas + + other + + + + + 6 + Gastos + + view + + + + + 6.1 + Gastos de Ventas + + view + + + + + 6.1.01 + Gastos de Ventas + + view + + + + + 6.1.01.01 + Gastos de Ventas + + other + + + + + 6.2 + Gastos de Operación + + view + + + + + 6.2.01 + Gastos de Administración + + view + + + + + 6.2.01.01 + Gastos de Administración + + other + + + + + 6.2.02 + Otros Gastos de Operación + + view + + + + + 6.2.02.01 + Otros Gastos de Operación + + other + + + + + 6.3 + Gastos no Deducibles + + view + + + + + 6.3.01 + Gastos no Deducibles + + view + + + + + 6.3.01.01 + Gastos no Deducibles + + other + + + + + 7 + Otros Gastos y Productos Financieros + + view + + + + + 7.1 + Otros Gastos y Productos Financieros + + view + + + + + 7.1.01 + Otros Gastos y Productos Financieros + + view + + + + + 7.1.01.01 + Otros Gastos Financieros + + other + + + + + 7.1.01.02 + Intereses + + other + + + + + + diff --git a/addons/l10n_hn/account_tax.xml b/addons/l10n_hn/account_tax.xml new file mode 100755 index 00000000000..64675ecde33 --- /dev/null +++ b/addons/l10n_hn/account_tax.xml @@ -0,0 +1,75 @@ + + + + + + + + + General Honduras + + + + + + Balance del ISV + + + + + + + ISV por Pagar Balance + + + + + ISV por Pagar + + + + + + + ISV por Cobrar Balance + + + + + ISV por Cobrar + + + + + + + Base Impositiva + + + + + + + Base Impositiva de Compras Balance + + + + + Base Impositiva de Compras + + + + + + + Base Impositiva de Ventas Balance + + + + + Base Impositiva de Ventas + + + + + diff --git a/addons/l10n_hn/account_types.xml b/addons/l10n_hn/account_types.xml new file mode 100755 index 00000000000..aeb7a01964e --- /dev/null +++ b/addons/l10n_hn/account_types.xml @@ -0,0 +1,69 @@ + + + + + + + Vista + Vista + none + + + + Activo + Activo + balance + asset + + + + Cuentas por Cobrar + cxc + unreconciled + asset + + + + Pasivo + Pasivo + balance + liability + + + + Cuentas por Pagar + cxp + unreconciled + liability + + + + Capital + capital + balance + asset + + + + Ingresos + ingresos + none + income + + + + Gastos + gastos + none + expense + + + + Efectivo + Efectivo + asset + balance + + + + diff --git a/addons/l10n_hn/i18n/ca.po b/addons/l10n_hn/i18n/ca.po new file mode 100755 index 00000000000..6db7f5a1dd5 --- /dev/null +++ b/addons/l10n_hn/i18n/ca.po @@ -0,0 +1,44 @@ +# Catalan translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-03-12 20:48+0000\n" +"Last-Translator: mgaja (GrupoIsep.com) \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-13 06:16+0000\n" +"X-Generator: Launchpad (build 12559)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Pla general comptable" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Genera la nomenclatura comptable a partir d'un model. Hauríeu de seleccionar " +"una empresa, el model a utilitzar, el número de dígits a utilitzar en la " +"nomenclatura, la moneda per crear els diaris." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Afegeix una nomenclatura comptable per a Honduras. També inclou impostos i " +"la moneda del Lempira." diff --git a/addons/l10n_hn/i18n/es.po b/addons/l10n_hn/i18n/es.po new file mode 100755 index 00000000000..d3372528aae --- /dev/null +++ b/addons/l10n_hn/i18n/es.po @@ -0,0 +1,43 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_hn +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 6.0.0-rc1\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-01-19 12:00+0000\n" +"Last-Translator: Nicolas Vanhoren (OpenERP) \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-25 06:47+0000\n" +"X-Generator: Launchpad (build 12177)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Plan contable general" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira." diff --git a/addons/l10n_hn/i18n/es_PY.po b/addons/l10n_hn/i18n/es_PY.po new file mode 100755 index 00000000000..ebb0a661769 --- /dev/null +++ b/addons/l10n_hn/i18n/es_PY.po @@ -0,0 +1,44 @@ +# Spanish (Paraguay) translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-03-21 16:23+0000\n" +"Last-Translator: fadel \n" +"Language-Team: Spanish (Paraguay) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-22 06:23+0000\n" +"X-Generator: Launchpad (build 12559)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Plan contable general" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira." diff --git a/addons/l10n_hn/i18n/fr.po b/addons/l10n_hn/i18n/fr.po new file mode 100755 index 00000000000..424997a7e20 --- /dev/null +++ b/addons/l10n_hn/i18n/fr.po @@ -0,0 +1,50 @@ +# French translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-01-19 12:00+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-25 06:47+0000\n" +"X-Generator: Launchpad (build 12177)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Plan comptable général" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Génère le plan comptable depuis un modèle de charte. Vous serez amener à " +"entrer le nom de la compagnie, le modèle de charte à suivre, le nombre de " +"chiffres pour générer les codes de vos comptes et de votre compte bancaire, " +"la devise pour créer les journaux. Ainsi, une exacte copie du modèle de " +"charte sera générée.\r\n" +"\tC'est le même assistant qui s'exécute depuis " +"Finances/Configuration/Comptabilité Financière/Comptes Financiers/Générer le " +"plan comptable depuis un modèle de charte." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Ajoute le plan comptable pour le Honduras. Il inclut aussi les taxes et le " +"lempira (devise)." diff --git a/addons/l10n_hn/i18n/gl.po b/addons/l10n_hn/i18n/gl.po new file mode 100755 index 00000000000..af9cb8304e6 --- /dev/null +++ b/addons/l10n_hn/i18n/gl.po @@ -0,0 +1,44 @@ +# Galician translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-02-11 13:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-02-12 06:06+0000\n" +"X-Generator: Launchpad (build 12351)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Plan contable xeral" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Xera-la nomenclatura contable a partires dun modelo. Deberá seleccionar unha " +"compañía, o modelo que vai a empregar, o número de díxitos a empregar na " +"nomenclatura e a moeda para crea-los diarios." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Agrega unha nomenclatura contable para Honduras. Tamén inclúe taxas e a " +"moeda do Lempira." diff --git a/addons/l10n_hn/i18n/hu.po b/addons/l10n_hn/i18n/hu.po new file mode 100755 index 00000000000..803d195e5ac --- /dev/null +++ b/addons/l10n_hn/i18n/hu.po @@ -0,0 +1,39 @@ +# Hungarian translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-01-19 12:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-25 06:47+0000\n" +"X-Generator: Launchpad (build 12177)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" diff --git a/addons/l10n_hn/i18n/it.po b/addons/l10n_hn/i18n/it.po new file mode 100755 index 00000000000..220b98bc9df --- /dev/null +++ b/addons/l10n_hn/i18n/it.po @@ -0,0 +1,45 @@ +# Italian translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-01-19 12:00+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-25 06:47+0000\n" +"X-Generator: Launchpad (build 12177)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Piano dei conti generale" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Generare il piano dei conti da un modello. È necessario selezionare una " +"società, il modello utilizzato, il numero di cifre da utilizzare per i " +"decimali, la valuta per creare i giornali." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Aggiunge il piano dei conti per il Honduras. " +"Include inoltre le tasse e la moneta Lempira" diff --git a/addons/l10n_hn/i18n/l10n_hn.pot b/addons/l10n_hn/i18n/l10n_hn.pot new file mode 100755 index 00000000000..ca694f03e88 --- /dev/null +++ b/addons/l10n_hn/i18n/l10n_hn.pot @@ -0,0 +1,32 @@ +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * l10n_hn +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 6.0.0-rc2\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2011-01-11 11:15:31+0000\n" +"PO-Revision-Date: 2011-01-11 11:15:31+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar una compañía, el modelo a utilizar, el número de digitos a usar en la nomenclatura, la moneda para crear los diarios." +msgstr "" + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "Agrega una nomenclatura contable para Honduras. También icluye impuestos y la moneda del Lempira. -- Adds accounting chart for Honduras. It also includes taxes and the Lempira currency" +msgstr "" + diff --git a/addons/l10n_hn/i18n/pt_BR.po b/addons/l10n_hn/i18n/pt_BR.po new file mode 100755 index 00000000000..6dd7ba3c90b --- /dev/null +++ b/addons/l10n_hn/i18n/pt_BR.po @@ -0,0 +1,45 @@ +# Brazilian Portuguese translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-03-10 23:09+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-03-11 06:00+0000\n" +"X-Generator: Launchpad (build 12559)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "Honduras - Plan contable general" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" diff --git a/addons/l10n_hn/i18n/sr@latin.po b/addons/l10n_hn/i18n/sr@latin.po new file mode 100755 index 00000000000..2e5a15962a7 --- /dev/null +++ b/addons/l10n_hn/i18n/sr@latin.po @@ -0,0 +1,39 @@ +# Serbian latin translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2011-01-19 12:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Serbian latin \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-25 06:47+0000\n" +"X-Generator: Launchpad (build 12177)\n" + +#. module: l10n_hn +#: model:ir.module.module,shortdesc:l10n_hn.module_meta_information +msgid "Honduras - Plan contable general" +msgstr "" + +#. module: l10n_hn +#: model:ir.actions.todo,note:l10n_hn.config_call_account_template_hn_minimal +msgid "" +"Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar " +"una compañía, el modelo a utilizar, el número de digitos a usar en la " +"nomenclatura, la moneda para crear los diarios." +msgstr "" + +#. module: l10n_hn +#: model:ir.module.module,description:l10n_hn.module_meta_information +msgid "" +"Agrega una nomenclatura contable para Honduras. También icluye impuestos y " +"la moneda del Lempira. -- Adds accounting chart for Honduras. It also " +"includes taxes and the Lempira currency" +msgstr "" diff --git a/addons/l10n_hn/l10n_hn_base.xml b/addons/l10n_hn/l10n_hn_base.xml new file mode 100755 index 00000000000..e86409f62b1 --- /dev/null +++ b/addons/l10n_hn/l10n_hn_base.xml @@ -0,0 +1,64 @@ + + + + + + Generar la nomenclatura contable a partir de un modelo + Generar la nomenclatura contable a partir de un modelo. Deberá seleccionar una compañía, el modelo a utilizar, el número de digitos a usar en la nomenclatura, la moneda para crear los diarios. + + + open + + + + + + Plantilla de cuentas de Honduras (sencilla) + + + + + + + + + + + + + + + ISV por Cobrar + + percent + + + + + + + purchase + + + + + + + + ISV por Pagar + + percent + + + + + + + sale + + + + +