diff --git a/l10n_fr_ecotaxe/README.rst b/l10n_fr_ecotaxe/README.rst new file mode 100644 index 000000000..0faeef83b --- /dev/null +++ b/l10n_fr_ecotaxe/README.rst @@ -0,0 +1,120 @@ +===================== +France Custom Ecotaxe +===================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:23479e79cea1c7653013329021c55bf27b1d6fa0d64734b13f53ca3209feaffa + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--france-lightgray.png?logo=github + :target: https://github.com/OCA/l10n-france/tree/16.0/l10n_fr_ecotaxe + :alt: OCA/l10n-france +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/l10n-france-16-0/l10n-france-16-0-l10n_fr_ecotaxe + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-france&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module applies to companies based in France mainland. It doesn't apply to +companies based in the DOM-TOMs (Guadeloupe, Martinique, Guyane, Réunion, +Mayotte). + +It add Ecotaxe amount on invoice line. +furthermore, a total ecotaxe are added at the footer of each document. + +To make easy ecotaxe management and to factor the data, ecotaxe are set on products via ECOTAXE classifications. +ECOTAXE classification can either a fixed or weight based ecotaxe. + +A product can have one or serveral ecotaxe classifications. For exemple wooden window blinds equipped with electric motor can +have ecotaxe for wood and ecotaxe for electric motor. + +This module version add the possibility to manage several ecotaxe classification by product. +A migration script is necessary to update from previous versions. + +There is the main change to manage in migration script: + +renamed field +model old field new field +account.move.line unit_ecotaxe_amount ecotaxe_amount_unit +product.template manual_fixed_ecotaxe force_ecotaxe_amount + +changed fields +model old field new field +product.template ecotaxe_classification_id ecotaxe_classification_ids + +added fields +model new field +account.move.line ecotaxe_line_ids +product.template ecotaxe_line_product_ids + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Add ecotaxe classification via the menu *Accounting > configuration > Taxes > Ecotaxe Classification*. +Ecotaxe classification is either a fixed ecotaxe or weight based ecotaxe. +ecotaxe classification Infos can be used for legal declarations. +For fixed ecotaxe, ecotaxe amount is used as default value. We can for ecotaxe amount on product. + +For weight based ecotaxe, we should define one ecotaxe by coef applied for the weight (depending on product materials). + +Assign one or more ecotaxe classification to a product. + +we can also force amount ecotaxe on account move line by classification. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Mourad EL HADJ MIMOUNE + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/l10n-france `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/l10n_fr_ecotaxe/__init__.py b/l10n_fr_ecotaxe/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/l10n_fr_ecotaxe/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/l10n_fr_ecotaxe/__manifest__.py b/l10n_fr_ecotaxe/__manifest__.py new file mode 100644 index 000000000..76ff8f27c --- /dev/null +++ b/l10n_fr_ecotaxe/__manifest__.py @@ -0,0 +1,28 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "France Custom Ecotaxe", + "summary": "Use Ecotaxe in French localisation contexte", + "version": "16.0.2.0.0", + "author": "Akretion, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/l10n-france", + "category": "Localization/Account Taxes", + "license": "AGPL-3", + "depends": [ + "account", + ], + "data": [ + "data/decimal_precision.xml", + "security/ir_rule.xml", + "security/ir.model.access.csv", + "views/account_ecotaxe_category_view.xml", + "views/ecotaxe_sector_view.xml", + "views/ecotaxe_collector_view.xml", + "views/account_ecotaxe_classification_view.xml", + "views/account_move_view.xml", + "views/product_template_view.xml", + "views/product_view.xml", + ], + "installable": True, +} diff --git a/l10n_fr_ecotaxe/data/decimal_precision.xml b/l10n_fr_ecotaxe/data/decimal_precision.xml new file mode 100644 index 000000000..05e842e96 --- /dev/null +++ b/l10n_fr_ecotaxe/data/decimal_precision.xml @@ -0,0 +1,7 @@ + + + + Ecotaxe + 4 + + diff --git a/l10n_fr_ecotaxe/i18n/am.po b/l10n_fr_ecotaxe/i18n/am.po new file mode 100644 index 000000000..a248d6730 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/am.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Mike T , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Mike T , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "እውነት" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ar.po b/l10n_fr_ecotaxe/i18n/ar.po new file mode 100644 index 000000000..76d152ad3 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ar.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# SaFi J. , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: SaFi J. , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "نشِط" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "الشركة" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "تجميع حسب" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "فاتورة" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "خط الفاتورة" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "الاسم" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "صحيح" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "النوع" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/bg.po b/l10n_fr_ecotaxe/i18n/bg.po new file mode 100644 index 000000000..3245c328d --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/bg.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Активен" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Код" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Фирма" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Групирай По" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Име" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Вид" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/bs.po b/l10n_fr_ecotaxe/i18n/bs.po new file mode 100644 index 000000000..368fbf8ba --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/bs.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Kompanija" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupiši po" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka fakture" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Vrsta" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ca.po b/l10n_fr_ecotaxe/i18n/ca.po new file mode 100644 index 000000000..9ebe62f72 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ca.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Marc Tormo i Bochaca , 2017 +# Carles Antoli , 2017 +# Eric Antones , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Eric Antones , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Actiu" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Codi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Companyia" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Fix " + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupat per" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línia factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Producte" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Plantilla del producte" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Comandes de venda" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línia de comanda de vendes" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Impost" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipus" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ca_ES.po b/l10n_fr_ecotaxe/i18n/ca_ES.po new file mode 100644 index 000000000..de3ecc2ea --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ca_ES.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Carlos Hormigo, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-02 05:27+0000\n" +"PO-Revision-Date: 2017-12-02 05:27+0000\n" +"Last-Translator: Carlos Hormigo, 2018\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Codi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Companyia" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creat a" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nom visible" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera actualització per" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Darrera actualització el" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipus" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/cs.po b/l10n_fr_ecotaxe/i18n/cs.po new file mode 100644 index 000000000..cd09fb487 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/cs.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Jaroslav Helemik Nemec , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Jaroslav Helemik Nemec , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktivní" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Společnost" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Seskupit podle" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Řádek faktury" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Název" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Druh" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/cs_CZ.po b/l10n_fr_ecotaxe/i18n/cs_CZ.po new file mode 100644 index 000000000..7f5e5ca4b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/cs_CZ.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Lukáš Spurný , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-03 05:44+0000\n" +"PO-Revision-Date: 2018-03-03 05:44+0000\n" +"Last-Translator: Lukáš Spurný , 2018\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/" +"teams/23907/cs_CZ/)\n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Řádek objednávky" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/da.po b/l10n_fr_ecotaxe/i18n/da.po new file mode 100644 index 000000000..b554e48e2 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/da.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiv" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Virksomhed" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Gruppér efter" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "Id" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Navn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/de.po b/l10n_fr_ecotaxe/i18n/de.po new file mode 100644 index 000000000..7ddb8dc7c --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/de.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Philipp Hug , 2017 +# Rudolf Schnapka , 2017 +# Renzo Meister , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Renzo Meister , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiv" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "Klassifizierung" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Schlüssel" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Unternehmen" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Erstellt von" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Erstellt am" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Feste Zuweisung" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Gruppiert nach" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Rechnung" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Rechnungsposition" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt geändert durch" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt geändert am" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Name" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Produktkategorie" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Produktvorlage" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Bestellauftrag" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Bestellposition" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Verkaufsauftrag" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Auftragsposition" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Steuer" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Wahr" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Art" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/el_GR.po b/l10n_fr_ecotaxe/i18n/el_GR.po new file mode 100644 index 000000000..f8f5222ea --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/el_GR.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Kostas Goutoudis , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Τιμολόγιο" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Ονομασία" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Προϊόν" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Εντολή Πώλησης" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Τύπος" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/en_GB.po b/l10n_fr_ecotaxe/i18n/en_GB.po new file mode 100644 index 000000000..8021b53a8 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/en_GB.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Active" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Company" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Group By" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Invoice" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Invoice Line" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Name" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es.po b/l10n_fr_ecotaxe/i18n/es.po new file mode 100644 index 000000000..e23f3f86f --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Antonio Trueba , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Antonio Trueba , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "Clasificación" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Código" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Fijo" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Plantilla de producto" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Pedido de compra" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Línea pedido de compra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Pedidos de venta" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línea pedido de venta" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Impuesto" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Verdadero" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_AR.po b/l10n_fr_ecotaxe/i18n/es_AR.po new file mode 100644 index 000000000..3f4bf19c5 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_AR.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_CL.po b/l10n_fr_ecotaxe/i18n/es_CL.po new file mode 100644 index 000000000..f3cfa75c9 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_CL.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_CO.po b/l10n_fr_ecotaxe/i18n/es_CO.po new file mode 100644 index 000000000..ec5918504 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_CO.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_CR.po b/l10n_fr_ecotaxe/i18n/es_CR.po new file mode 100644 index 000000000..9daff8578 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_CR.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_DO.po b/l10n_fr_ecotaxe/i18n/es_DO.po new file mode 100644 index 000000000..b876b1e9e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_DO.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_EC.po b/l10n_fr_ecotaxe/i18n/es_EC.po new file mode 100644 index 000000000..c1624da80 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_EC.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Compañia" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Detalle de Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_ES.po b/l10n_fr_ecotaxe/i18n/es_ES.po new file mode 100644 index 000000000..447bd5f2c --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_ES.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Daniel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-01 04:14+0000\n" +"PO-Revision-Date: 2017-07-01 04:14+0000\n" +"Last-Translator: Daniel , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Producto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Categoría de producto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Pedido de venta" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_MX.po b/l10n_fr_ecotaxe/i18n/es_MX.po new file mode 100644 index 000000000..5dc90ef1b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_MX.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Juan González , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Juan González , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Categoria del producto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Plantilla del producto" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Línea de orden de compra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_PE.po b/l10n_fr_ecotaxe/i18n/es_PE.po new file mode 100644 index 000000000..2e86be52c --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_PE.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-10 05:46+0000\n" +"PO-Revision-Date: 2018-02-10 05:46+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linea de orden de compra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_PY.po b/l10n_fr_ecotaxe/i18n/es_PY.po new file mode 100644 index 000000000..934ff5465 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_PY.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/es_VE.po b/l10n_fr_ecotaxe/i18n/es_VE.po new file mode 100644 index 000000000..1041f4161 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_VE.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Pedidos de venta" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Línea de pedido de venta" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/et.po b/l10n_fr_ecotaxe/i18n/et.po new file mode 100644 index 000000000..83b42f944 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/et.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiivne" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Ettevõte" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Rühmitamine" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Arve" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Arve rida" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tüüp" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/eu.po b/l10n_fr_ecotaxe/i18n/eu.po new file mode 100644 index 000000000..394d6be7e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/eu.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Kodea" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Enpresa" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Group By" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Izena" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produktua" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "True" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Mota" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/fa.po b/l10n_fr_ecotaxe/i18n/fa.po new file mode 100644 index 000000000..0fa885b30 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fa.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "گروه‌بندی برمبنای" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "نام" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "نوع" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/fi.po b/l10n_fr_ecotaxe/i18n/fi.po new file mode 100644 index 000000000..23e7bc5cd --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fi.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Jarmo Kortetjärvi , 2017 +# OCA Transbot , 2017 +# Timo Talvitie , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Timo Talvitie , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiivinen" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Koodi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Yritys" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Ryhmittele" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Lasku" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Tuote" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Tuotteen malli" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Ostotilaus" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Ostotilausrivi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Myyntitilaus" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Myyntitilausrivi" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Tosi" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tyyppi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/fr.po b/l10n_fr_ecotaxe/i18n/fr.po new file mode 100644 index 000000000..8371f2028 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr.po @@ -0,0 +1,337 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Quentin THEURET , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-24 05:39+0000\n" +"PO-Revision-Date: 2022-03-06 18:24+0000\n" +"Last-Translator: ajaniszewska-dev \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Actif" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Code" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Société" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" +"Valeur par défaut de l'écotaxe fixe.\n" +"Cette valeur est attribuée par défaut lors du choix\n" +"de la catégorie sur le produit.\n" +"Mettre 0 si vous voulez qu'il y ait pas de valeur par défaut" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "Ecotaxe" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "Classification des Ecotaxes" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "Ecotaxe Coef" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "Type Ecotaxe" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "Classification des Ecotaxes" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Fixe" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "Ecotaxe Fixe" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grouper par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "Id." + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "Dont Ecotaxe" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Lignes de facture" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "Taxe" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière Modification le" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "Taxes" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Catégorie d'articles" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Modèle de produit" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Commande d'achat" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Ligne de commande d'achat" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Bon de commande" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Sales Order Line" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Taxes" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "True" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "Montant hors taxe" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "Basée sur le poids" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/fr_CA.po b/l10n_fr_ecotaxe/i18n/fr_CA.po new file mode 100644 index 000000000..74a4b6e2e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr_CA.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Adriana Ierfino , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Code" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nom" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Taxe" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/fr_CH.po b/l10n_fr_ecotaxe/i18n/fr_CH.po new file mode 100644 index 000000000..bd7494bf0 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr_CH.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# leemannd , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: leemannd , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Actif" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ligne de facture" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Template de produit" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/fr_FR.po b/l10n_fr_ecotaxe/i18n/fr_FR.po new file mode 100644 index 000000000..3bcabc665 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr_FR.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Mohamed HABOU , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produit" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Bon de commande" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/gl.po b/l10n_fr_ecotaxe/i18n/gl.po new file mode 100644 index 000000000..8314794ee --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/gl.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# César Castro Cruz , 2017 +# OCA Transbot , 2017 +# Alejandro Santana , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Alejandro Santana , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Código" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nome" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Orde de compra" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Imposto" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/gl_ES.po b/l10n_fr_ecotaxe/i18n/gl_ES.po new file mode 100644 index 000000000..6f88ef747 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/gl_ES.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/he.po b/l10n_fr_ecotaxe/i18n/he.po new file mode 100644 index 000000000..830b1d12a --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/he.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "קבץ לפי" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "שם" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "סוג" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/hr.po b/l10n_fr_ecotaxe/i18n/hr.po new file mode 100644 index 000000000..5d0fdc6dc --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/hr.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Ana-Maria Olujić , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-10 05:46+0000\n" +"PO-Revision-Date: 2018-02-10 05:46+0000\n" +"Last-Translator: Ana-Maria Olujić , " +"2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Šifra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Organizacija" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Stvorio/la" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Stvoreno dana" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupiraj po" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnju izmjenu izvršio/la" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Stavka naloga za nabavu" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Prodajni nalog" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Porez" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Točno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Vrsta" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/hr_HR.po b/l10n_fr_ecotaxe/i18n/hr_HR.po new file mode 100644 index 000000000..4bf9b232d --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/hr_HR.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Bole , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-24 05:39+0000\n" +"PO-Revision-Date: 2018-03-24 05:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktivan" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Šifra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Poduzeće" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Prupiraj po" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Predložak proizvoda" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Prodjani nalog" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Porez" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tip" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/hu.po b/l10n_fr_ecotaxe/i18n/hu.po new file mode 100644 index 000000000..39df143fb --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/hu.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktív" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Vállalat" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Csoportosítás..." + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Számla" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Számlasor" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Név" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Vevői megrendelés" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Adó" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Típus" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/id.po b/l10n_fr_ecotaxe/i18n/id.po new file mode 100644 index 000000000..9f03d628d --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/id.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Wahyu Setiawan , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Wahyu Setiawan , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktif" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Kode" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Perusahaan" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Dikelompokan berdasarkan .." + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktur" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Diubah pada" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Terakhir Diperbaharui oleh" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Terakhir Diperbaharui pada" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nama" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Jenis" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/it.po b/l10n_fr_ecotaxe/i18n/it.po new file mode 100644 index 000000000..96d2a35a0 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/it.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2023-05-12 13:00+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Attivo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Codice" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Azienda" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Raggruppa per" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Fattura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Riga Fattura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "Imposta della fattura" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nome" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Prodotto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Categoria Prodotto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Template Prodotto" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Ordine di acquisto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Riga ordine di acquisto" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Ordine di vendita" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Riga ordine di vendita" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Imposta" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Vero" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ja.po b/l10n_fr_ecotaxe/i18n/ja.po new file mode 100644 index 000000000..1df54483e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ja.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "有効" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "会社" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "グループ化" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "請求書" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "請求行" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "名前" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "タイプ" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ko.po b/l10n_fr_ecotaxe/i18n/ko.po new file mode 100644 index 000000000..8ac461062 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ko.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "그룹화" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "이름" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "유형" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot b/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot new file mode 100644 index 000000000..e63e517e6 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \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_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_ecotaxe_category +msgid "Account Ecotaxe Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_ecotaxe_classification +msgid "Account Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__active +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "Click to start a new Ecotaxe Classification." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_category +msgid "Click to start a new Ecotaxe category." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__code +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__code +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__company_id +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__create_uid +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__create_uid +msgid "Created by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__create_date +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__create_date +msgid "Created on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__default_fixed_ecotaxe +msgid "Default Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_account_ecotaxe_classification__default_fixed_ecotaxe +msgid "Default fixed ecotaxe amount." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__description +msgid "Description" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__display_name +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__display_name +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_product_product__ecotaxe_amount +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_product_template__ecotaxe_amount +msgid "Ecotaxe Amount" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_product_product__ecotaxe_amount +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_product_template__ecotaxe_amount +msgid "Ecotaxe Amount computed form Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_product_product__ecotaxe_classification_id +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_product_template__ecotaxe_classification_id +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_coef +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_deb_code +msgid "Ecotaxe Deb Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_scale_code +msgid "Ecotaxe Scale Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_type +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_move_line__unit_ecotaxe_amount +msgid "Ecotaxe Unit." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_category +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__account_ecotaxe_categ_id +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_category +msgid "Ecotaxe category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_supplier_status +msgid "" +"FAB ==> Fabricant : est établi en France et fabrique des EEE\n" +"sous son propre nom ou sa propre marque, ou fait concevoir ou\n" +" fabriquer des EEE et les commercialise sous\n" +" son propre nom et sa propre marque\n" +"REV ==> Revendeur sous sa marque : est établi en France et vend,\n" +" sous son propre nom ou sa propre marque des EEE produits\n" +" par d'autres fournisseursINT ==> Introducteur : est établi en France et met sur le marché\n" +"des EEE provenant d'un autre Etat membreIMP ==> Importateur : est établi en France et met sur marché\n" +"des EEE provenant de pays hors Union EuropéenneDIS ==> Vendeur à distance : est établie dans un autre Etat\n" +"membre ou dans un pays tiers et vend en France des EEE par\n" +"communication à distance" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_supplier_status__fab +msgid "Fabricant" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_type__fixed +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_search +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__id +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__id +msgid "ID" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_type +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_supplier_status__imp +msgid "Importateur" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: code:addons/l10n_fr_ecotaxe/models/account_move.py:0 +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_bank_statement_line__amount_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_move__amount_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_payment__amount_ecotaxe +#, python-format +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_supplier_status__int +msgid "Introducteur" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category____last_update +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification____last_update +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__write_uid +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__write_date +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__write_date +msgid "Last Updated on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_product_product__manual_fixed_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_product_template__manual_fixed_ecotaxe +msgid "Manual Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_product_product__manual_fixed_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_product_template__manual_fixed_ecotaxe +msgid "" +"Manual Fixed ecotaxe.\n" +"Allow to subtite default Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_product_status__m +msgid "Menager" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_category__name +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__name +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_category_form +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_product_status +msgid "Product Status" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_product_status__p +msgid "Professionnel" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_supplier_status__rev +msgid "Revendeur sous sa marque" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_category_search +msgid "Search Ecotaxe category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,help:l10n_fr_ecotaxe.field_account_ecotaxe_classification__company_id +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for" +" specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_move_line__subtotal_ecotaxe +msgid "Subtotal Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields,field_description:l10n_fr_ecotaxe.field_account_ecotaxe_classification__ecotaxe_supplier_status +msgid "Supplier Status" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: code:addons/l10n_fr_ecotaxe/models/account_move.py:0 +#: code:addons/l10n_fr_ecotaxe/models/account_move.py:0 +#, python-format +msgid "Untaxed Amount" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_supplier_status__dis +msgid "Vendeur à distance" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model.fields.selection,name:l10n_fr_ecotaxe.selection__account_ecotaxe_classification__ecotaxe_type__weight_based +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_classification_search +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model_terms:ir.ui.view,arch_db:l10n_fr_ecotaxe.ecotaxe_category_search +msgid "category" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/lt.po b/l10n_fr_ecotaxe/i18n/lt.po new file mode 100644 index 000000000..c140cabda --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/lt.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktyvus" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Įmonė" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupuoti pagal" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Sąskaita faktūra" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Sąskaitos faktūros eilutė" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Pavadinimas" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipas" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/lt_LT.po b/l10n_fr_ecotaxe/i18n/lt_LT.po new file mode 100644 index 000000000..20958ec13 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/lt_LT.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/lv.po b/l10n_fr_ecotaxe/i18n/lv.po new file mode 100644 index 000000000..357711231 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/lv.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktīvs" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Uzņēmums" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupēt pēc" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nosaukums" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tips" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/mk.po b/l10n_fr_ecotaxe/i18n/mk.po new file mode 100644 index 000000000..08f5ac102 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/mk.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Активно" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Компанија" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Групирај по" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ставка од фактура" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Име" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Тип" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/mn.po b/l10n_fr_ecotaxe/i18n/mn.po new file mode 100644 index 000000000..e072ce95a --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/mn.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Идэвхитэй" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Компани" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Бүлэглэх" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Нэхэмжлэл" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Нэхэмжлэлийн мөр" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Нэр" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Төрөл" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/nb.po b/l10n_fr_ecotaxe/i18n/nb.po new file mode 100644 index 000000000..3d8fb687f --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nb.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiv" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupper etter" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturalinje" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Navn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/nb_NO.po b/l10n_fr_ecotaxe/i18n/nb_NO.po new file mode 100644 index 000000000..d1bbc8f77 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nb_NO.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Imre Kristoffer Eilertsen , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiv" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Kode" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Gruppe laget av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Innmelding" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/nl.po b/l10n_fr_ecotaxe/i18n/nl.po new file mode 100644 index 000000000..9fc495a21 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nl.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Erwin van der Ploeg , 2017 +# lfreeke , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: lfreeke , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Actief" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Code" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Vast" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Groepeer op" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurregel" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naam" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Product" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Productcategorie" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Inkooporder" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Verkooporder" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Verkooporderregel" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Belasting" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Waar" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/nl_BE.po b/l10n_fr_ecotaxe/i18n/nl_BE.po new file mode 100644 index 000000000..4253dfac0 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nl_BE.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Sarah Druyts , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Sarah Druyts , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Actief" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Groeperen op" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurlijn" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naam" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Belasting" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Type" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/nl_NL.po b/l10n_fr_ecotaxe/i18n/nl_NL.po new file mode 100644 index 000000000..80233de76 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nl_NL.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-25 04:49+0000\n" +"PO-Revision-Date: 2017-11-25 04:49+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Actief" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Groeperen op" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurregel" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naam" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Product" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Inkooporderregel" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Verkooporder" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Verkooporderregel" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/pl.po b/l10n_fr_ecotaxe/i18n/pl.po new file mode 100644 index 000000000..8caa19aa8 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pl.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktywny" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Kod" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Pogrupuj wg" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nazwa" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Typ" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/pt.po b/l10n_fr_ecotaxe/i18n/pt.po new file mode 100644 index 000000000..55b39c635 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pt.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Daniel Reis , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Daniel Reis , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "Classificação" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Código" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha de fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nome" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Ordem de Venda" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/pt_BR.po b/l10n_fr_ecotaxe/i18n/pt_BR.po new file mode 100644 index 000000000..61ffa8e1d --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pt_BR.po @@ -0,0 +1,334 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# falexandresilva , 2017 +# danimaribeiro , 2017 +# Felipe Lopes , 2017 +# Armando Vulcano Junior , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Armando Vulcano Junior , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Ativo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "Classificação" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Código" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Agrupado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nome" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Categoria do produto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Modelo Produto" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Pedido de compra" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linha pedido de compra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Pedido de venda" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linha pedido de venda" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Imposto" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "True" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/pt_PT.po b/l10n_fr_ecotaxe/i18n/pt_PT.po new file mode 100644 index 000000000..a70c89393 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pt_PT.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Pedro Castro Silva , " +"2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Ativo" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Código" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da Fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nome" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linha de Encomenda de Compra" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "True" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipo" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ro.po b/l10n_fr_ecotaxe/i18n/ro.po new file mode 100644 index 000000000..faa2e1ec4 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ro.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# Dorin Hongu , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Activ(a)" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Companie" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupează după" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linie factura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Nume" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produs" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Produs șablon" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Comandă achiziție" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Linie comandă achiziție" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Comandă vânzare" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linie comandă vânzare" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tip" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/ru.po b/l10n_fr_ecotaxe/i18n/ru.po new file mode 100644 index 000000000..4ef2fe295 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ru.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Victor Safronovich , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: Victor Safronovich , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Активное" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Код" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Компания" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Счет" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Позиция счета" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Название" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Товар/Услуга" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Тип" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/sk.po b/l10n_fr_ecotaxe/i18n/sk.po new file mode 100644 index 000000000..bc283dd96 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sk.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Jan Prokop , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Jan Prokop , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktívne" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Spoločnosť" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Zoskupiť podľa" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravil" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravené" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Meno" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Produkt" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Kategória produktu" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Objednávka predaja" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Položky objednávky" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Typ" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/sk_SK.po b/l10n_fr_ecotaxe/i18n/sk_SK.po new file mode 100644 index 000000000..1f896cba9 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sk_SK.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/" +"sk_SK/)\n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktúra" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/sl.po b/l10n_fr_ecotaxe/i18n/sl.po new file mode 100644 index 000000000..37c3bcb66 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sl.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Matjaž Mozetič , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Matjaž Mozetič , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "Klasifikacija" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Koda" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Družba" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Fiksni" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Združi po" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Postavka računa" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Proizvod" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Kategorija proizvoda" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Predloga proizvoda" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Nabavni nalog" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Postavka nabavnega naloga" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Prodajni nalog" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Postavka prodajnega naloga" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Davek" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Pravilno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tip" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/sr.po b/l10n_fr_ecotaxe/i18n/sr.po new file mode 100644 index 000000000..5ed473d94 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sr.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupiši po" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Ime" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tip" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/sr@latin.po b/l10n_fr_ecotaxe/i18n/sr@latin.po new file mode 100644 index 000000000..46c71791e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sr@latin.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktivno" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupisano po" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Ime:" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tip" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/sv.po b/l10n_fr_ecotaxe/i18n/sv.po new file mode 100644 index 000000000..7c46357a9 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sv.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Aktiv" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Bolag" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Gruppera efter" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturarad" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Namn" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Typ" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/th.po b/l10n_fr_ecotaxe/i18n/th.po new file mode 100644 index 000000000..dc4b59347 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/th.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "เปิดใช้งาน" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "บริษัท" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "จัดกลุ่มโดย" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "ใบแจ้งหนี้" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "ชื่อ" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "ชนิด" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/tr.po b/l10n_fr_ecotaxe/i18n/tr.po new file mode 100644 index 000000000..faac6bc40 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/tr.po @@ -0,0 +1,332 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Ozge Altinisik , 2017 +# Ahmet Altinisik , 2017 +# Ivan BARAYEV , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Ivan BARAYEV , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Etkin" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Kod" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Şirket" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "Sabit" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupla" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fatura kalemi" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Adı" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Ürün" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Sipariş Emri" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Sipariş Kalemi" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "Vergi" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "True" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tipi" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/tr_TR.po b/l10n_fr_ecotaxe/i18n/tr_TR.po new file mode 100644 index 000000000..b0b188be0 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/tr_TR.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Etkin" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Grupla" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fatura hizası" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Ad" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Ürün" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Ürün şablonu" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Satış emri" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Sipariş emri satırı " + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "Doğru" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Tip" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/uk.po b/l10n_fr_ecotaxe/i18n/uk.po new file mode 100644 index 000000000..ae370b3f6 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/uk.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Групувати за" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Name" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Тип" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/vi.po b/l10n_fr_ecotaxe/i18n/vi.po new file mode 100644 index 000000000..625c1e7b1 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/vi.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Hoạt động" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "Group By" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Tên" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "Loại" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/vi_VN.po b/l10n_fr_ecotaxe/i18n/vi_VN.po new file mode 100644 index 000000000..8b0a295c3 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/vi_VN.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "Có hiệu lực" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "Mã" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "Tên" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "Sản phẩm" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "Mẫu sản phẩm" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "Đơn hàng Mua" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "Đơn hàng Bán" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/zh_CN.po b/l10n_fr_ecotaxe/i18n/zh_CN.po new file mode 100644 index 000000000..bfb7c891a --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/zh_CN.po @@ -0,0 +1,331 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +# ITGeeker , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-17 14:35+0000\n" +"PO-Revision-Date: 2017-11-17 14:35+0000\n" +"Last-Translator: ITGeeker , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "激活" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "代码" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "公司" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "分组" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "ID" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "发票" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "发票明细" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "名称" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "产品" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "产品模板" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "销售订单" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "类型" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/i18n/zh_TW.po b/l10n_fr_ecotaxe/i18n/zh_TW.po new file mode 100644 index 000000000..fe95f8c7a --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/zh_TW.po @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-19 02:52+0000\n" +"PO-Revision-Date: 2017-05-19 02:52+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,help:l10n_fr_ecotaxe.action_ecotaxe_classification +msgid "" +"

\n" +" Click to start a new Ecotaxe Classification.\n" +"

\n" +" " +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,active:0 +msgid "Active" +msgstr "活躍" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,company_id:0 +msgid "Company" +msgstr "公司" + +#. module: l10n_fr_ecotaxe +#: field:product.product,computed_ecotaxe:0 +msgid "Coputed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: l10n_fr_ecotaxe +#: help:product.category,default_fixed_ecotaxe:0 +msgid "" +"Default value of fixed ecotaxe.\n" +"This value is set when you choise the category \n" +"on creating a new product (triged by on change product category)\n" +"Set this field to 0 if you want not default value" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.line,amount_ecotaxe:0 field:account.tax,is_ecotaxe:0 +#: field:purchase.order.line,amount_ecotaxe:0 +#: field:sale.order.line,amount_ecotaxe:0 +msgid "Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.actions.act_window,name:l10n_fr_ecotaxe.action_ecotaxe_classification +#: model:ir.ui.menu,name:l10n_fr_ecotaxe.menu_ecotaxe_classification +#: field:product.product,ecotaxe_classification_ids:0 +#: field:product.template,ecotaxe_classification_ids:0 +msgid "Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 +#: field:product.category,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_type:0 +#: field:product.category,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:product.template:l10n_fr_ecotaxe.product_template_form_ecotaxe +msgid "Ecotaxe classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,computed_ecotaxe:0 +msgid "" +"Ecotaxe value :\n" +"product weight * ecotaxe coef of Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +msgid "Ecotaxes settings" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,fixed_ecotaxe:0 +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.product,fixed_ecotaxe:0 +msgid "Fixed ecotaxe of the Ecotaxe Classification\n" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice.tax,generic_base:0 +msgid "Generic base" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.invoice.tax,generic_base:0 +msgid "" +"Generic base is used to get different base depending on ecotaxe type. For " +"fixed taxe generic base is the qty sum of all product liable to this taxe. " +"For wight base ecotaxe the geneic base is the weight sum of all product " +"liable to this taxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Group By" +msgstr "分組方式" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,id:0 +msgid "ID" +msgstr "編號" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,ecotaxe_type:0 +#: help:product.category,ecotaxe_type:0 +msgid "" +"If ecotaxe is weight based,the ecotaxe coef must take into account\n" +"the weight unit of measure (kg by default)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_ecotaxe:0 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 +msgid "Included Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice +msgid "Invoice" +msgstr "發票" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line +msgid "Invoice Line" +msgstr "發票明細" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.ecotaxe_classification_form +#: field:account.ecotaxe.classification,name:0 +msgid "Name" +msgstr "名稱" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_tax_without_ecotaxe:0 +#: field:purchase.order,amount_tax_without_ecotaxe:0 +#: field:sale.order,amount_tax_without_ecotaxe:0 +msgid "Other Taxes" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_product +msgid "Product" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_template +msgid "Product Template" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,purchase_ecotaxe_id:0 +msgid "Purchase EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,sale_ecotaxe_id:0 +msgid "Sale EcoTaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Search Ecotaxe Classification" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,company_id:0 +msgid "" +"Specify a company if you want to define this Ecotaxe Classification only for " +"specific company. Otherwise, this Fiscal Classification will be available " +"for all companies." +msgstr "" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_account_tax +msgid "Tax" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.invoice:l10n_fr_ecotaxe.invoice_form +#: view:account.invoice:l10n_fr_ecotaxe.invoice_supplier_form +#: view:purchase.order:l10n_fr_ecotaxe.view_purchase_order_form +#: view:sale.order:l10n_fr_ecotaxe.view_order_form +msgid "True" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +msgid "Type" +msgstr "類型" + +#. module: l10n_fr_ecotaxe +#: field:account.invoice,amount_untaxed_with_ecotaxe:0 +#: field:purchase.order,amount_untaxed_with_ecotaxe:0 +#: field:sale.order,amount_untaxed_with_ecotaxe:0 +msgid "Untaxed Amount with Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.tax,is_ecotaxe:0 +msgid "" +"Warning : To include Ecotaxe in the VAT tax check this :\n" +"1: check \"included in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: view:account.ecotaxe.classification:l10n_fr_ecotaxe.view_account_fiscalyear_search +#: selection:account.ecotaxe.classification,ecotaxe_type:0 +#: selection:product.category,ecotaxe_type:0 +msgid "Weight based" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:account.ecotaxe.classification,fixed_ecotaxe:0 +msgid "fixed ecotaxe amount.\n" +msgstr "" diff --git a/l10n_fr_ecotaxe/migrations/16.0.2.0.0/post-migration.py b/l10n_fr_ecotaxe/migrations/16.0.2.0.0/post-migration.py new file mode 100644 index 000000000..9376042ae --- /dev/null +++ b/l10n_fr_ecotaxe/migrations/16.0.2.0.0/post-migration.py @@ -0,0 +1,35 @@ +# Copyright 2024 Akretion France (http://www.akretion.com/) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + # Due to the bug of update module we need to deactivate view + openupgrade.logged_query( + env.cr, + """ + UPDATE ir_ui_view set + active = True + WHERE id in ( + SELECT "ir_ui_view".id FROM "ir_ui_view" + WHERE (("ir_ui_view"."active" = False) + AND (unaccent(COALESCE("ir_ui_view"."arch_db"->>'fr_FR', + "ir_ui_view"."arch_db"->>'en_US')) ilike unaccent('%classification_id%'))) +) + """, + ) + openupgrade.logged_query( + env.cr, + """ + UPDATE ir_ui_view set + active = False WHERE id in ( + SELECT "ir_ui_view".id FROM "ir_ui_view" + WHERE (("ir_ui_view"."active" = true) + AND (unaccent(COALESCE("ir_ui_view"."arch_db"->>'fr_FR', + "ir_ui_view"."arch_db"->>'en_US')) ilike unaccent('%ecotaxe_classification_id%'))) + ORDER BY "ir_ui_view"."priority" ASC LIMIT 80) + """, + ) diff --git a/l10n_fr_ecotaxe/migrations/16.0.2.0.0/pre-migration.py b/l10n_fr_ecotaxe/migrations/16.0.2.0.0/pre-migration.py new file mode 100644 index 000000000..c0d074fe6 --- /dev/null +++ b/l10n_fr_ecotaxe/migrations/16.0.2.0.0/pre-migration.py @@ -0,0 +1,216 @@ +# Copyright 2024 Akretion France (http://www.akretion.com/) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + # Due to the bug of update module we need to deactivate view + openupgrade.logged_query( + env.cr, + """ + UPDATE ir_ui_view set + active = False + WHERE id in ( + SELECT "ir_ui_view".id FROM "ir_ui_view" + WHERE (("ir_ui_view"."active" = true) + AND (unaccent(COALESCE("ir_ui_view"."arch_db"->>'fr_FR', + "ir_ui_view"."arch_db"->>'en_US')) ilike unaccent('%ecotaxe_classification_id%'))) + ORDER BY "ir_ui_view"."priority" ASC LIMIT 80 +) + """, + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "categ_id" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "accoun_tecotaxe_classification", + "account_ecotaxe_categ_id", + "categ_id", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "sector_id" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "account_ecotaxe_classification", + "ecotaxe_sector_id", + "sector_id", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "collector_id" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "account_ecotaxe_classification", + "ecotaxe_collector_id", + "collector_id", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "product_status" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "account_ecotaxe_classification", + "ecotaxe_product_status", + "product_status", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "supplier_status" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "account_ecotaxe_classification", + "ecotaxe_supplier_status", + "supplier_status", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "emebi_code" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "account_ecotaxe_classification", + "ecotaxe_deb_code", + "emebi_code", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_ecotaxe_classification", "scale_code" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.ecotaxe.classification", + "account_ecotaxe_classification", + "ecotaxe_scale_code", + "scale_code", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_move_line_ecotaxe", "classification_id" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.move.line.ecotaxe", + "account_move_line_ecotaxe", + "ecotaxe_classification_id", + "classification_id", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_move_line_ecotaxe", "amount_unit" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.move.line.ecotaxe", + "account_move_line_ecotaxe", + "ecotaxe_amount_unit", + "amount_unit", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_move_line_ecotaxe", "amount_total" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.move.line.ecotaxe", + "account_move_line_ecotaxe", + "ecotaxe_amount_total", + "amount_total", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "account_move_line_ecotaxe", "force_amount_unit" + ): + openupgrade.rename_fields( + env, + [ + ( + "account.move.line.ecotaxe", + "account_move_line_ecotaxe", + "force_ecotaxe_unit", + "force_amount_unit", + ), + ], + ) + if not openupgrade.column_exists( + env.cr, "ecotaxe_line_product", "classification_id" + ): + openupgrade.rename_fields( + env, + [ + ( + "ecotaxe.line.product", + "ecotaxe_line_product", + "ecotaxe_classification_id", + "classification_id", + ), + ], + ) + if not openupgrade.column_exists(env.cr, "ecotaxe_line_product", "force_amount"): + openupgrade.rename_fields( + env, + [ + ( + "ecotaxe.line.product", + "ecotaxe_line_product", + "force_ecotaxe_amount", + "force_amount", + ), + ], + ) + if not openupgrade.column_exists(env.cr, "ecotaxe_line_product", "amount"): + openupgrade.rename_fields( + env, + [ + ( + "ecotaxe.line.product", + "ecotaxe_line_product", + "ecotaxe_amount", + "amount", + ), + ], + ) diff --git a/l10n_fr_ecotaxe/models/__init__.py b/l10n_fr_ecotaxe/models/__init__.py new file mode 100644 index 000000000..13ee107c7 --- /dev/null +++ b/l10n_fr_ecotaxe/models/__init__.py @@ -0,0 +1,11 @@ +from . import account_ecotaxe_category +from . import account_ecotaxe_classification +from . import account_move +from . import account_move_line +from . import ecotaxe_line_product +from . import product_template +from . import ecotaxe_line_mixin +from . import account_move_line_ecotaxe +from . import product_product +from . import ecotaxe_sector +from . import ecotaxe_collector diff --git a/l10n_fr_ecotaxe/models/account_ecotaxe_category.py b/l10n_fr_ecotaxe/models/account_ecotaxe_category.py new file mode 100644 index 000000000..d58df89ec --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_ecotaxe_category.py @@ -0,0 +1,15 @@ +# Copyright 2021 Camptocamp +# @author Silvio Gregorini +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class AccountEcotaxeCategory(models.Model): + _name = "account.ecotaxe.category" + _description = "Account Ecotaxe Category" + + name = fields.Char(required=True) + code = fields.Char(required=True) + description = fields.Char() + active = fields.Boolean(default=True) diff --git a/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py b/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py new file mode 100644 index 000000000..1ee618c09 --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py @@ -0,0 +1,93 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class AccountEcotaxeClassification(models.Model): + _name = "account.ecotaxe.classification" + _description = "Account Ecotaxe Classification" + + @api.model + def _default_company_id(self): + return self.env.company + + name = fields.Char(required=True) + code = fields.Char() + ecotaxe_type = fields.Selection( + [("fixed", "Fixed"), ("weight_based", "Weight based")], + required=True, + help="If ecotaxe is weight based," + "the ecotaxe coef must take into account\n" + "the weight unit of measure (kg by default)", + ) + ecotaxe_coef = fields.Float( + digits="Ecotaxe", compute="_compute_ecotaxe_vals", readonly=False, store=True + ) + default_fixed_ecotaxe = fields.Float( + digits="Ecotaxe", + help="Default fixed ecotaxe amount.", + compute="_compute_ecotaxe_vals", + readonly=False, + store=True, + ) + categ_id = fields.Many2one( + comodel_name="account.ecotaxe.category", + string="Category", + ) + sector_id = fields.Many2one( + comodel_name="ecotaxe.sector", + string="Ecotaxe sector", + ) + collector_id = fields.Many2one( + comodel_name="ecotaxe.collector", + string="Ecotaxe collector", + ) + active = fields.Boolean(default=True) + company_id = fields.Many2one( + comodel_name="res.company", + default=_default_company_id, + help="Specify a company" + " if you want to define this Ecotaxe Classification only for specific" + " company. Otherwise, this Fiscal Classification will be available" + " for all companies.", + ) + product_status = fields.Selection( + [("M", "Menager"), ("P", "Professionnel")], + required=True, + ) + supplier_status = fields.Selection( + [ + ("FAB", "Fabricant"), + ("REV", "Revendeur sous sa marque"), + ("INT", "Introducteur"), + ("IMP", "Importateur"), + ("DIS", "Vendeur à distance"), + ], + required=True, + help="FAB ==> Fabricant : est établi en France et fabrique des EEE\n" + "sous son propre nom ou sa propre marque, ou fait concevoir ou\n" + " fabriquer des EEE et les commercialise sous\n" + " son propre nom et sa propre marque\n" + "REV ==> Revendeur sous sa marque : est établi en France et vend,\n" + " sous son propre nom ou sa propre marque des EEE produits\n" + " par d'autres fournisseurs" + "INT ==> Introducteur : est établi en France et met sur le marché\n" + "des EEE provenant d'un autre Etat membre" + "IMP ==> Importateur : est établi en France et met sur marché\n" + "des EEE provenant de pays hors Union Européenne" + "DIS ==> Vendeur à distance : est établie dans un autre Etat\n" + "membre ou dans un pays tiers et vend en France des EEE par\n" + "communication à distance", + ) + emebi_code = fields.Char() + scale_code = fields.Char() + + @api.depends("ecotaxe_type") + def _compute_ecotaxe_vals(self): + for classif in self: + if classif.ecotaxe_type == "weight_based": + classif.default_fixed_ecotaxe = 0 + if classif.ecotaxe_type == "fixed": + classif.ecotaxe_coef = 0 diff --git a/l10n_fr_ecotaxe/models/account_move.py b/l10n_fr_ecotaxe/models/account_move.py new file mode 100644 index 000000000..a6ca92d9f --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_move.py @@ -0,0 +1,61 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import _, api, fields, models +from odoo.tools.misc import formatLang + + +class AccountMove(models.Model): + _inherit = "account.move" + + amount_ecotaxe = fields.Float( + digits="Ecotaxe", + string="Included Ecotaxe", + store=True, + compute="_compute_ecotaxe", + ) + + @api.depends("invoice_line_ids.subtotal_ecotaxe") + def _compute_ecotaxe(self): + for move in self: + move.amount_ecotaxe = sum(move.line_ids.mapped("subtotal_ecotaxe")) + + @api.model + def _get_tax_totals( + self, partner, tax_lines_data, amount_total, amount_untaxed, currency + ): + """Include Ecotax when this method is called upon a single invoice + + NB: `_get_tax_totals()` is called when field `tax_totals_json` is + computed, which is used in invoice form view to display taxes and + totals. + """ + res = super()._get_tax_totals( + partner, tax_lines_data, amount_total, amount_untaxed, currency + ) + if len(self) != 1: + return res + + base_amt = self.amount_total + ecotax_amt = self.amount_ecotaxe + if not ecotax_amt: + return res + + env = self.with_context(lang=partner.lang).env + fmt_ecotax_amt = formatLang(env, ecotax_amt, currency_obj=currency) + fmt_base_amt = formatLang(env, base_amt, currency_obj=currency) + data = list(res["groups_by_subtotal"].get(_("Untaxed Amount")) or []) + data.append( + { + "tax_group_name": _("Included Ecotaxe"), + "tax_group_amount": ecotax_amt, + "formatted_tax_group_amount": fmt_ecotax_amt, + "tax_group_base_amount": base_amt, + "formatted_tax_group_base_amount": fmt_base_amt, + "tax_group_id": False, # Not an actual tax + "group_key": "Included Ecotaxe", + } + ) + res["groups_by_subtotal"][_("Untaxed Amount")] = data + return res diff --git a/l10n_fr_ecotaxe/models/account_move_line.py b/l10n_fr_ecotaxe/models/account_move_line.py new file mode 100644 index 000000000..19a7cd5c7 --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_move_line.py @@ -0,0 +1,79 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class AcountMoveLine(models.Model): + _inherit = "account.move.line" + + ecotaxe_line_ids = fields.One2many( + "account.move.line.ecotaxe", + "account_move_line_id", + string="Ecotaxe lines", + copy=True, + ) + subtotal_ecotaxe = fields.Float( + digits="Ecotaxe", store=True, compute="_compute_ecotaxe" + ) + ecotaxe_amount_unit = fields.Float( + digits="Ecotaxe", + string="Ecotaxe Unit.", + store=True, + compute="_compute_ecotaxe", + ) + + @api.depends( + "move_id.currency_id", + "ecotaxe_line_ids", + "ecotaxe_line_ids.amount_unit", + "ecotaxe_line_ids.amount_total", + ) + def _compute_ecotaxe(self): + for line in self: + unit = sum(line.ecotaxe_line_ids.mapped("amount_unit")) + subtotal_ecotaxe = sum(line.ecotaxe_line_ids.mapped("amount_total")) + + line.update( + { + "ecotaxe_amount_unit": unit, + "subtotal_ecotaxe": subtotal_ecotaxe, + } + ) + + @api.onchange("product_id") + def _onchange_product_ecotaxe_line(self): + """Unlink and recreate ecotaxe_lines when modifying the product_id.""" + if self.product_id: + self.ecotaxe_line_ids = [(5,)] # Remove all ecotaxe classification + ecotax_cls_vals = [] + for ecotaxeline_prod in self.product_id.all_ecotaxe_line_product_ids: + classif_id = ecotaxeline_prod.classification_id.id + forced_amount = ecotaxeline_prod.force_amount + ecotax_cls_vals.append( + ( + 0, + 0, + { + "classification_id": classif_id, + "force_amount_unit": forced_amount, + }, + ) + ) + self.ecotaxe_line_ids = ecotax_cls_vals + else: + self.ecotaxe_line_ids = [(5,)] # Remove all ecotaxe classification + + def edit_ecotaxe_lines(self): + view = { + "name": ("Ecotaxe classification"), + "view_type": "form", + "view_mode": "form", + "res_model": "account.move.line", + "view_id": self.env.ref("l10n_fr_ecotaxe.view_move_line_ecotaxe_form").id, + "type": "ir.actions.act_window", + "target": "new", + "res_id": self.id, + } + return view diff --git a/l10n_fr_ecotaxe/models/account_move_line_ecotaxe.py b/l10n_fr_ecotaxe/models/account_move_line_ecotaxe.py new file mode 100644 index 000000000..40dc8603d --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_move_line_ecotaxe.py @@ -0,0 +1,28 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class AccountMoveLineEcotaxe(models.Model): + _name = "account.move.line.ecotaxe" + _inherit = "ecotaxe.line.mixin" + _description = "Account move line ecotaxe" + + account_move_line_id = fields.Many2one( + comodel_name="account.move.line", + string="Account move line", + required=True, + readonly=True, + index=True, + auto_join=True, + ondelete="cascade", + ) + product_id = fields.Many2one( + "product.product", related="account_move_line_id.product_id", readonly=True + ) + quantity = fields.Float(related="account_move_line_id.quantity", readonly=True) + currency_id = fields.Many2one( + related="account_move_line_id.currency_id", readonly=True + ) diff --git a/l10n_fr_ecotaxe/models/ecotaxe_collector.py b/l10n_fr_ecotaxe/models/ecotaxe_collector.py new file mode 100644 index 000000000..619c90ed7 --- /dev/null +++ b/l10n_fr_ecotaxe/models/ecotaxe_collector.py @@ -0,0 +1,14 @@ +# Copyright 2021 Camptocamp +# @author Silvio Gregorini +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class EcotaxeCollector(models.Model): + _name = "ecotaxe.collector" + _description = "Ecotaxe collector" + + name = fields.Char(required=True) + partner_id = fields.Many2one("res.partner", string="Partner", required=False) + active = fields.Boolean(default=True) diff --git a/l10n_fr_ecotaxe/models/ecotaxe_line_mixin.py b/l10n_fr_ecotaxe/models/ecotaxe_line_mixin.py new file mode 100644 index 000000000..58e4f26c9 --- /dev/null +++ b/l10n_fr_ecotaxe/models/ecotaxe_line_mixin.py @@ -0,0 +1,59 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class EcotaxeLineMixin(models.AbstractModel): + """Mixin class for objects which can be used to save + multi ecotaxe calssification by account move line + or sale order line.""" + + _name = "ecotaxe.line.mixin" + _description = "Ecotaxe Line Mixin" + + product_id = fields.Many2one("product.product", string="Product", readonly=True) + currency_id = fields.Many2one("res.currency", string="Currency") + classification_id = fields.Many2one( + "account.ecotaxe.classification", + string="Classification", + ) + amount_unit = fields.Float( + digits="Ecotaxe", + compute="_compute_ecotaxe", + help="Ecotaxe Amount computed form Classification or Manuel ecotaxe", + store=True, + ) + force_amount_unit = fields.Float( + digits="Ecotaxe", + help="Force ecotaxe.\n" "Allow to subtite default Ecotaxe Classification\n", + ) + amount_total = fields.Float( + digits="Ecotaxe", + compute="_compute_ecotaxe", + help="Ecotaxe Amount total computed form Classification or forced ecotaxe amount", + store=True, + ) + quantity = fields.Float(digits="Product Unit of Measure", readonly=True) + + @api.depends( + "classification_id", + "force_amount_unit", + "product_id", + "quantity", + ) + def _compute_ecotaxe(self): + for ecotaxeline in self: + ecotax_cls = ecotaxeline.classification_id + + if ecotax_cls.ecotaxe_type == "weight_based": + amt = ecotax_cls.ecotaxe_coef * (ecotaxeline.product_id.weight or 0.0) + else: + amt = ecotax_cls.default_fixed_ecotaxe + # force ecotaxe amount + if ecotaxeline.force_amount_unit: + amt = ecotaxeline.force_amount_unit + + ecotaxeline.amount_unit = amt + ecotaxeline.amount_total = ecotaxeline.amount_unit * ecotaxeline.quantity diff --git a/l10n_fr_ecotaxe/models/ecotaxe_line_product.py b/l10n_fr_ecotaxe/models/ecotaxe_line_product.py new file mode 100644 index 000000000..d5e650305 --- /dev/null +++ b/l10n_fr_ecotaxe/models/ecotaxe_line_product.py @@ -0,0 +1,78 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class EcotaxeLineProduct(models.Model): + """class for objects which can be used to save mutili ecotaxe calssification by product.""" + + _name = "ecotaxe.line.product" + _description = "Ecotaxe Line product" + + product_tmplt_id = fields.Many2one( + "product.template", string="Product Template", readonly=True + ) + product_id = fields.Many2one("product.product", string="Product", readonly=True) + currency_id = fields.Many2one(related="product_tmplt_id.currency_id", readonly=True) + classification_id = fields.Many2one( + "account.ecotaxe.classification", + string="Classification", + ) + force_amount = fields.Float( + digits="Ecotaxe", + help="Force ecotaxe amount.\n" + "Allow to substitute default Ecotaxe Classification\n", + ) + amount = fields.Float( + digits="Ecotaxe", + compute="_compute_ecotaxe", + help="Ecotaxe Amount computed form Classification or forced ecotaxe amount", + store=True, + ) + display_name = fields.Char(compute="_compute_display_name") + + @api.depends("classification_id", "amount") + def _compute_display_name(self): + for rec in self: + rec.display_name = "%s (%s)" % ( + rec.classification_id.name, + rec.amount, + ) + + @api.depends( + "classification_id", + "classification_id.ecotaxe_type", + "classification_id.ecotaxe_coef", + "force_amount", + ) + def _compute_ecotaxe(self): + for ecotaxeline in self: + ecotax_cls = ecotaxeline.classification_id + + if ecotax_cls.ecotaxe_type == "weight_based": + amt = ecotax_cls.ecotaxe_coef * ( + ecotaxeline.product_tmplt_id.weight + or ecotaxeline.product_id.weight + or 0.0 + ) + else: + amt = ecotax_cls.default_fixed_ecotaxe + # force ecotaxe amount + if ecotaxeline.force_amount: + amt = ecotaxeline.force_amount + ecotaxeline.amount = amt + + _sql_constraints = [ + ( + "unique_classification_id_by_product", + "UNIQUE(classification_id, product_id)", + "Only one ecotaxe classification occurrence by product", + ), + ( + "unique_classification_id_by_product_tmpl", + "UNIQUE(classification_id, product_tmplt_id)", + "Only one ecotaxe classification occurrence by product Template", + ), + ] diff --git a/l10n_fr_ecotaxe/models/ecotaxe_sector.py b/l10n_fr_ecotaxe/models/ecotaxe_sector.py new file mode 100644 index 000000000..766ab478d --- /dev/null +++ b/l10n_fr_ecotaxe/models/ecotaxe_sector.py @@ -0,0 +1,14 @@ +# Copyright 2021 Camptocamp +# @author Silvio Gregorini +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class EcotaxeSector(models.Model): + _name = "ecotaxe.sector" + _description = "Ecotaxe Sector" + + name = fields.Char(required=True) + description = fields.Char() + active = fields.Boolean(default=True) diff --git a/l10n_fr_ecotaxe/models/product_product.py b/l10n_fr_ecotaxe/models/product_product.py new file mode 100644 index 000000000..87393b223 --- /dev/null +++ b/l10n_fr_ecotaxe/models/product_product.py @@ -0,0 +1,80 @@ +# Copyright 2021 Camptocamp +# @author Silvio Gregorini +# Copyright 2023 Akretion (http://www.akretion.com) +# # @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models +from odoo.osv import expression + + +class ProductProduct(models.Model): + _inherit = "product.product" + + additional_ecotaxe_line_product_ids = fields.One2many( + "ecotaxe.line.product", + "product_id", + string="Additional ecotaxe lines", + copy=True, + domain="[('id', 'not in', ecotaxe_line_product_ids)]", + ) + all_ecotaxe_line_product_ids = fields.One2many( + "ecotaxe.line.product", + compute="_compute_all_ecotaxe_line_product_ids", + search="_search_all_ecotaxe_line_product_ids", + string="All ecotaxe lines", + help="Contain all ecotaxes classification defined in product template" + "and the additionnal\n" + "ecotaxes defined in product variant. For more details" + "see the product variant accounting tab", + ) + ecotaxe_amount = fields.Float( + digits="Ecotaxe", + compute="_compute_product_ecotaxe", + help="Ecotaxe Amount computed form all ecotaxe line classification", + store=True, + ) + + @api.depends("ecotaxe_line_product_ids", "additional_ecotaxe_line_product_ids") + def _compute_all_ecotaxe_line_product_ids(self): + for product in self: + product.all_ecotaxe_line_product_ids = ( + product.ecotaxe_line_product_ids + | product.additional_ecotaxe_line_product_ids + ) + + def _search_all_ecotaxe_line_product_ids(self, operator, operand): + if operator in expression.NEGATIVE_TERM_OPERATORS: + return [ + ("ecotaxe_line_product_ids", operator, operand), + ("additional_ecotaxe_line_product_ids", operator, operand), + ] + return [ + "|", + ("ecotaxe_line_product_ids", operator, operand), + ("additional_ecotaxe_line_product_ids", operator, operand), + ] + + @api.depends( + "all_ecotaxe_line_product_ids", + "all_ecotaxe_line_product_ids.classification_id", + "all_ecotaxe_line_product_ids.classification_id.ecotaxe_type", + "all_ecotaxe_line_product_ids.classification_id.ecotaxe_coef", + "all_ecotaxe_line_product_ids.force_amount", + "weight", + ) + def _compute_product_ecotaxe(self): + for product in self: + amount_ecotaxe = 0.0 + for ecotaxeline_prod in product.all_ecotaxe_line_product_ids: + ecotax_cls = ecotaxeline_prod.classification_id + ecotaxe_line = 0.0 + if ecotax_cls.ecotaxe_type == "weight_based": + ecotaxe_line = ecotax_cls.ecotaxe_coef * (product.weight or 0.0) + else: + ecotaxe_line = ecotax_cls.default_fixed_ecotaxe + # force ecotaxe amount by line + if ecotaxeline_prod.force_amount: + ecotaxe_line = ecotaxeline_prod.force_amount + amount_ecotaxe += ecotaxe_line + product.ecotaxe_amount = amount_ecotaxe diff --git a/l10n_fr_ecotaxe/models/product_template.py b/l10n_fr_ecotaxe/models/product_template.py new file mode 100644 index 000000000..115c4940a --- /dev/null +++ b/l10n_fr_ecotaxe/models/product_template.py @@ -0,0 +1,46 @@ +# © 2014-2023 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + ecotaxe_line_product_ids = fields.One2many( + "ecotaxe.line.product", + "product_tmplt_id", + string="Ecotaxe lines", + copy=True, + ) + ecotaxe_amount = fields.Float( + digits="Ecotaxe", + compute="_compute_ecotaxe", + help="Ecotaxe Amount computed form Classification", + store=True, + ) + + @api.depends( + "ecotaxe_line_product_ids", + "ecotaxe_line_product_ids.classification_id", + "ecotaxe_line_product_ids.classification_id.ecotaxe_type", + "ecotaxe_line_product_ids.classification_id.ecotaxe_coef", + "ecotaxe_line_product_ids.force_amount", + "weight", + ) + def _compute_ecotaxe(self): + for tmpl in self: + amount_ecotaxe = 0.0 + for ecotaxeline_prod in tmpl.ecotaxe_line_product_ids: + ecotax_cls = ecotaxeline_prod.classification_id + ecotaxe_line = 0.0 + if ecotax_cls.ecotaxe_type == "weight_based": + ecotaxe_line = ecotax_cls.ecotaxe_coef * (tmpl.weight or 0.0) + else: + ecotaxe_line = ecotax_cls.default_fixed_ecotaxe + # force ecotaxe amount by line + if ecotaxeline_prod.force_amount: + ecotaxe_line = ecotaxeline_prod.force_amount + amount_ecotaxe += ecotaxe_line + tmpl.ecotaxe_amount = amount_ecotaxe diff --git a/l10n_fr_ecotaxe/readme/CONTRIBUTORS.rst b/l10n_fr_ecotaxe/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..f55657f6b --- /dev/null +++ b/l10n_fr_ecotaxe/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Mourad EL HADJ MIMOUNE diff --git a/l10n_fr_ecotaxe/readme/DESCRIPTION.rst b/l10n_fr_ecotaxe/readme/DESCRIPTION.rst new file mode 100644 index 000000000..a0a6d4172 --- /dev/null +++ b/l10n_fr_ecotaxe/readme/DESCRIPTION.rst @@ -0,0 +1,31 @@ +This module applies to companies based in France mainland. It doesn't apply to +companies based in the DOM-TOMs (Guadeloupe, Martinique, Guyane, Réunion, +Mayotte). + +It add Ecotaxe amount on invoice line. +furthermore, a total ecotaxe are added at the footer of each document. + +To make easy ecotaxe management and to factor the data, ecotaxe are set on products via ECOTAXE classifications. +ECOTAXE classification can either a fixed or weight based ecotaxe. + +A product can have one or serveral ecotaxe classifications. For exemple wooden window blinds equipped with electric motor can +have ecotaxe for wood and ecotaxe for electric motor. + +This module version add the possibility to manage several ecotaxe classification by product. +A migration script is necessary to update from previous versions. + +There is the main change to manage in migration script: + +renamed field +model old field new field +account.move.line unit_ecotaxe_amount ecotaxe_amount_unit +product.template manual_fixed_ecotaxe force_ecotaxe_amount + +changed fields +model old field new field +product.template ecotaxe_classification_id ecotaxe_classification_ids + +added fields +model new field +account.move.line ecotaxe_line_ids +product.template ecotaxe_line_product_ids diff --git a/l10n_fr_ecotaxe/readme/USAGE.rst b/l10n_fr_ecotaxe/readme/USAGE.rst new file mode 100644 index 000000000..b8d93a29d --- /dev/null +++ b/l10n_fr_ecotaxe/readme/USAGE.rst @@ -0,0 +1,10 @@ +Add ecotaxe classification via the menu *Accounting > configuration > Taxes > Ecotaxe Classification*. +Ecotaxe classification is either a fixed ecotaxe or weight based ecotaxe. +ecotaxe classification Infos can be used for legal declarations. +For fixed ecotaxe, ecotaxe amount is used as default value. We can for ecotaxe amount on product. + +For weight based ecotaxe, we should define one ecotaxe by coef applied for the weight (depending on product materials). + +Assign one or more ecotaxe classification to a product. + +we can also force amount ecotaxe on account move line by classification. diff --git a/l10n_fr_ecotaxe/security/ir.model.access.csv b/l10n_fr_ecotaxe/security/ir.model.access.csv new file mode 100644 index 000000000..912c5c4ba --- /dev/null +++ b/l10n_fr_ecotaxe/security/ir.model.access.csv @@ -0,0 +1,13 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +ir_model_access_account_ecotaxe_classification_manager,Full access account_ecotaxe_classification to accountant,model_account_ecotaxe_classification,account.group_account_manager,1,1,1,1 +ir_model_access_account_ecotaxe_category_manager,Full access to account.ecotaxe.category to accoutant,model_account_ecotaxe_category,account.group_account_manager,1,1,1,1 +ir_model_access_ecotaxe_sector_manager,Full access to ecotaxe.sector to accoutant,model_ecotaxe_sector,account.group_account_manager,1,1,1,1 +ir_model_access_ecotaxe_collector_manager,Full access to ecotaxe.collector to accoutant,model_ecotaxe_collector,account.group_account_manager,1,1,1,1 +ir_model_access_account_ecotaxe_classification_user,Read access account_ecotaxe_classification to group invoice,model_account_ecotaxe_classification,account.group_account_invoice,1,0,0,0 +ir_model_access_account_ecotaxe_category_user,Read access to account.ecotaxe.category to group invoice,model_account_ecotaxe_category,account.group_account_invoice,1,0,0,0 +ir_model_access_ecotaxe_sector_user,Read access to ecotaxe.sector to group invoice,model_ecotaxe_sector,account.group_account_invoice,1,0,0,0 +ir_model_access_ecotaxe_collector_user,Read access to ecotaxe.collector to group invoice,model_ecotaxe_collector,account.group_account_invoice,1,0,0,0 +access_account_move_line_ecotaxe_readonly,account.move.line.ecotaxe readonly,model_account_move_line_ecotaxe,account.group_account_readonly,1,0,0,0 +ir_model_access_account_move_line_ecotaxe_group_invoice,Read Full acess to model_account_move_line_ecotaxe to group invoice,model_account_move_line_ecotaxe,account.group_account_invoice,1,1,1,1 +ir_model_access_ecotaxe_line_product_group_invoice,Read Full acess to model_ecotaxe_line_product to group invoice,model_ecotaxe_line_product,account.group_account_invoice,1,1,1,1 +access_ecotaxe_line_product_readonly,ecotaxe.line.product readonly,model_ecotaxe_line_product,account.group_account_readonly,1,0,0,0 diff --git a/l10n_fr_ecotaxe/security/ir_rule.xml b/l10n_fr_ecotaxe/security/ir_rule.xml new file mode 100644 index 000000000..4f3dcf8f3 --- /dev/null +++ b/l10n_fr_ecotaxe/security/ir_rule.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + Ecotaxe Classification + + + + ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] + + + diff --git a/l10n_fr_ecotaxe/static/description/icon.png b/l10n_fr_ecotaxe/static/description/icon.png new file mode 100644 index 000000000..ee185a69f Binary files /dev/null and b/l10n_fr_ecotaxe/static/description/icon.png differ diff --git a/l10n_fr_ecotaxe/static/description/index.html b/l10n_fr_ecotaxe/static/description/index.html new file mode 100644 index 000000000..b83e87104 --- /dev/null +++ b/l10n_fr_ecotaxe/static/description/index.html @@ -0,0 +1,454 @@ + + + + + + +France Custom Ecotaxe + + + +
+

France Custom Ecotaxe

+ + +

Beta License: AGPL-3 OCA/l10n-france Translate me on Weblate Try me on Runboat

+

This module applies to companies based in France mainland. It doesn’t apply to +companies based in the DOM-TOMs (Guadeloupe, Martinique, Guyane, Réunion, +Mayotte).

+

It add Ecotaxe amount on invoice line. +furthermore, a total ecotaxe are added at the footer of each document.

+

To make easy ecotaxe management and to factor the data, ecotaxe are set on products via ECOTAXE classifications. +ECOTAXE classification can either a fixed or weight based ecotaxe.

+

A product can have one or serveral ecotaxe classifications. For exemple wooden window blinds equipped with electric motor can +have ecotaxe for wood and ecotaxe for electric motor.

+

This module version add the possibility to manage several ecotaxe classification by product. +A migration script is necessary to update from previous versions.

+

There is the main change to manage in migration script:

+

renamed field +model old field new field +account.move.line unit_ecotaxe_amount ecotaxe_amount_unit +product.template manual_fixed_ecotaxe force_ecotaxe_amount

+

changed fields +model old field new field +product.template ecotaxe_classification_id ecotaxe_classification_ids

+

added fields +model new field +account.move.line ecotaxe_line_ids +product.template ecotaxe_line_product_ids

+

Table of contents

+ +
+

Usage

+

Add ecotaxe classification via the menu Accounting > configuration > Taxes > Ecotaxe Classification. +Ecotaxe classification is either a fixed ecotaxe or weight based ecotaxe. +ecotaxe classification Infos can be used for legal declarations. +For fixed ecotaxe, ecotaxe amount is used as default value. We can for ecotaxe amount on product.

+

For weight based ecotaxe, we should define one ecotaxe by coef applied for the weight (depending on product materials).

+

Assign one or more ecotaxe classification to a product.

+

we can also force amount ecotaxe on account move line by classification.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/l10n-france project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/l10n_fr_ecotaxe/tests/__init__.py b/l10n_fr_ecotaxe/tests/__init__.py new file mode 100644 index 000000000..34d755f32 --- /dev/null +++ b/l10n_fr_ecotaxe/tests/__init__.py @@ -0,0 +1 @@ +from . import test_ecotaxe diff --git a/l10n_fr_ecotaxe/tests/test_ecotaxe.py b/l10n_fr_ecotaxe/tests/test_ecotaxe.py new file mode 100644 index 000000000..9c18ab5de --- /dev/null +++ b/l10n_fr_ecotaxe/tests/test_ecotaxe.py @@ -0,0 +1,437 @@ +# Copyright 2016-2023 Akretion France +# @author: Alexis de Lattre +# Copyright 2021 Camptocamp +# @author Silvio Gregorini +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from random import choice + +from odoo.tests.common import Form, tagged + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +@tagged("-at_install", "post_install") +class TestInvoiceEcotaxe(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref="l10n_fr.l10n_fr_pcg_chart_template"): + super().setUpClass(chart_template_ref) + cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True)) + + # ECOTAXES + # 1- Fixed ecotax + cls.ecotax_fixed = cls.env["account.ecotaxe.classification"].create( + { + "name": "Fixed Ecotax", + "ecotaxe_type": "fixed", + "default_fixed_ecotaxe": 5.0, + "product_status": "M", + "supplier_status": "FAB", + } + ) + # 2- Weight-based ecotax + cls.ecotax_weight = cls.env["account.ecotaxe.classification"].create( + { + "name": "Weight Based Ecotax", + "ecotaxe_type": "weight_based", + "ecotaxe_coef": 0.04, + "product_status": "P", + "supplier_status": "FAB", + } + ) + + # ACCOUNTING STUFF + # 1- Tax account + cls.invoice_tax_account = cls.env["account.account"].create( + { + "code": "47590", + "name": "Invoice Tax Account", + "account_type": "liability_current", + "company_id": cls.env.user.company_id.id, + } + ) + # 2- Invoice tax with included price to avoid unwanted amounts in tests + cls.invoice_tax = cls.env["account.tax"].create( + { + "name": "Tax 10%", + "price_include": True, + "type_tax_use": "sale", + "company_id": cls.env.user.company_id.id, + "amount": 10, + "tax_exigibility": "on_invoice", + "invoice_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_tax_account.id, + }, + ), + ], + "refund_repartition_line_ids": [ + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "base", + }, + ), + ( + 0, + 0, + { + "factor_percent": 100, + "repartition_type": "tax", + "account_id": cls.invoice_tax_account.id, + }, + ), + ], + } + ) + + # MISC + # 1- Invoice partner + cls.invoice_partner = cls.env["res.partner"].create({"name": "Test"}) + + @classmethod + def _make_invoice(cls, products): + """Creates a new customer invoice with given products and returns it""" + return cls.init_invoice( + "out_invoice", + partner=cls.invoice_partner, + products=products, + company=cls.env.user.company_id, + taxes=cls.invoice_tax, + ) + + @classmethod + def _make_product(cls, ecotax_classification): + """Creates a product template with given ecotax classification + + Returns the newly created template variant + """ + tmpl = cls.env["product.template"].create( + { + "name": " - ".join(["Product", ecotax_classification.name]), + "ecotaxe_line_product_ids": [ + ( + 0, + 0, + { + "classification_id": ecotax_classification.id, + }, + ) + ], + # For the sake of simplicity, every product will have a price + # and weight of 100 + "list_price": 100.00, + "weight": 100.00, + } + ) + return tmpl.product_variant_ids[0] + + @classmethod + def _make_product_variants(cls, ecotax_classification): + """Creates a product variants with given ecotax classification + Returns the newly created template variants + """ + size_attr = cls.env["product.attribute"].create( + { + "name": "Size", + "create_variant": "always", + "value_ids": [(0, 0, {"name": "S"}), (0, 0, {"name": "M"})], + } + ) + + tmpl = cls.env["product.template"].create( + { + "name": " - ".join(["Product", ecotax_classification.name]), + "ecotaxe_line_product_ids": [ + ( + 0, + 0, + { + "classification_id": ecotax_classification.id, + }, + ) + ], + # For the sake of simplicity, every product will have a price + # and weight of 100 + "list_price": 100.00, + "weight": 100.00, + "attribute_line_ids": [ + ( + 0, + 0, + { + "attribute_id": size_attr.id, + "value_ids": [(6, 0, size_attr.value_ids.ids)], + }, + ) + ], + } + ) + return tmpl.product_variant_ids + + @staticmethod + def _set_invoice_lines_random_quantities(invoice) -> list: + """For each invoice line, sets a random qty between 1 and 10 + + Returns the list of new quantities as a list + """ + new_qtys = [] + with Form(invoice) as invoice_form: + for index in range(len(invoice.invoice_line_ids)): + with invoice_form.invoice_line_ids.edit(index) as line_form: + new_qty = choice([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) + line_form.quantity = new_qty + new_qtys.insert(index, new_qty) + line_form.save() + invoice_form.save() + return new_qtys + + def _run_checks(self, inv, inv_expected_amounts, inv_lines_expected_amounts): + self.assertEqual(inv.amount_ecotaxe, inv_expected_amounts["amount_ecotaxe"]) + self.assertEqual(inv.amount_total, inv_expected_amounts["amount_total"]) + self.assertEqual(len(inv.invoice_line_ids), len(inv_lines_expected_amounts)) + for inv_line, inv_line_expected_amounts in zip( + inv.invoice_line_ids, inv_lines_expected_amounts + ): + self.assertEqual( + inv_line.ecotaxe_amount_unit, + inv_line_expected_amounts["ecotaxe_amount_unit"], + ) + self.assertEqual( + inv_line.subtotal_ecotaxe, inv_line_expected_amounts["subtotal_ecotaxe"] + ) + + def test_01_default_fixed_ecotax(self): + """Test default fixed ecotax + + Ecotax classification data for this test: + - fixed type + - default amount: 5.0 + Product data for this test: + - list price: 100 + - fixed ecotax + - no manual amount + + Expected results (with 1 line and qty = 1): + - invoice ecotax amount: 5.0 + - invoice total amount: 100.0 + - line ecotax unit amount: 5.0 + - line ecotax total amount: 5.0 + """ + invoice = self._make_invoice(products=self._make_product(self.ecotax_fixed)) + self._run_checks( + invoice, + {"amount_ecotaxe": 5.0, "amount_total": 100.0}, + [{"ecotaxe_amount_unit": 5.0, "subtotal_ecotaxe": 5.0}], + ) + new_qty = self._set_invoice_lines_random_quantities(invoice)[0] + self._run_checks( + invoice, + {"amount_ecotaxe": 5.0 * new_qty, "amount_total": 100.0 * new_qty}, + [{"ecotaxe_amount_unit": 5.0, "subtotal_ecotaxe": 5.0 * new_qty}], + ) + + def test_02_force_fixed_ecotax_on_product(self): + """Test manual fixed ecotax + + Ecotax classification data for this test: + - fixed type + - default amount: 5.0 + Product data for this test: + - list price: 100 + - fixed ecotax + - Force ecotax amount: 10 + + Expected results (with 1 line and qty = 1): + - invoice ecotax amount: 10.0 + - invoice total amount: 100.0 + - line ecotax unit amount: 10.0 + - line ecotax total amount: 10.0 + """ + product = self._make_product(self.ecotax_fixed) + product.ecotaxe_line_product_ids[0].force_amount = 10 + invoice = self._make_invoice(products=product) + self._run_checks( + invoice, + {"amount_ecotaxe": 10.0, "amount_total": 100.0}, + [{"ecotaxe_amount_unit": 10.0, "subtotal_ecotaxe": 10.0}], + ) + new_qty = self._set_invoice_lines_random_quantities(invoice)[0] + self._run_checks( + invoice, + {"amount_ecotaxe": 10.0 * new_qty, "amount_total": 100.0 * new_qty}, + [{"ecotaxe_amount_unit": 10.0, "subtotal_ecotaxe": 10.0 * new_qty}], + ) + + def test_03_weight_based_ecotax(self): + """Test weight based ecotax + + Ecotax classification data for this test: + - weight based type + - coefficient: 0.04 + Product data for this test: + - list price: 100 + - weight based ecotax + - weight: 100 + + Expected results (with 1 line and qty = 1): + - invoice ecotax amount: 4.0 + - invoice total amount: 100.0 + - line ecotax unit amount: 4.0 + - line ecotax total amount: 4.0 + """ + invoice = self._make_invoice(products=self._make_product(self.ecotax_weight)) + self._run_checks( + invoice, + {"amount_ecotaxe": 4.0, "amount_total": 100.0}, + [{"ecotaxe_amount_unit": 4.0, "subtotal_ecotaxe": 4.0}], + ) + new_qty = self._set_invoice_lines_random_quantities(invoice)[0] + self._run_checks( + invoice, + {"amount_ecotaxe": 4.0 * new_qty, "amount_total": 100.0 * new_qty}, + [{"ecotaxe_amount_unit": 4.0, "subtotal_ecotaxe": 4.0 * new_qty}], + ) + + def test_04_mixed_ecotax(self): + """Test mixed ecotax within the same invoice + + Creating an invoice with 3 lines (one per type with types tested above) + + Expected results (with 3 lines and qty = 1): + - invoice ecotax amount: 19.0 + - invoice total amount: 300.0 + - line ecotax unit amount (fixed ecotax): 5.0 + - line ecotax total amount (fixed ecotax): 5.0 + - line ecotax unit amount (manual ecotax): 10.0 + - line ecotax total amount (manual ecotax): 10.0 + - line ecotax unit amount (weight based ecotax): 4.0 + - line ecotax total amount (weight based ecotax): 4.0 + """ + default_fixed_product = self._make_product(self.ecotax_fixed) + manual_fixed_product = self._make_product(self.ecotax_fixed) + manual_fixed_product.ecotaxe_line_product_ids[0].force_amount = 10 + weight_based_product = self._make_product(self.ecotax_weight) + invoice = self._make_invoice( + products=default_fixed_product | manual_fixed_product | weight_based_product + ) + self._run_checks( + invoice, + {"amount_ecotaxe": 19.0, "amount_total": 300.0}, + [ + {"ecotaxe_amount_unit": 5.0, "subtotal_ecotaxe": 5.0}, + {"ecotaxe_amount_unit": 10.0, "subtotal_ecotaxe": 10.0}, + {"ecotaxe_amount_unit": 4.0, "subtotal_ecotaxe": 4.0}, + ], + ) + new_qtys = self._set_invoice_lines_random_quantities(invoice) + self._run_checks( + invoice, + { + "amount_ecotaxe": 5.0 * new_qtys[0] + + 10.0 * new_qtys[1] + + 4.0 * new_qtys[2], + "amount_total": 100.0 * sum(new_qtys), + }, + [ + {"ecotaxe_amount_unit": 5.0, "subtotal_ecotaxe": 5.0 * new_qtys[0]}, + {"ecotaxe_amount_unit": 10.0, "subtotal_ecotaxe": 10.0 * new_qtys[1]}, + {"ecotaxe_amount_unit": 4.0, "subtotal_ecotaxe": 4.0 * new_qtys[2]}, + ], + ) + + def test_05_force_ecotax_on_invoice(self): + """Test force fixed ecotax + + Ecotax classification data for this test: + - fixed type + - default amount: 5.0 + - forced amount: 2 + Product data for this test: + - list price: 100 + - fixed ecotax : 5 + + Expected results (with 1 line and qty = 1): + - invoice ecotax amount: 2.0 + - invoice total amount: 100.0 + - line ecotax unit amount: 2.0 + - line ecotax total amount: 2.0 + """ + product = self._make_product(self.ecotax_fixed) + invoice = self._make_invoice(products=product) + invoice.invoice_line_ids[0].ecotaxe_line_ids.force_amount_unit = 2 + self._run_checks( + invoice, + {"amount_ecotaxe": 2.0, "amount_total": 100.0}, + [{"ecotaxe_amount_unit": 2.0, "subtotal_ecotaxe": 2.0}], + ) + new_qty = self._set_invoice_lines_random_quantities(invoice)[0] + self._run_checks( + invoice, + {"amount_ecotaxe": 2.0 * new_qty, "amount_total": 100.0 * new_qty}, + [{"ecotaxe_amount_unit": 2.0, "subtotal_ecotaxe": 2.0 * new_qty}], + ) + + def test_06_product_variants(self): + """ + Data: + A product template with two variants + Test Case: + Add additional ecotax line to one variant + Expected result: + The additional ecotax line is not associated to second variant + the all ecotax lines of the variant contains both the ecotax + line of the product template and the additional ecotax line + """ + variants = self._make_product_variants(self.ecotax_fixed) + self.assertEqual(len(variants), 2) + variant_1 = variants[0] + variant_2 = variants[1] + self.assertEqual( + variant_1.all_ecotaxe_line_product_ids, + variant_2.all_ecotaxe_line_product_ids, + ) + variant_1.additional_ecotaxe_line_product_ids = [ + ( + 0, + 0, + { + "classification_id": self.ecotax_weight.id, + }, + ) + ] + all_additional_ecotaxe = ( + variant_1.additional_ecotaxe_line_product_ids + | variant_1.product_tmpl_id.ecotaxe_line_product_ids + ) + self.assertEqual( + len(variant_1.all_ecotaxe_line_product_ids), + 2, + ) + self.assertEqual( + len(variant_2.all_ecotaxe_line_product_ids), + 1, + ) + self.assertEqual( + variant_1.all_ecotaxe_line_product_ids, + all_additional_ecotaxe, + ) + self.assertEqual( + variant_2.all_ecotaxe_line_product_ids, + variant_2.product_tmpl_id.ecotaxe_line_product_ids, + ) diff --git a/l10n_fr_ecotaxe/views/account_ecotaxe_category_view.xml b/l10n_fr_ecotaxe/views/account_ecotaxe_category_view.xml new file mode 100644 index 000000000..69b331085 --- /dev/null +++ b/l10n_fr_ecotaxe/views/account_ecotaxe_category_view.xml @@ -0,0 +1,72 @@ + + + + + account.ecotaxe.category + + + + + + + + + + account.ecotaxe.category + +
+ + +
+
+
+

+ +

+
+ + + + +
+
+
+
+ + account.ecotaxe.category + + + + + + + + Ecotaxe category + account.ecotaxe.category + tree,form + +

+ Click to start a new Ecotaxe category. +

+
+
+ +
diff --git a/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml b/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml new file mode 100644 index 000000000..76d530569 --- /dev/null +++ b/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml @@ -0,0 +1,123 @@ + + + + + account.ecotaxe.classification + + + + + + + + + + + + + + + account.ecotaxe.classification + +
+ + +
+
+
+

+ +

+
+ + + + + + + + + + + + + + + + + + +
+
+
+
+ + account.ecotaxe.classification + + + + + + + + + + + + + Ecotaxe Classification + account.ecotaxe.classification + tree,form + +

+ Click to start a new Ecotaxe Classification. +

+
+
+ +
diff --git a/l10n_fr_ecotaxe/views/account_move_view.xml b/l10n_fr_ecotaxe/views/account_move_view.xml new file mode 100644 index 000000000..36b975468 --- /dev/null +++ b/l10n_fr_ecotaxe/views/account_move_view.xml @@ -0,0 +1,176 @@ + + + + + l10n_fr_ecotaxe.move.form + account.move + + + + + + + +