From f66aeb3d64f87efe505c25d3813aa81026c3629f Mon Sep 17 00:00:00 2001 From: Mourad Date: Wed, 4 Nov 2015 14:28:56 +0100 Subject: [PATCH 01/54] Add custome profile module + account config --- l10n_fr_ecotaxe/__init__.py | 3 + l10n_fr_ecotaxe/__openerp__.py | 75 ++++++++++ l10n_fr_ecotaxe/i18n/fr.po | 156 ++++++++++++++++++++ l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot | 150 +++++++++++++++++++ l10n_fr_ecotaxe/models/__init__.py | 7 + l10n_fr_ecotaxe/models/account.py | 50 +++++++ l10n_fr_ecotaxe/models/account_invoice.py | 83 +++++++++++ l10n_fr_ecotaxe/models/product.py | 94 ++++++++++++ l10n_fr_ecotaxe/models/purchase.py | 79 ++++++++++ l10n_fr_ecotaxe/models/sale.py | 79 ++++++++++ l10n_fr_ecotaxe/static/description/icon.png | Bin 0 -> 3731 bytes l10n_fr_ecotaxe/views/account_view.xml | 72 +++++++++ l10n_fr_ecotaxe/views/product_view.xml | 44 ++++++ l10n_fr_ecotaxe/views/purchase_view.xml | 35 +++++ l10n_fr_ecotaxe/views/sale_view.xml | 37 +++++ 15 files changed, 964 insertions(+) create mode 100644 l10n_fr_ecotaxe/__init__.py create mode 100644 l10n_fr_ecotaxe/__openerp__.py create mode 100644 l10n_fr_ecotaxe/i18n/fr.po create mode 100644 l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot create mode 100755 l10n_fr_ecotaxe/models/__init__.py create mode 100644 l10n_fr_ecotaxe/models/account.py create mode 100644 l10n_fr_ecotaxe/models/account_invoice.py create mode 100644 l10n_fr_ecotaxe/models/product.py create mode 100755 l10n_fr_ecotaxe/models/purchase.py create mode 100755 l10n_fr_ecotaxe/models/sale.py create mode 100644 l10n_fr_ecotaxe/static/description/icon.png create mode 100644 l10n_fr_ecotaxe/views/account_view.xml create mode 100644 l10n_fr_ecotaxe/views/product_view.xml create mode 100644 l10n_fr_ecotaxe/views/purchase_view.xml create mode 100644 l10n_fr_ecotaxe/views/sale_view.xml diff --git a/l10n_fr_ecotaxe/__init__.py b/l10n_fr_ecotaxe/__init__.py new file mode 100644 index 000000000..cde864bae --- /dev/null +++ b/l10n_fr_ecotaxe/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__openerp__.py new file mode 100644 index 000000000..b9bae5e68 --- /dev/null +++ b/l10n_fr_ecotaxe/__openerp__.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Copyright (c) 2008 JAILLET Simon - CrysaLEAD - www.crysalead.fr +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +############################################################################## +{ + 'name': 'France Custom Ecotaxe', + 'version': '1.1', + 'author': 'OpenERP SA', + 'website': 'http://www.openerp.com', + 'category': 'Localization/Account Taxes', + 'description': """ +This is the module to manage the Ecotaxe for France in Odoo. +======================================================================== + +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). + +This localisation module add a field "is Ecotaxe" on Tax object. +It add Ecotaxe amount on sale line, purchase line and invoice line. +The fileds Untaxed amount include Ecotaxe amount for readability. +In fact Ecotaxe amount are included in base of VAT. + +To make easy ecotaxe management, ecotaxe are set on products. +So product contain ecotaxe values (fixed or weight based). +On the taxe "Ecotaxe" we use python code to get a right ecotaxe value from product. +One ecotaxe can be used for all products. +We recommend to use at least two ecotaxes : +1 for sale +2 for purchase + +Adding ecotaxe on product category aims to facilitate ecotaxe setting. + +""", + 'depends': [ + 'account', + 'product', + 'sale', + 'purchase' + ], + 'data': [ + 'views/product_view.xml', + 'views/sale_view.xml', + 'views/purchase_view.xml', + 'views/account_view.xml', + + ], + 'test': [], + 'demo': [], + 'auto_install': False, + 'installable': True, +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/l10n_fr_ecotaxe/i18n/fr.po b/l10n_fr_ecotaxe/i18n/fr.po new file mode 100644 index 000000000..b67291b33 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr.po @@ -0,0 +1,156 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-16 10:08+0000\n" +"PO-Revision-Date: 2015-11-16 10:08+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_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.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 +#: field:product.category,ecotaxe_coef:0 +#: field:product.product,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "Ecotaxe Coef" + +#. module: l10n_fr_ecotaxe +#: field:product.category,ecotaxe_type:0 +#: field:product.product,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "Type Ecotaxe" + +#. module: l10n_fr_ecotaxe +#: selection:product.category,ecotaxe_type:0 +#: selection:product.product,ecotaxe_type:0 +msgid "Fixed" +msgstr "Fixe" + +#. module: l10n_fr_ecotaxe +#: 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.category,ecotaxe_type:0 +#: help:product.product,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 "Ligne de facture" + +#. 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 "Article" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_product_category +msgid "Product Category" +msgstr "Catégorie d'article" + +#. 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 +#: 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 +#: 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 +#: 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 inculde Ecotaxe in the VAT tax check this :\n" +"1: cochez \"ncluded in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "Attention pour appliquer la TVA sur l'écotaxe :\n" +"1 : cochez \"Incluse dans le montant de base \"\n" +"2 : La séquence de l'écotaxe inférieur à celle de la TVA (vente/achat) " + +#. module: l10n_fr_ecotaxe +#: selection:product.category,ecotaxe_type:0 +#: selection:product.product,ecotaxe_type:0 +msgid "Weight based" +msgstr "Basée sur le poids" 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..eb17f9b08 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot @@ -0,0 +1,150 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-16 10:09+0000\n" +"PO-Revision-Date: 2015-11-16 10:09+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_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.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 +#: field:product.category,ecotaxe_coef:0 +#: field:product.product,ecotaxe_coef:0 +msgid "Ecotaxe Coef" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.category,ecotaxe_type:0 +#: field:product.product,ecotaxe_type:0 +msgid "Ecotaxe Type" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: selection:product.category,ecotaxe_type:0 +#: selection:product.product,ecotaxe_type:0 +msgid "Fixed" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: field:product.category,default_fixed_ecotaxe:0 +#: field:product.product,fixed_ecotaxe:0 +msgid "Fixed Ecotaxe" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: help:product.category,ecotaxe_type:0 +#: help:product.product,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 +#: 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_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 +#: 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 +#: 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 +#: 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 inculde Ecotaxe in the VAT tax check this :\n" +"1: cochez \"ncluded in base amount \"\n" +"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" +msgstr "" + +#. module: l10n_fr_ecotaxe +#: selection:product.category,ecotaxe_type:0 +#: selection:product.product,ecotaxe_type:0 +msgid "Weight based" +msgstr "" diff --git a/l10n_fr_ecotaxe/models/__init__.py b/l10n_fr_ecotaxe/models/__init__.py new file mode 100755 index 000000000..89b48b404 --- /dev/null +++ b/l10n_fr_ecotaxe/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- + +from . import product +from . import account +from . import sale +from . import account_invoice +from . import purchase diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py new file mode 100644 index 000000000..515b4d5ec --- /dev/null +++ b/l10n_fr_ecotaxe/models/account.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Module for OpenERP +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# @author Mourad EL HADJ MIMOUNE +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### + +__author__ = 'mourad.elhadj.mimoune' + +from openerp import api, models, fields + + +class AccountTax(models.Model): + _inherit = 'account.tax' + + is_ecotaxe = fields.Boolean('Ecotaxe', + help="Warning : To inculde Ecotaxe " + "in the VAT tax check this :\n" + "1: cochez \"ncluded in base amount \"\n" + "2: The Ecotaxe sequence must be less then " + "VAT tax (in sale and purchase)") + + @api.onchange('is_ecotaxe') + def onchange_is_ecotaxe(self): + import pdb; pdb.set_trace() + if self.is_ecotaxe: + self.type = 'code' + self.include_base_amount = True + self.python_compute = """ +# price_unit +# product: product.product object or None +# partner: res.partner object or None +result = product.fixed_ecotaxe or product.computed_ecotaxe or 0.0 + """ + self.python_compute_inv = self.python_compute diff --git a/l10n_fr_ecotaxe/models/account_invoice.py b/l10n_fr_ecotaxe/models/account_invoice.py new file mode 100644 index 000000000..bf619e747 --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_invoice.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Mourad EL HADJ MIMOUNE +# Copyright (C) 2015-TODAY Akretion . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +__author__ = 'mourad.elhadj.mimoune' + +from openerp import api, models, fields + + +class AcountInvoiceLine(models.Model): + + _inherit = 'account.invoice.line' + + amount_ecotaxe = fields.Float(string='Ecotaxe', store=True, + compute='_compute_ecotaxe') + + @api.multi + @api.depends('invoice_line_tax_id', 'product_id', 'quantity') + def _compute_ecotaxe(self): + for line in line: + ecotaxe_id = [tax.id for tax in line.invoice_line_tax_id + if tax.is_ecotaxe] + ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) + price = line.price_unit * (1 - (line.discount or 0.0) / 100.0) + val = 0.0 + if ecotaxe_id: + taxes = ecotaxe_id.compute_all( + price, line.quantity, + product=line.product_id, + partner=line.invoice_id.partner_id)['taxes'] + + for t in taxes: + val += t.get('amount', 0.0) + line.amount_ecotaxe = val + + if line.invoice_id: + cur = line.invoice_id.currency_id + line.amount_ecotaxe = cur.round( + line.amount_ecotaxe) + + +class AccountInvoice(models.Model): + _inherit = 'account.invoice' + + amount_untaxed_with_ecotaxe = fields.Float('Untaxed Amount with Ecotaxe', + store=True, + compute='_compute_ecotaxe') + amount_ecotaxe = fields.Float(string='Included Ecotaxe', store=True, + compute='_compute_ecotaxe') + amount_tax_without_ecotaxe = fields.Float(string='Other Taxes', store=True, + compute='_compute_ecotaxe') + + @api.multi + @api.depends('amount_untaxed', 'amount_tax', + 'invoice_line.invoice_line_tax_id', + 'invoice_line.product_id', 'invoice_line.quantity') + def _compute_ecotaxe(self): + for invoice in self: + val_ecotaxe = val1 = 0.0 + cur = invoice.currency_id + for line in invoice.invoice_line: + val_ecotaxe += line.amount_ecotaxe + invoice.amount_ecotaxe = val_ecotaxe + invoice.amount_untaxed_with_ecotaxe = \ + invoice.amount_untaxed + invoice.amount_ecotaxe + invoice.amount_tax_without_ecotaxe = \ + invoice.amount_tax - invoice.amount_ecotaxe diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py new file mode 100644 index 000000000..afb37cfd0 --- /dev/null +++ b/l10n_fr_ecotaxe/models/product.py @@ -0,0 +1,94 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Mourad EL HADJ MIMOUNE +# Copyright (C) 2015-TODAY Akretion . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +__author__ = 'mourad.elhadj.mimoune' + +from openerp import models, fields, api +from collections import defaultdict +from openerp.osv import expression + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + ecotaxe_type = fields.Selection( + [ + ('fixed', u'Fixed'), + ('weight_based', 'Weight based'), + ], + string='Ecotaxe Type', + 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('Ecotaxe Coef') + fixed_ecotaxe = fields.Float('Fixed Ecotaxe',) + computed_ecotaxe = fields.Float('Computed Ecotaxe', + compute='_compute_ecotaxe') + + @api.depends('ecotaxe_type', 'ecotaxe_coef', 'weight') + def _compute_ecotaxe(self): + for prod in self: + if prod.ecotaxe_type == 'weight_based': + weight = prod.weight or 0 + prod.computed_ecotaxe = record.ecotaxe_coef * weight + + @api.onchange('ecotaxe_type') + def onchange_ecotaxe_type(self): + if self.ecotaxe_type == 'weight_based': + self.fixed_ecotaxe = 0 + if self.ecotaxe_type == 'fixed': + self.ecotaxe_coef = 0 + + @api.onchange('categ_id') + def onchange_categ_id(self): + if self.categ_id: + self.ecotaxe_type = self.categ_id.ecotaxe_type + self.ecotaxe_coef = self.categ_id.ecotaxe_coef + if self.categ_id.default_fixed_ecotaxe != 0: + self.fixed_ecotaxe = self.categ_id.default_fixed_ecotaxe + + +class ProductCategory(models.Model): + _inherit = 'product.category' + ecotaxe_type = fields.Selection( + [ + ('fixed', u'Fixed'), + ('weight_based', 'Weight based'), + ], + string='Ecotaxe Type', + 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('Ecotaxe Coef') + default_fixed_ecotaxe = fields.Float( + 'Fixed Ecotaxe', + help="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") + + @api.onchange('ecotaxe_type') + def onchange_ecotaxe_type(self): + if self.ecotaxe_type == 'weight_based': + self.default_fixed_ecotaxe = 0 + if self.ecotaxe_type == 'fixed': + self.ecotaxe_coef = 0 \ No newline at end of file diff --git a/l10n_fr_ecotaxe/models/purchase.py b/l10n_fr_ecotaxe/models/purchase.py new file mode 100755 index 000000000..a8e49bbae --- /dev/null +++ b/l10n_fr_ecotaxe/models/purchase.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Mourad EL HADJ MIMOUNE +# Copyright (C) 2015-TODAY Akretion . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +__author__ = 'mourad.elhadj.mimoune' + +from openerp import models, fields, api, _ + + +class PurchaseOrderLine(models.Model): + + _inherit = "purchase.order.line" + amount_ecotaxe = fields.Float(string='Ecotaxe', store=True, + compute='_compute_ecotaxe') + + @api.depends('taxes_id', 'product_id', 'product_qty') + def _compute_ecotaxe(self): + for line in self: + price = line._calc_line_base_price(line) + qty = line._calc_line_quantity(line) + ecotaxe_id = [tax.id for tax in line.taxes_id if tax.is_ecotaxe] + ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) + val = 0.0 + if ecotaxe_id: + taxes = ecotaxe_id.compute_all( + price, qty, line.product_id, + line.order_id.partner_id)['taxes'] + for t in taxes: + val += t.get('amount', 0.0) + + line.amount_ecotaxe = val + if line.order_id: + cur = line.order_id.pricelist_id.currency_id + line.amount_ecotaxe = cur.round( + line.amount_ecotaxe) + + +class PurchaseOrder(models.Model): + + _inherit = "purchase.order" + + amount_untaxed_with_ecotaxe = fields.Float('Untaxed Amount with Ecotaxe', + store=True, + compute='_compute_ecotaxe') + amount_ecotaxe = fields.Float(string='Included Ecotaxe', store=True, + compute='_compute_ecotaxe') + amount_tax_without_ecotaxe = fields.Float(string='Other Taxes', store=True, + compute='_compute_ecotaxe') + + @api.multi + @api.depends('amount_untaxed', 'order_line.taxes_id', + 'order_line.product_id', 'order_line.product_qty') + def _compute_ecotaxe(self): + for order in self: + val_ecotaxe = val1 = 0.0 + cur = order.pricelist_id.currency_id + for line in order.order_line: + val_ecotaxe += line.amount_ecotaxe + order.amount_ecotaxe = val_ecotaxe + order.amount_untaxed_with_ecotaxe = \ + order.amount_untaxed + order.amount_ecotaxe + order.amount_tax_without_ecotaxe = \ + order.amount_tax - order.amount_ecotaxe diff --git a/l10n_fr_ecotaxe/models/sale.py b/l10n_fr_ecotaxe/models/sale.py new file mode 100755 index 000000000..60091fa8b --- /dev/null +++ b/l10n_fr_ecotaxe/models/sale.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Mourad EL HADJ MIMOUNE +# Copyright (C) 2015-TODAY Akretion . +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +__author__ = 'mourad.elhadj.mimoune' + +from openerp import models, fields, api, _ + + +class SaleOrderLine(models.Model): + + _inherit = "sale.order.line" + amount_ecotaxe = fields.Float(string='Ecotaxe', store=True, + compute='_compute_ecotaxe') + + @api.depends('tax_id', 'product_id', 'product_uom_qty') + def _compute_ecotaxe(self): + for line in self: + price = line._calc_line_base_price(line) + qty = line._calc_line_quantity(line) + ecotaxe_id = [tax.id for tax in line.tax_id if tax.is_ecotaxe] + ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) + val = 0.0 + if ecotaxe_id: + taxes = ecotaxe_id.compute_all( + price, qty, line.product_id, + line.order_id.partner_id)['taxes'] + for t in taxes: + val += t.get('amount', 0.0) + + line.amount_ecotaxe = val + if line.order_id: + cur = line.order_id.pricelist_id.currency_id + line.amount_ecotaxe = cur.round( + line.amount_ecotaxe) + + +class SaleOrder(models.Model): + + _inherit = "sale.order" + + amount_untaxed_with_ecotaxe = fields.Float('Untaxed Amount with Ecotaxe', + store=True, + compute='_compute_ecotaxe') + amount_ecotaxe = fields.Float(string='Included Ecotaxe', store=True, + compute='_compute_ecotaxe') + amount_tax_without_ecotaxe = fields.Float(string='Other Taxes', store=True, + compute='_compute_ecotaxe') + + @api.multi + @api.depends('amount_untaxed', 'order_line.tax_id', + 'order_line.product_id', 'order_line.product_uom_qty') + def _compute_ecotaxe(self): + for order in self: + val_ecotaxe = val1 = 0.0 + cur = order.pricelist_id.currency_id + for line in order.order_line: + val_ecotaxe += line.amount_ecotaxe + order.amount_ecotaxe = val_ecotaxe + order.amount_untaxed_with_ecotaxe = \ + order.amount_untaxed + order.amount_ecotaxe + order.amount_tax_without_ecotaxe = \ + order.amount_tax - order.amount_ecotaxe diff --git a/l10n_fr_ecotaxe/static/description/icon.png b/l10n_fr_ecotaxe/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ee185a69f467c138ecfc6c2f234ed911e50860da GIT binary patch literal 3731 zcmai1cTm&I7XBqv=~!q2f~bHBNbl7E0t#FNmEMb#5D2{`(u;r~y(IK1?Lv$+r5Hdu z(h&$nnsh?1FL&ns@&3ARww#$WyL)!`+w+}0QM%gdv{Y(tQU(WuV_Wrbz6J8P8SppD%&tA+q%$j zOULXq&G$vG3ifB^VJR{W6(3~>9hP&!)G7R)^qqz{6fKl+wRc^JkhGih-wAp7k;WE! zYv<&$ednuFg|9Cf?>9#HgqdY#AXWa?n(LIGv+ZB0jY#(5{e~z}^sOq+(SIm&gptXv zd+bAYc6bHClnvvJ3isdLzRifFRAK;8-UXCNxgr5lMkE)Q0Rja7S2_P@(ZlrHffQ!? za=qu!PgLDFBl2MQL*D4HF^3XTj~~3c#r}CrwDDXjtS=U2{cU$##K6@8I-npz>S6DF zrSbIsuvQGeGqfPJJ08DIvrnKeC>ZVjLv4Qy_e}ReZfVB!XlT1gcZ}Ix4%X5Wru_Wt zXFAN;1b3`({7m{;zqw6?+Vq1KKn*17nVBWhSG_`-J)0>+ zRw1A()7Pz{mNhiA8{C{Z<(6+TyY5SGw`4BF&oUgPhNs@wVA6GNm!EveO=Q84o2Q%C zp~F|&7lAa>Ad_%pW!KhAJi%+z7qAP%{VfmWt70YJ5#nx!fp2-;o}$xh#x-B3d|4_z zJ>8PhK*gx^daj*b@t%lC;>Fn!q2uZnLyqp=TfDIkZV)Ytk-3zA9BvSPIbF7<{IRF? z7YF3@VOVf)7YJywka@TMQ2S;SaH+g8QA1KY*~>Fr49{ywqzLg(EVxFllnZmUjn}8B zR&Znh5T6t}4UKCD4vYTK(u|VATZg*$sEbvB?CgyV=Q<;SLR;GrF-f?&E=y~-mh}dA z2B+L7QD7%)?Tqf%xwR|yjmV<`T}xL+kcS;{bouKla;5xNH}dwgEo|Ay=OTjTV+}T3 zKOGuwjkPcYF<)115KPof#v8CwL4Z_cOH1xwpIxlSD^1zud>CpcH#{%biqUq1E$_r8 zjHDbY4kqKY3zwI=Ld}1Zx#v+3&_hwjkCITi5K>sIFk9?%lw5j^b!TEiLhJGFV!D*u zUF*&`TjFZ^udfDU@Lm1n76zk+jvN&VzXBxW;-nO5d0k%3eiCekl3xdTAlv7;9zBZr z{vGleI-}|0BEZkje~*_pe|-I9In&i=A&U1+y?bGC|LRbFy^tlBmr1W=_D1!^<8~#0 z$sj9l=&dWZcXahYvJMcmXTO*Wq4(Luj8_{~$nACUu*9nE?d?hV>~NtGm(qllflf!v z-_RKucXxNWgR$6bpan6S&UZTGh}SuBiHE6?{;6)rIxqaX*DxJ_TO0URr=FagTw~YA z*4^Fx2IF|EzP=u!s>;a5rU`>R5f&EiMJu95%U@e#f2GTM3%)A9g;Z$JMbXB(HJ+l= z`+A}@3b^Jah=|@rmQSufdi01@-cL*`&nA=)!{4!oot@6HAq|)-3JL z_pG8U;*K{*M@JtUf9{1tH3oe4HN~%-D(sD$Cs#14+u}29hVnphM%2T z4Gav-7T$b;abu_5V_s*=`yUSe{MlyeJ)>%6Wfiem^`-`lj90v5`S^nrX_RY`oT~^R z_!Ql6oEoICu!4euCvFQ6b~+09NkK(f0P*60>Qe z(A~RtS!6u;Vq;^oWWD?0=azx4iQr&iS?4Ba!L_8LrSNFbtlzo-;0}jtXlmY-m*=RR zeD3ZpLPkbbP*mh+3m8?TBqmSjk!cKT+f#-)Rr0-TyNhv(%G1oUa})=xN@tnNq#C=dP)xb&Zzx zfYd|Qd+Qz-7l1s%BhXdfE;CePn0)h&(F@z#1E&Y;zFYMxUA?`(^Wzn)=G($1oF%{{ zBtQE5ms{SE0CEQ-FKO;5G_Bh{o7oh1V~Pp8ua#2me*|@ObbONjd}M6w`pui6JxhB9 zrV;da>?W!$QS;m~GE?@MwnAL$<5lR_GbJT_+9)}Vzy4ypfB$|# zaq*e6q_A+pwHptJ7av7*VSfH7%l7aD6skW(z_^LzSt@nstPm{7n<`0j7Z`6Nk;>MV zaGq$<5^9E+nsVf;#aeAnVZL{E=IfPG(m@eL6=h}J)*~bobRQBE_i9srPEWsA%g_D# z74_l62e0oBg`%65_4W04X8pH^Mn)iZb`Q{jhpaz-{8;snL3dD4($gP3$Mi4b#f3au<6CICFQ1F4M=#BiL zNSu}BY?Ci>L!$nN&e1V3jV@jzOMfHJ&jTLlpf)@=decRTM=%j&4xykwWHHUvt#-vL z5T8~_W##hss2esmHn2_(@0?Lb`2)PqBJG108Q=3%VE zNKGx={%Te=MaaCr=tZVf;Hg+pP|&pBdWDUxZ9-O7Ksv~2JQ~!H1Qf+%6H+9YFh;SH z&JV=IMqb(+ZOzDC9xo=PrurMiMn+ov87Ug8-xaCES+&}T?9O=O zbBEWy5c*{iwjDn)q=V8CKq~c=8@9BxRPJ~#gc!#{q~XgSGBekuC85(&L~`vK80dsz ziELfJR+O10;lk$CIJ3CtUzbK~s2%jnTp?nx>FR!R7$-pp*N7r~BOe{2HGSeWY`BN~3B| zD&Cc`m-uj$NvfzmsAECgL&66ggEInP(g6}!D;!l@Tbq=}Dnq8E>tTgtBS&VRny;^P zy!;`{#|JO+3Jb${(E*9dA>>g9RZ#%jVSBxzQoDI86r9X?ZlwelEosk%j?>$QxJDp@ zpsgdn&z$uN^=iB}jR3m=)MoOE`FWEs!EQF_%mwAU%zC=N_EcM&PO~tP**qYD+019& zUefm&%}zY*$g^>3x}I7rMEPnU=MSjcLYFLLn5qvS(nD7=ZH+kQfdvVVAi&(EIa`xZ z!f??G9%9_&QID(k*|ka$G@W8n__7#*i(!VJAG?9U;K4PI_iWx@f~>+-c2t$Lj)V?z!lbWMu-^^GV4 zyDsYg1fp?7S}Q3pC$S(BFRG6frKtTL!9i+KMd~EXCpNffrhDF9H5d!0i1NB27U1_| z?dMND3708|qvOMu#oA;$esWr0%)qdbkbF9^3uVtRSsiRjUv*79^>+*qL;X%?*vGav8+H8FX$A+iaXZ z7P2)pH5=3QH;@TD>VBNRh}3?=$%_h9qB0|Io(uLTJ2qW@8ed^|B&Vcg+`yDUN5wJm zHK)3IuvYzQNd3;z!MOR65yN$vFbWv*A-l7^OjaL3K6FHB3C%4tEN~Y?=Rxmww0X39 zY(uirpS^T>w!K3905Pq5YJ!f{-i8XHF636w(ZH!r?tzGzhr@}iSith-1~aW-@tYDYsuo42;9p)7ua@dXL(D}E zC4=VaxJW)K$^ITM{?O*h)PkFP;euSwhk9Qw8Yt>C4StRswhE<2fO{+{StuK>ZN0V1 zrS1Sw&PvplS5%&8rFI1@!#@2x^8#5d2LW%2s91{Jwerv9!pJSqAPqy0hc5`}Ppfo` zN<4EWQ&G?cd*FPZPu!x4+$3iwgtK%jM`xb*)tUqt@K(69n`8{Uh?stfi!;(CZ5Y2c zBG3KX4Bhip + + + + + + + + l10n_fr_ecotaxe.account.tax.form + account.tax + + + + + + + + + + l10n_fr_ecotaxe.customer.invoice.form + account.invoice + + + + + + + True + + + True + + + + + + + + + + + + l10n_fr_ecotaxe.supplier.invoice.form + account.invoice + + + + + + + True + + + True + + + + + + + + + + + + + + diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml new file mode 100644 index 000000000..7241c91fa --- /dev/null +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -0,0 +1,44 @@ + + + + + + + + + product.product.form.websitecodes + product.product + + + + + + + + + + + + ecotaxe.product.categ.form + product.category + + + + + + + + + + + + diff --git a/l10n_fr_ecotaxe/views/purchase_view.xml b/l10n_fr_ecotaxe/views/purchase_view.xml new file mode 100644 index 000000000..74cdbedce --- /dev/null +++ b/l10n_fr_ecotaxe/views/purchase_view.xml @@ -0,0 +1,35 @@ + + + + + + + + l10n_fr_ecotaxe.purchase.line.form + purchase.order + + + + True + + + True + + + + + + + + + + + + + + + diff --git a/l10n_fr_ecotaxe/views/sale_view.xml b/l10n_fr_ecotaxe/views/sale_view.xml new file mode 100644 index 000000000..85679a163 --- /dev/null +++ b/l10n_fr_ecotaxe/views/sale_view.xml @@ -0,0 +1,37 @@ + + + + + + + + l10n_fr_ecotaxe.sale.line.form + sale.order + + + + True + + + True + + + + + + + + + + + + + + + + + From bc9d998225dd587e5cff46982d901a83d729c0d2 Mon Sep 17 00:00:00 2001 From: Mourad Date: Fri, 20 Nov 2015 11:04:25 +0100 Subject: [PATCH 02/54] FIX bug compute ecotaxe --- l10n_fr_ecotaxe/models/product.py | 2 +- l10n_fr_ecotaxe/views/account_view.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index afb37cfd0..2385744e3 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -48,7 +48,7 @@ def _compute_ecotaxe(self): for prod in self: if prod.ecotaxe_type == 'weight_based': weight = prod.weight or 0 - prod.computed_ecotaxe = record.ecotaxe_coef * weight + prod.computed_ecotaxe = prod.ecotaxe_coef * weight @api.onchange('ecotaxe_type') def onchange_ecotaxe_type(self): diff --git a/l10n_fr_ecotaxe/views/account_view.xml b/l10n_fr_ecotaxe/views/account_view.xml index a1cc84364..0c267cddd 100644 --- a/l10n_fr_ecotaxe/views/account_view.xml +++ b/l10n_fr_ecotaxe/views/account_view.xml @@ -13,6 +13,7 @@ l10n_fr_ecotaxe.account.tax.form account.tax + 300 From ddfb497fef18cd48eb9673988d080532abb9c21a Mon Sep 17 00:00:00 2001 From: Mourad Date: Fri, 20 Nov 2015 17:13:16 +0100 Subject: [PATCH 03/54] Add ecotaxe classification --- l10n_fr_ecotaxe/__openerp__.py | 10 +- l10n_fr_ecotaxe/models/account.py | 62 +++++- l10n_fr_ecotaxe/models/account_invoice.py | 2 +- l10n_fr_ecotaxe/models/product.py | 80 ++++---- l10n_fr_ecotaxe/models/purchase.py | 2 +- l10n_fr_ecotaxe/models/sale.py | 2 +- l10n_fr_ecotaxe/security/ir_model_access.yml | 25 +++ l10n_fr_ecotaxe/security/ir_rule.xml | 18 ++ l10n_fr_ecotaxe/views/account_view.xml | 190 +++++++++++++------ l10n_fr_ecotaxe/views/product_view.xml | 15 +- 10 files changed, 294 insertions(+), 112 deletions(-) create mode 100644 l10n_fr_ecotaxe/security/ir_model_access.yml create mode 100644 l10n_fr_ecotaxe/security/ir_rule.xml diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__openerp__.py index b9bae5e68..52bd67ccd 100644 --- a/l10n_fr_ecotaxe/__openerp__.py +++ b/l10n_fr_ecotaxe/__openerp__.py @@ -61,10 +61,12 @@ 'purchase' ], 'data': [ - 'views/product_view.xml', - 'views/sale_view.xml', - 'views/purchase_view.xml', - 'views/account_view.xml', + # 'security/ir_rule.xml', + # 'security/ir_model_access.yml', + # 'views/product_view.xml', + # 'views/sale_view.xml', + # 'views/purchase_view.xml', + # 'views/account_view.xml', ], 'test': [], diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py index 515b4d5ec..da707e818 100644 --- a/l10n_fr_ecotaxe/models/account.py +++ b/l10n_fr_ecotaxe/models/account.py @@ -22,16 +22,16 @@ __author__ = 'mourad.elhadj.mimoune' -from openerp import api, models, fields +from openerp import api, fields, models class AccountTax(models.Model): _inherit = 'account.tax' is_ecotaxe = fields.Boolean('Ecotaxe', - help="Warning : To inculde Ecotaxe " + help="Warning : To include Ecotaxe " "in the VAT tax check this :\n" - "1: cochez \"ncluded in base amount \"\n" + "1: check \"included in base amount \"\n" "2: The Ecotaxe sequence must be less then " "VAT tax (in sale and purchase)") @@ -45,6 +45,60 @@ def onchange_is_ecotaxe(self): # price_unit # product: product.product object or None # partner: res.partner object or None -result = product.fixed_ecotaxe or product.computed_ecotaxe or 0.0 +result = product.computed_ecotaxe or 0.0 """ self.python_compute_inv = self.python_compute + + +class AccountEcotaxeClassification(models.Model): + _name = 'account.ecotaxe.classification' + + # Default Section + def _default_company_id(self): + return self.env['res.users']._get_company() + + name = fields.Char('Name') + code = fields.Char('Code') + ecotaxe_type = fields.Selection( + [ + ('fixed', u'Fixed'), + ('weight_based', 'Weight based'), + ], + string='Ecotaxe Type', + 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('Ecotaxe Coef') + fixed_ecotaxe = fields.Float( + 'Fixed Ecotaxe', + help="fixed ecotaxe amount.\n" + ) + sale_ecotaxe_id = fields.Many2one( + 'account.tax', + string="Sale EcoTaxe", + domain=[ + ('is_ecotaxe', '=', True), + ('parent_id', '=', False), + ('type_tax_use', 'in', ['sale', 'all'])]) + purchase_ecotaxe_id = fields.Many2many( + 'account.tax', + string="Purchase EcoTaxe", + domain=[ + ('is_ecotaxe', '=', True), + ('parent_id', '=', False), + ('type_tax_use', 'in', ['purchase', 'all'])]) + active = fields.Boolean() + company_id = fields.Many2one( + comodel_name='res.company', default=_default_company_id, + string='Company', 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.") + + @api.onchange('ecotaxe_type') + def onchange_ecotaxe_type(self): + if self.ecotaxe_type == 'weight_based': + self.fixed_ecotaxe = 0 + if self.ecotaxe_type == 'fixed': + self.ecotaxe_coef = 0 diff --git a/l10n_fr_ecotaxe/models/account_invoice.py b/l10n_fr_ecotaxe/models/account_invoice.py index bf619e747..1b75d9dc6 100644 --- a/l10n_fr_ecotaxe/models/account_invoice.py +++ b/l10n_fr_ecotaxe/models/account_invoice.py @@ -20,7 +20,7 @@ ############################################################################## __author__ = 'mourad.elhadj.mimoune' -from openerp import api, models, fields +from openerp import api, fields, models class AcountInvoiceLine(models.Model): diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index 2385744e3..7f652007d 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -20,7 +20,7 @@ ############################################################################## __author__ = 'mourad.elhadj.mimoune' -from openerp import models, fields, api +from openerp import api, fields, models from collections import defaultdict from openerp.osv import expression @@ -28,42 +28,56 @@ class ProductProduct(models.Model): _inherit = 'product.product' - ecotaxe_type = fields.Selection( - [ - ('fixed', u'Fixed'), - ('weight_based', 'Weight based'), - ], - string='Ecotaxe Type', - 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('Ecotaxe Coef') - fixed_ecotaxe = fields.Float('Fixed Ecotaxe',) - computed_ecotaxe = fields.Float('Computed Ecotaxe', - compute='_compute_ecotaxe') + # ecotaxe_type = fields.Selection( + # [ + # ('fixed', u'Fixed'), + # ('weight_based', 'Weight based'), + # ], + # string='Ecotaxe Type', + # 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('Ecotaxe Coef') + # fixed_ecotaxe = fields.Float('Fixed Ecotaxe',) + ecotaxe_classification_id = fields.Many2one( + 'account.ecotaxe.classification', + string="Ecotaxe Classification",) + computed_ecotaxe = fields.Float('Ecotaxe value', + compute='_compute_ecotaxe', + help="Ecotaxe value :\h" + "1 Fixed ecotaxe of the " + "Ecotaxe Classification\n" + "2 product weight * ecotaxe coef * " + "Ecotaxe Classification\n") - @api.depends('ecotaxe_type', 'ecotaxe_coef', 'weight') + @api.depends('ecotaxe_classification_id', + 'ecotaxe_classification_id.ecotaxe_type', + 'ecotaxe_classification_id.ecotaxe_coef', + 'ecotaxe_classification_id.fixed_ecotaxe', 'weight') def _compute_ecotaxe(self): for prod in self: - if prod.ecotaxe_type == 'weight_based': - weight = prod.weight or 0 - prod.computed_ecotaxe = prod.ecotaxe_coef * weight - - @api.onchange('ecotaxe_type') - def onchange_ecotaxe_type(self): - if self.ecotaxe_type == 'weight_based': - self.fixed_ecotaxe = 0 - if self.ecotaxe_type == 'fixed': - self.ecotaxe_coef = 0 + ecotaxe_classif_id = prod.ecotaxe_classification_id + if ecotaxe_classif_id: + if ecotaxe_classif_id.ecotaxe_type ==\ + 'weight_based': + weight = prod.weight or 0.0 + prod.computed_ecotaxe =\ + ecotaxe_classif_id.ecotaxe_coef * weight + else: + prod.computed_ecotaxe = ecotaxe_classif_id.fixed_ecotaxe + else: + prod.computed_ecotaxe = 0.0 - @api.onchange('categ_id') - def onchange_categ_id(self): - if self.categ_id: - self.ecotaxe_type = self.categ_id.ecotaxe_type - self.ecotaxe_coef = self.categ_id.ecotaxe_coef - if self.categ_id.default_fixed_ecotaxe != 0: - self.fixed_ecotaxe = self.categ_id.default_fixed_ecotaxe + @api.onchange('ecotaxe_classification_id') + def onchange_ecotaxe_classification_id(self): + if self.ecotaxe_classification_id: + sale_taxes = self.taxes_id.ids |\ + self.ecotaxe_classification_id.sale_ecotaxe_id.ids + purchase_taxes = self.supplier_taxes_id.ids |\ + self.ecotaxe_classification_id.purchase_ecotaxe_id.ids + self.taxes_id = [(6, 0, sale_taxes)] + self.supplier_taxes_id = [(6, 0, purchase_taxes)] class ProductCategory(models.Model): diff --git a/l10n_fr_ecotaxe/models/purchase.py b/l10n_fr_ecotaxe/models/purchase.py index a8e49bbae..f7a0d7a79 100755 --- a/l10n_fr_ecotaxe/models/purchase.py +++ b/l10n_fr_ecotaxe/models/purchase.py @@ -20,7 +20,7 @@ ############################################################################## __author__ = 'mourad.elhadj.mimoune' -from openerp import models, fields, api, _ +from openerp import api, fields, models, _ class PurchaseOrderLine(models.Model): diff --git a/l10n_fr_ecotaxe/models/sale.py b/l10n_fr_ecotaxe/models/sale.py index 60091fa8b..75b1337da 100755 --- a/l10n_fr_ecotaxe/models/sale.py +++ b/l10n_fr_ecotaxe/models/sale.py @@ -20,7 +20,7 @@ ############################################################################## __author__ = 'mourad.elhadj.mimoune' -from openerp import models, fields, api, _ +from openerp import api, fields, models, _ class SaleOrderLine(models.Model): diff --git a/l10n_fr_ecotaxe/security/ir_model_access.yml b/l10n_fr_ecotaxe/security/ir_model_access.yml new file mode 100644 index 000000000..85c8ad492 --- /dev/null +++ b/l10n_fr_ecotaxe/security/ir_model_access.yml @@ -0,0 +1,25 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Account Product - France Ecotaxe localisation module for Odoo +# Copyright (C) 2015 Akretion (http://www.akretion.com). +# @author Mourad EL HADJ MIMOUNE +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### + +- !record {model: ir.model.access, id: ir_model_access_account_ecotaxe_classification_reader}: + group_id: base.group_user + model_id: model_account_ecotaxe_classification + name: Fiscal Classification Reader + perm_read: true + +- !record {model: ir.model.access, id: ir_model_access_account_ecotaxe_classification_manager}: + group_id: account.group_account_manager + model_id: model_account_ecotaxe_classification + name: Fiscal Classification Manager + perm_create: true + perm_write: true + perm_read: true + perm_unlink: true diff --git a/l10n_fr_ecotaxe/security/ir_rule.xml b/l10n_fr_ecotaxe/security/ir_rule.xml new file mode 100644 index 000000000..6a5b5a8a6 --- /dev/null +++ b/l10n_fr_ecotaxe/security/ir_rule.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + Ecotaxe Classification + + + ['|', ('company_id', '=', user.company_id.id), ('company_id', '=', False)] + + + diff --git a/l10n_fr_ecotaxe/views/account_view.xml b/l10n_fr_ecotaxe/views/account_view.xml index 0c267cddd..27d962a08 100644 --- a/l10n_fr_ecotaxe/views/account_view.xml +++ b/l10n_fr_ecotaxe/views/account_view.xml @@ -6,68 +6,138 @@ --> - + - - - l10n_fr_ecotaxe.account.tax.form - account.tax - - 300 - - - - - - - - - l10n_fr_ecotaxe.customer.invoice.form - account.invoice - - - - - - - True - - - True - - - - - - + + + l10n_fr_ecotaxe.account.tax.form + account.tax + + 300 + + + + + + - - - - - l10n_fr_ecotaxe.supplier.invoice.form - account.invoice - - - - - - - True - - - True - - - - - - - - - - + + + + + Ecotaxe Classification + ir.actions.act_window + account.ecotaxe.classification + form + tree,form + + + + + + account.ecotaxe.classification + + + + + + + + + + + + + + account.ecotaxe.classification + +
+ +
+
+
+

+ +

+
+ + + + + + + + + + + + + + + + +
+
+
+
+ + + + + + l10n_fr_ecotaxe.customer.invoice.form + account.invoice + + + + + + + True + + + True + + + + + + + + + + + + l10n_fr_ecotaxe.supplier.invoice.form + account.invoice + + + + + + + True + + + True + + + + + + + + -
+
diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index 7241c91fa..61d25de43 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -15,16 +15,15 @@ - - - - + + + + + + From 246d71b5f51c40a6d30d4d34d944e95cefbd40a6 Mon Sep 17 00:00:00 2001 From: Mourad Date: Mon, 23 Nov 2015 14:59:48 +0100 Subject: [PATCH 04/54] ADD eco taxes classification --- l10n_fr_ecotaxe/__openerp__.py | 12 +++--- l10n_fr_ecotaxe/models/account.py | 5 ++- l10n_fr_ecotaxe/models/product.py | 6 ++- l10n_fr_ecotaxe/views/account_view.xml | 52 +++++++++++++++++--------- l10n_fr_ecotaxe/views/product_view.xml | 2 +- 5 files changed, 49 insertions(+), 28 deletions(-) diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__openerp__.py index 52bd67ccd..29206ed71 100644 --- a/l10n_fr_ecotaxe/__openerp__.py +++ b/l10n_fr_ecotaxe/__openerp__.py @@ -61,12 +61,12 @@ 'purchase' ], 'data': [ - # 'security/ir_rule.xml', - # 'security/ir_model_access.yml', - # 'views/product_view.xml', - # 'views/sale_view.xml', - # 'views/purchase_view.xml', - # 'views/account_view.xml', + 'security/ir_rule.xml', + 'security/ir_model_access.yml', + 'views/product_view.xml', + 'views/sale_view.xml', + 'views/purchase_view.xml', + 'views/account_view.xml', ], 'test': [], diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py index da707e818..ee58d8bdf 100644 --- a/l10n_fr_ecotaxe/models/account.py +++ b/l10n_fr_ecotaxe/models/account.py @@ -81,14 +81,15 @@ def _default_company_id(self): ('is_ecotaxe', '=', True), ('parent_id', '=', False), ('type_tax_use', 'in', ['sale', 'all'])]) - purchase_ecotaxe_id = fields.Many2many( + purchase_ecotaxe_id = fields.Many2one( 'account.tax', string="Purchase EcoTaxe", domain=[ ('is_ecotaxe', '=', True), ('parent_id', '=', False), ('type_tax_use', 'in', ['purchase', 'all'])]) - active = fields.Boolean() + active = fields.Boolean(default=True,) + company_id = fields.Many2one( comodel_name='res.company', default=_default_company_id, string='Company', help="Specify a company" diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index 7f652007d..a30f088dc 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -72,9 +72,11 @@ def _compute_ecotaxe(self): @api.onchange('ecotaxe_classification_id') def onchange_ecotaxe_classification_id(self): if self.ecotaxe_classification_id: - sale_taxes = self.taxes_id.ids |\ + sale_taxes = self.taxes_id.ids or [] + sale_taxes +=\ self.ecotaxe_classification_id.sale_ecotaxe_id.ids - purchase_taxes = self.supplier_taxes_id.ids |\ + purchase_taxes = self.supplier_taxes_id.ids or [] + purchase_taxes +=\ self.ecotaxe_classification_id.purchase_ecotaxe_id.ids self.taxes_id = [(6, 0, sale_taxes)] self.supplier_taxes_id = [(6, 0, purchase_taxes)] diff --git a/l10n_fr_ecotaxe/views/account_view.xml b/l10n_fr_ecotaxe/views/account_view.xml index 27d962a08..fd6f2dd42 100644 --- a/l10n_fr_ecotaxe/views/account_view.xml +++ b/l10n_fr_ecotaxe/views/account_view.xml @@ -9,7 +9,7 @@ - + l10n_fr_ecotaxe.account.tax.form account.tax @@ -24,19 +24,7 @@ - - Ecotaxe Classification - ir.actions.act_window - account.ecotaxe.classification - form - tree,form - - - + account.ecotaxe.classification @@ -44,13 +32,14 @@ - - + + + @@ -91,7 +80,36 @@ - + + account.ecotaxe.classification + + + + + + + + + + + + + Ecotaxe Classification + account.ecotaxe.classification + form + tree,form + +

+ Click to start a new Ecotaxe Classification. +

+
+
+ + + diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index 61d25de43..3984bc317 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -9,7 +9,7 @@ - + product.product.form.websitecodes product.product From 3a140b4902dbb56f0832b14b85384649c51cbb9e Mon Sep 17 00:00:00 2001 From: Mourad Date: Mon, 23 Nov 2015 15:03:34 +0100 Subject: [PATCH 05/54] Remove commented code --- l10n_fr_ecotaxe/models/product.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index a30f088dc..6ed79c6aa 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -28,18 +28,6 @@ class ProductProduct(models.Model): _inherit = 'product.product' - # ecotaxe_type = fields.Selection( - # [ - # ('fixed', u'Fixed'), - # ('weight_based', 'Weight based'), - # ], - # string='Ecotaxe Type', - # 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('Ecotaxe Coef') - # fixed_ecotaxe = fields.Float('Fixed Ecotaxe',) ecotaxe_classification_id = fields.Many2one( 'account.ecotaxe.classification', string="Ecotaxe Classification",) From 48ad66f9f037fe694e6a6a53f656b52628750dff Mon Sep 17 00:00:00 2001 From: Mourad Date: Tue, 1 Dec 2015 09:45:26 +0100 Subject: [PATCH 06/54] [FIX] bug non compliant picking location dest --- l10n_fr_ecotaxe/models/account_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_fr_ecotaxe/models/account_invoice.py b/l10n_fr_ecotaxe/models/account_invoice.py index 1b75d9dc6..e7681a3fe 100644 --- a/l10n_fr_ecotaxe/models/account_invoice.py +++ b/l10n_fr_ecotaxe/models/account_invoice.py @@ -33,7 +33,7 @@ class AcountInvoiceLine(models.Model): @api.multi @api.depends('invoice_line_tax_id', 'product_id', 'quantity') def _compute_ecotaxe(self): - for line in line: + for line in self: ecotaxe_id = [tax.id for tax in line.invoice_line_tax_id if tax.is_ecotaxe] ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) From 0acd7cda180893c4b7ce52af0a820e266c5f9a03 Mon Sep 17 00:00:00 2001 From: Mourad Date: Tue, 1 Dec 2015 17:47:44 +0100 Subject: [PATCH 07/54] Add base exotaxe (weight or qty) + change relation many2many between product and ecotaxe classification --- l10n_fr_ecotaxe/models/account.py | 40 +++++++++++++++++++ l10n_fr_ecotaxe/models/product.py | 55 +++++++++++++++----------- l10n_fr_ecotaxe/views/account_view.xml | 4 +- l10n_fr_ecotaxe/views/product_view.xml | 5 ++- 4 files changed, 79 insertions(+), 25 deletions(-) diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py index ee58d8bdf..45596d7e6 100644 --- a/l10n_fr_ecotaxe/models/account.py +++ b/l10n_fr_ecotaxe/models/account.py @@ -103,3 +103,43 @@ def onchange_ecotaxe_type(self): self.fixed_ecotaxe = 0 if self.ecotaxe_type == 'fixed': self.ecotaxe_coef = 0 + + +class account_invoice_tax(models.Model): + _inherit = "account.invoice.tax" + + @api.depends('tax_code_id', 'base_code_id', 'account_id', 'invoice_id') + def _compute_generic_base(self): + for tax_line in self: + generic_base = 0.0 + for line in tax_line.invoice_id.invoice_line: + ecotaxe_ids = [tax.id for tax in line.invoice_line_tax_id + if tax.is_ecotaxe] + for ecotaxe_id in self.env['account.tax'].browse(ecotaxe_ids): + tax_acc_id = ecotaxe_id.account_paid_id + if tax_line.invoice_id.type in ('out_invoice','in_invoice'): + tax_acc_id = ecotaxe_id.account_collected_id + if ecotaxe_id.tax_code_id == tax_line.tax_code_id and \ + ecotaxe_id.base_code_id == tax_line.base_code_id and \ + (not tax_acc_id or tax_acc_id == tax_line.account_id): + + if line.product_id and \ + line.product_id.ecotaxe_classification_ids and \ + line.product_id.ecotaxe_classification_ids.ecotaxe_type == \ + 'fixed': + generic_base += line.quantity + elif line.product_id and \ + line.product_id.ecotaxe_classification_ids and \ + line.product_id.ecotaxe_classification_ids.ecotaxe_type == \ + 'weight_based': + generic_base += line.product_id.weight_net * line.quantity + + tax_line.generic_base = generic_base + + generic_base = fields.Float(string='Generic base', + compute='_compute_generic_base', + help="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", store=True) \ No newline at end of file diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index 6ed79c6aa..a1093274f 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -28,44 +28,55 @@ class ProductProduct(models.Model): _inherit = 'product.product' - ecotaxe_classification_id = fields.Many2one( - 'account.ecotaxe.classification', - string="Ecotaxe Classification",) - computed_ecotaxe = fields.Float('Ecotaxe value', + ecotaxe_classification_ids = fields.Many2many( + 'account.ecotaxe.classification', 'product_product_rel_ecotaxe_classif', + string='Ecotaxe Classification',) + fixed_ecotaxe = fields.Float('Fixed Ecotaxe', compute='_compute_ecotaxe', help="Ecotaxe value :\h" "1 Fixed ecotaxe of the " "Ecotaxe Classification\n" "2 product weight * ecotaxe coef * " "Ecotaxe Classification\n") + computed_ecotaxe = fields.Float('Coputed Ecotaxe', + compute='_compute_ecotaxe', + help="Ecotaxe value :\h" + "1 Fixed ecotaxe of the " + "Ecotaxe Classification\n" + "2 product weight * ecotaxe coef * " + "Ecotaxe Classification\n") - @api.depends('ecotaxe_classification_id', - 'ecotaxe_classification_id.ecotaxe_type', - 'ecotaxe_classification_id.ecotaxe_coef', - 'ecotaxe_classification_id.fixed_ecotaxe', 'weight') + @api.depends('ecotaxe_classification_ids', + 'ecotaxe_classification_ids.ecotaxe_type', + 'ecotaxe_classification_ids.ecotaxe_coef', + 'ecotaxe_classification_ids.fixed_ecotaxe', 'weight') def _compute_ecotaxe(self): for prod in self: - ecotaxe_classif_id = prod.ecotaxe_classification_id - if ecotaxe_classif_id: + prod.computed_ecotaxe = 0.0 + prod.fixed_ecotaxe = 0.0 + for ecotaxe_classif_id in prod.ecotaxe_classification_ids : if ecotaxe_classif_id.ecotaxe_type ==\ 'weight_based': - weight = prod.weight or 0.0 - prod.computed_ecotaxe =\ + weight = prod.weight_net or 0.0 + prod.computed_ecotaxe +=\ ecotaxe_classif_id.ecotaxe_coef * weight else: - prod.computed_ecotaxe = ecotaxe_classif_id.fixed_ecotaxe - else: - prod.computed_ecotaxe = 0.0 + prod.fixed_ecotaxe += ecotaxe_classif_id.fixed_ecotaxe + - @api.onchange('ecotaxe_classification_id') - def onchange_ecotaxe_classification_id(self): - if self.ecotaxe_classification_id: + + @api.onchange('ecotaxe_classification_ids') + def onchange_ecotaxe_classification_ids(self): + if self.ecotaxe_classification_ids: sale_taxes = self.taxes_id.ids or [] - sale_taxes +=\ - self.ecotaxe_classification_id.sale_ecotaxe_id.ids purchase_taxes = self.supplier_taxes_id.ids or [] - purchase_taxes +=\ - self.ecotaxe_classification_id.purchase_ecotaxe_id.ids + for ecotaxe_classif_id in self.ecotaxe_classification_ids: + + sale_taxes +=\ + ecotaxe_classif_id.sale_ecotaxe_id.ids + + purchase_taxes +=\ + ecotaxe_classif_id.purchase_ecotaxe_id.ids self.taxes_id = [(6, 0, sale_taxes)] self.supplier_taxes_id = [(6, 0, purchase_taxes)] diff --git a/l10n_fr_ecotaxe/views/account_view.xml b/l10n_fr_ecotaxe/views/account_view.xml index fd6f2dd42..a0b56392a 100644 --- a/l10n_fr_ecotaxe/views/account_view.xml +++ b/l10n_fr_ecotaxe/views/account_view.xml @@ -131,7 +131,9 @@ - + + + diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index 3984bc317..6e2147bf8 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -15,8 +15,9 @@ - - + + + From 7f40fba5b11244e93d3a5d410a5234a9e4ca5c4d Mon Sep 17 00:00:00 2001 From: Mourad Date: Thu, 3 Dec 2015 09:23:45 +0100 Subject: [PATCH 08/54] [FIX] compute generic base for account.invoice.taxe --- l10n_fr_ecotaxe/models/account.py | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py index 45596d7e6..612a6ffc4 100644 --- a/l10n_fr_ecotaxe/models/account.py +++ b/l10n_fr_ecotaxe/models/account.py @@ -122,19 +122,20 @@ def _compute_generic_base(self): if ecotaxe_id.tax_code_id == tax_line.tax_code_id and \ ecotaxe_id.base_code_id == tax_line.base_code_id and \ (not tax_acc_id or tax_acc_id == tax_line.account_id): - - if line.product_id and \ - line.product_id.ecotaxe_classification_ids and \ - line.product_id.ecotaxe_classification_ids.ecotaxe_type == \ - 'fixed': - generic_base += line.quantity - elif line.product_id and \ - line.product_id.ecotaxe_classification_ids and \ - line.product_id.ecotaxe_classification_ids.ecotaxe_type == \ - 'weight_based': - generic_base += line.product_id.weight_net * line.quantity - - tax_line.generic_base = generic_base + if line.product_id: + for ecotaxe_classif_id in line.product_id.ecotaxe_classification_ids : + related_tax_id = ecotaxe_classif_id.purchase_ecotaxe_id + if tax_line.invoice_id.type in ('out_invoice','in_invoice'): + related_tax_id = ecotaxe_classif_id.sale_ecotaxe_id + + if ecotaxe_classif_id.ecotaxe_type == 'fixed' and \ + ecotaxe_id == related_tax_id: + generic_base += line.quantity + elif ecotaxe_classif_id.ecotaxe_type == 'weight_based' and \ + ecotaxe_id == related_tax_id: + generic_base += line.product_id.weight_net * line.quantity + + tax_line.generic_base = generic_base or tax_line.base generic_base = fields.Float(string='Generic base', compute='_compute_generic_base', From 5782f7b0e695a04ae8f4008a0e48132c591a90ba Mon Sep 17 00:00:00 2001 From: Mourad Date: Fri, 4 Dec 2015 16:55:59 +0100 Subject: [PATCH 09/54] [FIX] bug off binary fileds + code format --- l10n_fr_ecotaxe/models/product.py | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index a1093274f..5c83b23c1 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -21,30 +21,23 @@ __author__ = 'mourad.elhadj.mimoune' from openerp import api, fields, models -from collections import defaultdict -from openerp.osv import expression class ProductProduct(models.Model): _inherit = 'product.product' ecotaxe_classification_ids = fields.Many2many( - 'account.ecotaxe.classification', 'product_product_rel_ecotaxe_classif', + 'account.ecotaxe.classification', + 'product_product_rel_ecotaxe_classif', string='Ecotaxe Classification',) - fixed_ecotaxe = fields.Float('Fixed Ecotaxe', - compute='_compute_ecotaxe', - help="Ecotaxe value :\h" - "1 Fixed ecotaxe of the " - "Ecotaxe Classification\n" - "2 product weight * ecotaxe coef * " - "Ecotaxe Classification\n") + fixed_ecotaxe = fields.Float('Fixed Ecotaxe', compute='_compute_ecotaxe', + help="Fixed ecotaxe of the " + "Ecotaxe Classification\n") computed_ecotaxe = fields.Float('Coputed Ecotaxe', compute='_compute_ecotaxe', - help="Ecotaxe value :\h" - "1 Fixed ecotaxe of the " - "Ecotaxe Classification\n" - "2 product weight * ecotaxe coef * " - "Ecotaxe Classification\n") + help="Ecotaxe value :\n" + "product weight * ecotaxe coef of " + "Ecotaxe Classification\n") @api.depends('ecotaxe_classification_ids', 'ecotaxe_classification_ids.ecotaxe_type', @@ -54,7 +47,7 @@ def _compute_ecotaxe(self): for prod in self: prod.computed_ecotaxe = 0.0 prod.fixed_ecotaxe = 0.0 - for ecotaxe_classif_id in prod.ecotaxe_classification_ids : + for ecotaxe_classif_id in prod.ecotaxe_classification_ids: if ecotaxe_classif_id.ecotaxe_type ==\ 'weight_based': weight = prod.weight_net or 0.0 @@ -63,18 +56,14 @@ def _compute_ecotaxe(self): else: prod.fixed_ecotaxe += ecotaxe_classif_id.fixed_ecotaxe - - @api.onchange('ecotaxe_classification_ids') def onchange_ecotaxe_classification_ids(self): if self.ecotaxe_classification_ids: sale_taxes = self.taxes_id.ids or [] purchase_taxes = self.supplier_taxes_id.ids or [] for ecotaxe_classif_id in self.ecotaxe_classification_ids: - sale_taxes +=\ ecotaxe_classif_id.sale_ecotaxe_id.ids - purchase_taxes +=\ ecotaxe_classif_id.purchase_ecotaxe_id.ids self.taxes_id = [(6, 0, sale_taxes)] From 20d489a09449ce176eb29e89fd11f991e246a2f3 Mon Sep 17 00:00:00 2001 From: mourad-ehm Date: Wed, 2 Mar 2016 11:58:31 +0100 Subject: [PATCH 10/54] [FIX] move ecotaxte to product template --- l10n_fr_ecotaxe/models/product.py | 11 +++++++---- l10n_fr_ecotaxe/views/product_view.xml | 27 +++++++++++++++++++------- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index 5c83b23c1..f10f3428a 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -22,14 +22,17 @@ from openerp import api, fields, models - -class ProductProduct(models.Model): - _inherit = 'product.product' +class ProductTemplate(models.Model): + _inherit = 'product.template' ecotaxe_classification_ids = fields.Many2many( 'account.ecotaxe.classification', - 'product_product_rel_ecotaxe_classif', + 'product_template_rel_ecotaxe_classif', string='Ecotaxe Classification',) + +class ProductProduct(models.Model): + _inherit = 'product.product' + fixed_ecotaxe = fields.Float('Fixed Ecotaxe', compute='_compute_ecotaxe', help="Fixed ecotaxe of the " "Ecotaxe Classification\n") diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index 6e2147bf8..96d65fb11 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -9,20 +9,33 @@ - - product.product.form.websitecodes + + product.template.ecotaxe.form + product.template + + + + + + + + + + product.product.ecotaxe.form product.product - + - - + - - From a169859db4c9aab26632110304150f36a70b0248 Mon Sep 17 00:00:00 2001 From: Mourad Elhadj Mimoune Date: Fri, 17 Jun 2016 10:53:06 +0200 Subject: [PATCH 17/54] [FIX] add README.rst --- l10n_fr_ecotaxe/README.rst | 63 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 l10n_fr_ecotaxe/README.rst diff --git a/l10n_fr_ecotaxe/README.rst b/l10n_fr_ecotaxe/README.rst new file mode 100644 index 000000000..51ce80bb7 --- /dev/null +++ b/l10n_fr_ecotaxe/README.rst @@ -0,0 +1,63 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License + + +This module manages the Ecotaxe (Recycling Tax) for France. +========================================================== + +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). + +This localisation module add a field "is Ecotaxe" on Tax object. +It add Ecotaxe amount on sale line, purchase line and invoice line. +furthermore, a total ecotaxe are added at the footer of each document. +The fields "Untaxed amount include Ecotaxe amount" was added for readability. + +To make easy ecotaxe management and to factor the data, ecotaxe are set on products via ECOTAXE classification. +ECOTAXE classification can either a fixed or weight based ecotaxe. +On the taxe "Ecotaxe" we use python code to get a right ecotaxe +value from product. +One ecotaxe can be used for all products. +You should define two ecotaxes : +* sale ecotaxe +* purchase ecotaxe + + +Setting +============= + +Add sale and purchase ecotexe. The Ecotaxe amount must be included in base of VAT. The ecotaxe should have a sequence less then VAT. Define the right account on Ecotaxe. +Add ecotaxe classification via the menu *Accounting > configuration > Taxes > Ecotaxe Classification. + +Assign ecotaxe to a product. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues + + +Credits +======= + +Contributors +------------ + +* Mourad EL HADJ MIMOUNE + + +Maintainer +---------- +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit http://odoo-community.org. + + From 514ca23ba0df91af4334c392ce6c0a289002533f Mon Sep 17 00:00:00 2001 From: David Beal Date: Thu, 7 Jul 2016 12:14:41 +0200 Subject: [PATCH 18/54] [IMP] add decimal precision to ecotaxe_coef --- l10n_fr_ecotaxe/__openerp__.py | 1 + l10n_fr_ecotaxe/data/account_data.xml | 12 ++++++++++++ l10n_fr_ecotaxe/models/account.py | 10 ++++++---- 3 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 l10n_fr_ecotaxe/data/account_data.xml diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__openerp__.py index 8e2b18550..9bfd001f2 100644 --- a/l10n_fr_ecotaxe/__openerp__.py +++ b/l10n_fr_ecotaxe/__openerp__.py @@ -16,6 +16,7 @@ 'purchase' ], 'data': [ + 'data/account_data.xml', 'security/ir_rule.xml', 'security/ir_model_access.yml', 'views/product_view.xml', diff --git a/l10n_fr_ecotaxe/data/account_data.xml b/l10n_fr_ecotaxe/data/account_data.xml new file mode 100644 index 000000000..804ffb433 --- /dev/null +++ b/l10n_fr_ecotaxe/data/account_data.xml @@ -0,0 +1,12 @@ + + + + + + + Ecotaxe + 3 + + + + diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py index 1c08a9bcd..5f23590e6 100644 --- a/l10n_fr_ecotaxe/models/account.py +++ b/l10n_fr_ecotaxe/models/account.py @@ -21,6 +21,7 @@ ############################################################################### from openerp import api, fields, models +import openerp.addons.decimal_precision as dp class AccountTax(models.Model): @@ -66,11 +67,12 @@ def _default_company_id(self): "the ecotaxe coef must take into account\n" "the weight unit of measure (kg by default)" ) - ecotaxe_coef = fields.Float('Ecotaxe Coef') + ecotaxe_coef = fields.Float( + string='Ecotaxe Coef', + digits=dp.get_precision('Ecotaxe')) fixed_ecotaxe = fields.Float( - 'Fixed Ecotaxe', - help="fixed ecotaxe amount.\n" - ) + string='Fixed Ecotaxe', + help="fixed ecotaxe amount.\n") sale_ecotaxe_id = fields.Many2one( 'account.tax', string="Sale EcoTaxe", From 71cfc974ae269bb0031b442fe86fa7c7a110ea6b Mon Sep 17 00:00:00 2001 From: Mourad Elhadj Mimoune Date: Wed, 31 Aug 2016 16:49:48 +0200 Subject: [PATCH 19/54] [FIX] bugs and remarks from code review --- l10n_fr_ecotaxe/__openerp__.py | 3 +-- l10n_fr_ecotaxe/models/account.py | 31 +++++------------------ l10n_fr_ecotaxe/models/account_invoice.py | 22 +++------------- l10n_fr_ecotaxe/models/product.py | 22 +++------------- l10n_fr_ecotaxe/models/purchase.py | 22 +++------------- l10n_fr_ecotaxe/models/sale.py | 22 +++------------- 6 files changed, 20 insertions(+), 102 deletions(-) diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__openerp__.py index 9bfd001f2..b7a299ec9 100644 --- a/l10n_fr_ecotaxe/__openerp__.py +++ b/l10n_fr_ecotaxe/__openerp__.py @@ -10,8 +10,7 @@ 'website': 'http://www.akretion.com', 'category': 'Localization/Account Taxes', 'depends': [ - 'account', - 'product', + 'account_accountant', 'sale', 'purchase' ], diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py index 5f23590e6..004157fae 100644 --- a/l10n_fr_ecotaxe/models/account.py +++ b/l10n_fr_ecotaxe/models/account.py @@ -1,24 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################### -# -# Module for OpenERP -# Copyright (C) 2015 Akretion (http://www.akretion.com). +# © 2014-2016 Akretion (http://www.akretion.com) # @author Mourad EL HADJ MIMOUNE -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################### +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models import openerp.addons.decimal_precision as dp @@ -55,14 +38,14 @@ class AccountEcotaxeClassification(models.Model): def _default_company_id(self): return self.env['res.users']._get_company() - name = fields.Char('Name') + name = fields.Char('Name', required=True,) code = fields.Char('Code') ecotaxe_type = fields.Selection( [ ('fixed', u'Fixed'), ('weight_based', 'Weight based'), ], - string='Ecotaxe Type', + string='Ecotaxe Type', required=True, help="If ecotaxe is weight based," "the ecotaxe coef must take into account\n" "the weight unit of measure (kg by default)" @@ -75,14 +58,14 @@ def _default_company_id(self): help="fixed ecotaxe amount.\n") sale_ecotaxe_id = fields.Many2one( 'account.tax', - string="Sale EcoTaxe", + string="Sale EcoTaxe", required=True, domain=[ ('is_ecotaxe', '=', True), ('parent_id', '=', False), ('type_tax_use', 'in', ['sale', 'all'])]) purchase_ecotaxe_id = fields.Many2one( 'account.tax', - string="Purchase EcoTaxe", + string="Purchase EcoTaxe", required=True, domain=[ ('is_ecotaxe', '=', True), ('parent_id', '=', False), @@ -104,7 +87,7 @@ def onchange_ecotaxe_type(self): self.ecotaxe_coef = 0 -class account_invoice_tax(models.Model): +class AccountInvoiceTax(models.Model): _inherit = "account.invoice.tax" @api.depends('tax_code_id', 'base_code_id', 'account_id', 'invoice_id') diff --git a/l10n_fr_ecotaxe/models/account_invoice.py b/l10n_fr_ecotaxe/models/account_invoice.py index 3e674db5a..22ceb9109 100644 --- a/l10n_fr_ecotaxe/models/account_invoice.py +++ b/l10n_fr_ecotaxe/models/account_invoice.py @@ -1,23 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Mourad EL HADJ MIMOUNE -# Copyright (C) 2015-TODAY Akretion . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2014-2016 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index 6bbd625c1..aff471bd9 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -1,23 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Mourad EL HADJ MIMOUNE -# Copyright (C) 2015-TODAY Akretion . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2014-2016 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models diff --git a/l10n_fr_ecotaxe/models/purchase.py b/l10n_fr_ecotaxe/models/purchase.py index 69ace9f1c..ee19f85f3 100755 --- a/l10n_fr_ecotaxe/models/purchase.py +++ b/l10n_fr_ecotaxe/models/purchase.py @@ -1,23 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Mourad EL HADJ MIMOUNE -# Copyright (C) 2015-TODAY Akretion . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2014-2016 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models diff --git a/l10n_fr_ecotaxe/models/sale.py b/l10n_fr_ecotaxe/models/sale.py index 804b2bcd7..9ea92fb37 100755 --- a/l10n_fr_ecotaxe/models/sale.py +++ b/l10n_fr_ecotaxe/models/sale.py @@ -1,23 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Mourad EL HADJ MIMOUNE -# Copyright (C) 2015-TODAY Akretion . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2014-2016 Akretion (http://www.akretion.com) +# @author Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models From 81f396141136aef023e7c709ec9d1fd9532b89a5 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 20 May 2017 04:32:21 +0200 Subject: [PATCH 20/54] OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex OCA Transbot updated translations from Transifex --- l10n_fr_ecotaxe/i18n/am.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ar.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/bg.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/bs.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ca.po | 332 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ca_ES.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/cs.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/cs_CZ.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/da.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/de.po | 332 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/el_GR.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/en_GB.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_AR.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_CL.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_CO.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_CR.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_DO.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_EC.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_ES.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_MX.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_PE.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_PY.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/es_VE.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/et.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/eu.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/fa.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/fi.po | 331 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/fr.po | 236 +++++++++++++++++++--- l10n_fr_ecotaxe/i18n/fr_CA.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/fr_CH.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/fr_FR.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/gl.po | 331 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/gl_ES.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/he.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/hr.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/hr_HR.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/hu.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/id.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/it.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ja.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ko.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/lt.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/lt_LT.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/lv.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/mk.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/mn.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/nb.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/nb_NO.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/nl.po | 331 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/nl_BE.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/nl_NL.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/pl.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/pt.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/pt_BR.po | 333 +++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/pt_PT.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ro.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/ru.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/sk.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/sk_SK.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/sl.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/sr.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/sr@latin.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/sv.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/th.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/tr.po | 332 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/tr_TR.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/uk.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/vi.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/vi_VN.po | 329 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/zh_CN.po | 330 ++++++++++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/zh_TW.po | 329 ++++++++++++++++++++++++++++++ 72 files changed, 23613 insertions(+), 28 deletions(-) create mode 100644 l10n_fr_ecotaxe/i18n/am.po create mode 100644 l10n_fr_ecotaxe/i18n/ar.po create mode 100644 l10n_fr_ecotaxe/i18n/bg.po create mode 100644 l10n_fr_ecotaxe/i18n/bs.po create mode 100644 l10n_fr_ecotaxe/i18n/ca.po create mode 100644 l10n_fr_ecotaxe/i18n/ca_ES.po create mode 100644 l10n_fr_ecotaxe/i18n/cs.po create mode 100644 l10n_fr_ecotaxe/i18n/cs_CZ.po create mode 100644 l10n_fr_ecotaxe/i18n/da.po create mode 100644 l10n_fr_ecotaxe/i18n/de.po create mode 100644 l10n_fr_ecotaxe/i18n/el_GR.po create mode 100644 l10n_fr_ecotaxe/i18n/en_GB.po create mode 100644 l10n_fr_ecotaxe/i18n/es.po create mode 100644 l10n_fr_ecotaxe/i18n/es_AR.po create mode 100644 l10n_fr_ecotaxe/i18n/es_CL.po create mode 100644 l10n_fr_ecotaxe/i18n/es_CO.po create mode 100644 l10n_fr_ecotaxe/i18n/es_CR.po create mode 100644 l10n_fr_ecotaxe/i18n/es_DO.po create mode 100644 l10n_fr_ecotaxe/i18n/es_EC.po create mode 100644 l10n_fr_ecotaxe/i18n/es_ES.po create mode 100644 l10n_fr_ecotaxe/i18n/es_MX.po create mode 100644 l10n_fr_ecotaxe/i18n/es_PE.po create mode 100644 l10n_fr_ecotaxe/i18n/es_PY.po create mode 100644 l10n_fr_ecotaxe/i18n/es_VE.po create mode 100644 l10n_fr_ecotaxe/i18n/et.po create mode 100644 l10n_fr_ecotaxe/i18n/eu.po create mode 100644 l10n_fr_ecotaxe/i18n/fa.po create mode 100644 l10n_fr_ecotaxe/i18n/fi.po create mode 100644 l10n_fr_ecotaxe/i18n/fr_CA.po create mode 100644 l10n_fr_ecotaxe/i18n/fr_CH.po create mode 100644 l10n_fr_ecotaxe/i18n/fr_FR.po create mode 100644 l10n_fr_ecotaxe/i18n/gl.po create mode 100644 l10n_fr_ecotaxe/i18n/gl_ES.po create mode 100644 l10n_fr_ecotaxe/i18n/he.po create mode 100644 l10n_fr_ecotaxe/i18n/hr.po create mode 100644 l10n_fr_ecotaxe/i18n/hr_HR.po create mode 100644 l10n_fr_ecotaxe/i18n/hu.po create mode 100644 l10n_fr_ecotaxe/i18n/id.po create mode 100644 l10n_fr_ecotaxe/i18n/it.po create mode 100644 l10n_fr_ecotaxe/i18n/ja.po create mode 100644 l10n_fr_ecotaxe/i18n/ko.po create mode 100644 l10n_fr_ecotaxe/i18n/lt.po create mode 100644 l10n_fr_ecotaxe/i18n/lt_LT.po create mode 100644 l10n_fr_ecotaxe/i18n/lv.po create mode 100644 l10n_fr_ecotaxe/i18n/mk.po create mode 100644 l10n_fr_ecotaxe/i18n/mn.po create mode 100644 l10n_fr_ecotaxe/i18n/nb.po create mode 100644 l10n_fr_ecotaxe/i18n/nb_NO.po create mode 100644 l10n_fr_ecotaxe/i18n/nl.po create mode 100644 l10n_fr_ecotaxe/i18n/nl_BE.po create mode 100644 l10n_fr_ecotaxe/i18n/nl_NL.po create mode 100644 l10n_fr_ecotaxe/i18n/pl.po create mode 100644 l10n_fr_ecotaxe/i18n/pt.po create mode 100644 l10n_fr_ecotaxe/i18n/pt_BR.po create mode 100644 l10n_fr_ecotaxe/i18n/pt_PT.po create mode 100644 l10n_fr_ecotaxe/i18n/ro.po create mode 100644 l10n_fr_ecotaxe/i18n/ru.po create mode 100644 l10n_fr_ecotaxe/i18n/sk.po create mode 100644 l10n_fr_ecotaxe/i18n/sk_SK.po create mode 100644 l10n_fr_ecotaxe/i18n/sl.po create mode 100644 l10n_fr_ecotaxe/i18n/sr.po create mode 100644 l10n_fr_ecotaxe/i18n/sr@latin.po create mode 100644 l10n_fr_ecotaxe/i18n/sv.po create mode 100644 l10n_fr_ecotaxe/i18n/th.po create mode 100644 l10n_fr_ecotaxe/i18n/tr.po create mode 100644 l10n_fr_ecotaxe/i18n/tr_TR.po create mode 100644 l10n_fr_ecotaxe/i18n/uk.po create mode 100644 l10n_fr_ecotaxe/i18n/vi.po create mode 100644 l10n_fr_ecotaxe/i18n/vi_VN.po create mode 100644 l10n_fr_ecotaxe/i18n/zh_CN.po create mode 100644 l10n_fr_ecotaxe/i18n/zh_TW.po diff --git a/l10n_fr_ecotaxe/i18n/am.po b/l10n_fr_ecotaxe/i18n/am.po new file mode 100644 index 000000000..2934cbd88 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\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..e101d722b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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..d834f117b --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\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..8691b5385 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/bs.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: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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..9a1182ee7 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\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..2a399b2f8 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ca_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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\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..22c05128d --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\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..d9fdf170a --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/cs_CZ.po @@ -0,0 +1,329 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs_CZ\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..be95956e1 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\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..94386c73d --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\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..225f20927 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/el_GR.po @@ -0,0 +1,330 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\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..918d05a4b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/en_GB.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: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\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..bba370758 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\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..629aa9052 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_AR.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: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\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..85ba773a7 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_CL.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: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\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..43e559f5d --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_CO.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: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\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..5fa3ee80b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_CR.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: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\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..37bff3aa3 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_DO.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: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\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..fca066037 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_EC.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: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\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..2ebd28049 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\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..a2a43da0b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_MX.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\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..7d47b3379 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_PE.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: 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\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..307292774 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_PY.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: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\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..420acaea7 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/es_VE.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: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\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..821fe513b --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\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..f304bbf5b --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\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..d50ded9c5 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\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..237c8d984 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\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 index b67291b33..ba481a58a 100644 --- a/l10n_fr_ecotaxe/i18n/fr.po +++ b/l10n_fr_ecotaxe/i18n/fr.po @@ -1,75 +1,191 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * l10n_fr_ecotaxe -# +# * 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: 2015-11-16 10:08+0000\n" -"PO-Revision-Date: 2015-11-16 10:08+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2018-03-24 05:39+0000\n" +"PO-Revision-Date: 2018-03-24 05:39+0000\n" +"Last-Translator: Quentin THEURET , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\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 "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" +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" +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.invoice.line,amount_ecotaxe:0 -#: field:account.tax,is_ecotaxe:0 +#: 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 "" + +#. module: l10n_fr_ecotaxe +#: field:account.ecotaxe.classification,ecotaxe_coef:0 #: field:product.category,ecotaxe_coef:0 -#: field:product.product,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 -#: field:product.product,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 "" + +#. 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 -#: selection:product.product,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 -#: help:product.product,ecotaxe_type:0 -msgid "If ecotaxe is weight based,the ecotaxe coef must take into account\n" +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" +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 +#: field:purchase.order,amount_ecotaxe:0 field:sale.order,amount_ecotaxe:0 msgid "Included Ecotaxe" msgstr "Dont Ecotaxe" @@ -81,7 +197,33 @@ msgstr "Facture" #. module: l10n_fr_ecotaxe #: model:ir.model,name:l10n_fr_ecotaxe.model_account_invoice_line msgid "Invoice Line" -msgstr "Ligne de facture" +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 @@ -93,12 +235,22 @@ msgstr "Taxes" #. module: l10n_fr_ecotaxe #: model:ir.model,name:l10n_fr_ecotaxe.model_product_product msgid "Product" -msgstr "Article" +msgstr "Produit" #. module: l10n_fr_ecotaxe #: model:ir.model,name:l10n_fr_ecotaxe.model_product_category msgid "Product Category" -msgstr "Catégorie d'article" +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 @@ -110,6 +262,11 @@ msgstr "Commande d'achat" 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" @@ -120,6 +277,19 @@ msgstr "Bon de commande" 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" @@ -133,6 +303,11 @@ msgstr "Taxes" 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 @@ -142,15 +317,20 @@ msgstr "Montant hors taxe" #. module: l10n_fr_ecotaxe #: help:account.tax,is_ecotaxe:0 -msgid "Warning : To inculde Ecotaxe in the VAT tax check this :\n" -"1: cochez \"ncluded in base amount \"\n" +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 "Attention pour appliquer la TVA sur l'écotaxe :\n" -"1 : cochez \"Incluse dans le montant de base \"\n" -"2 : La séquence de l'écotaxe inférieur à celle de la TVA (vente/achat) " +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 -#: selection:product.product,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..967f0d497 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr_CA.po @@ -0,0 +1,330 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\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..8af07f1c2 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr_CH.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\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..860a17777 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/fr_FR.po @@ -0,0 +1,330 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\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..73949a1a6 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\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..c1a651e12 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/gl_ES.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: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\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..31ccf01b7 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\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..ad5a323dc --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/hr.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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..be0013185 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/hr_HR.po @@ -0,0 +1,330 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\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..99a24a932 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\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..2894cd5aa --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\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..36696c774 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/it.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 +# 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: 2017-11-17 14:35+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\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 "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 "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 "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 "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 "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 Acquisto" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Riga Ordine d'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 "Ordini vendita" + +#. module: l10n_fr_ecotaxe +#: model:ir.model,name:l10n_fr_ecotaxe.model_sale_order_line +msgid "Sales Order Line" +msgstr "Linea d'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..8148f565e --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\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..cba98cf3d --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\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/lt.po b/l10n_fr_ecotaxe/i18n/lt.po new file mode 100644 index 000000000..c6020d970 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/lt.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: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\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..15ae8e54c --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/lt_LT.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: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\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..2f7f79f57 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/lv.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: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\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..f5afe9efc --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\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..256c5d65d --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\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..2e0194e9e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nb.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: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\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..77bceed10 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nb_NO.po @@ -0,0 +1,330 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\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..fdf2f802b --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\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..90b1086a6 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nl_BE.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\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..be95029d9 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/nl_NL.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\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..51545ee6f --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pl.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: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\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..76624c9f0 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\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..e4b40e45e --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pt_BR.po @@ -0,0 +1,333 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\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..25ef6b0b4 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/pt_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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\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..b480d4b19 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ro.po @@ -0,0 +1,330 @@ +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\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..24766db03 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/ru.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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..ef9877d67 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\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..f76c46918 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sk_SK.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: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk_SK\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..a2edb4018 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sl.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\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..c63eb1680 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sr.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: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\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..9df4a2237 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/sr@latin.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: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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..38d79a5d2 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\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..a4cbf7510 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\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..f6129a7a2 --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\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..4b983bab9 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/tr_TR.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\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..dafd2fc3f --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/uk.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: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\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..28cdcdafc --- /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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\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..db0be6b6b --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/vi_VN.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 (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\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..119fd43e1 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/zh_CN.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 +# 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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\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..05af75192 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/zh_TW.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: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\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 "" From 07d3aeac8524861756451b467ecc852fc783c741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Fri, 15 Jun 2018 23:21:45 +0200 Subject: [PATCH 21/54] remove obsolete .pot files [ci skip] --- l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot | 150 ----------------------- 1 file changed, 150 deletions(-) delete mode 100644 l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot diff --git a/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot b/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot deleted file mode 100644 index eb17f9b08..000000000 --- a/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot +++ /dev/null @@ -1,150 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * l10n_fr_ecotaxe -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-16 10:09+0000\n" -"PO-Revision-Date: 2015-11-16 10:09+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: l10n_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.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 -#: field:product.category,ecotaxe_coef:0 -#: field:product.product,ecotaxe_coef:0 -msgid "Ecotaxe Coef" -msgstr "" - -#. module: l10n_fr_ecotaxe -#: field:product.category,ecotaxe_type:0 -#: field:product.product,ecotaxe_type:0 -msgid "Ecotaxe Type" -msgstr "" - -#. module: l10n_fr_ecotaxe -#: selection:product.category,ecotaxe_type:0 -#: selection:product.product,ecotaxe_type:0 -msgid "Fixed" -msgstr "" - -#. module: l10n_fr_ecotaxe -#: field:product.category,default_fixed_ecotaxe:0 -#: field:product.product,fixed_ecotaxe:0 -msgid "Fixed Ecotaxe" -msgstr "" - -#. module: l10n_fr_ecotaxe -#: help:product.category,ecotaxe_type:0 -#: help:product.product,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 -#: 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_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 -#: 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 -#: 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 -#: 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 inculde Ecotaxe in the VAT tax check this :\n" -"1: cochez \"ncluded in base amount \"\n" -"2: The Ecotaxe sequence must be less then VAT tax (in sale and purchase)" -msgstr "" - -#. module: l10n_fr_ecotaxe -#: selection:product.category,ecotaxe_type:0 -#: selection:product.product,ecotaxe_type:0 -msgid "Weight based" -msgstr "" From de6faf285fa460e3ec3e5c8b4736d7a222695e22 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 13:24:01 +0000 Subject: [PATCH 22/54] [UPD] Update l10n_fr_ecotaxe.pot --- l10n_fr_ecotaxe/i18n/am.po | 8 +- l10n_fr_ecotaxe/i18n/ar.po | 11 +- l10n_fr_ecotaxe/i18n/bg.po | 8 +- l10n_fr_ecotaxe/i18n/bs.po | 11 +- l10n_fr_ecotaxe/i18n/ca.po | 8 +- l10n_fr_ecotaxe/i18n/ca_ES.po | 11 +- l10n_fr_ecotaxe/i18n/cs.po | 8 +- l10n_fr_ecotaxe/i18n/cs_CZ.po | 11 +- l10n_fr_ecotaxe/i18n/da.po | 8 +- l10n_fr_ecotaxe/i18n/de.po | 8 +- l10n_fr_ecotaxe/i18n/el_GR.po | 11 +- l10n_fr_ecotaxe/i18n/en_GB.po | 11 +- l10n_fr_ecotaxe/i18n/es.po | 8 +- l10n_fr_ecotaxe/i18n/es_AR.po | 11 +- l10n_fr_ecotaxe/i18n/es_CL.po | 11 +- l10n_fr_ecotaxe/i18n/es_CO.po | 11 +- l10n_fr_ecotaxe/i18n/es_CR.po | 11 +- l10n_fr_ecotaxe/i18n/es_DO.po | 11 +- l10n_fr_ecotaxe/i18n/es_EC.po | 11 +- l10n_fr_ecotaxe/i18n/es_ES.po | 11 +- l10n_fr_ecotaxe/i18n/es_MX.po | 11 +- l10n_fr_ecotaxe/i18n/es_PE.po | 11 +- l10n_fr_ecotaxe/i18n/es_PY.po | 11 +- l10n_fr_ecotaxe/i18n/es_VE.po | 11 +- l10n_fr_ecotaxe/i18n/et.po | 8 +- l10n_fr_ecotaxe/i18n/eu.po | 8 +- l10n_fr_ecotaxe/i18n/fa.po | 8 +- l10n_fr_ecotaxe/i18n/fi.po | 8 +- l10n_fr_ecotaxe/i18n/fr.po | 8 +- l10n_fr_ecotaxe/i18n/fr_CA.po | 11 +- l10n_fr_ecotaxe/i18n/fr_CH.po | 11 +- l10n_fr_ecotaxe/i18n/fr_FR.po | 11 +- l10n_fr_ecotaxe/i18n/gl.po | 8 +- l10n_fr_ecotaxe/i18n/gl_ES.po | 11 +- l10n_fr_ecotaxe/i18n/he.po | 8 +- l10n_fr_ecotaxe/i18n/hr.po | 14 +- l10n_fr_ecotaxe/i18n/hr_HR.po | 14 +- l10n_fr_ecotaxe/i18n/hu.po | 8 +- l10n_fr_ecotaxe/i18n/id.po | 8 +- l10n_fr_ecotaxe/i18n/it.po | 8 +- l10n_fr_ecotaxe/i18n/ja.po | 8 +- l10n_fr_ecotaxe/i18n/ko.po | 8 +- l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot | 318 +++++++++++++++++++++++ l10n_fr_ecotaxe/i18n/lt.po | 11 +- l10n_fr_ecotaxe/i18n/lt_LT.po | 14 +- l10n_fr_ecotaxe/i18n/lv.po | 11 +- l10n_fr_ecotaxe/i18n/mk.po | 8 +- l10n_fr_ecotaxe/i18n/mn.po | 8 +- l10n_fr_ecotaxe/i18n/nb.po | 11 +- l10n_fr_ecotaxe/i18n/nb_NO.po | 11 +- l10n_fr_ecotaxe/i18n/nl.po | 8 +- l10n_fr_ecotaxe/i18n/nl_BE.po | 11 +- l10n_fr_ecotaxe/i18n/nl_NL.po | 11 +- l10n_fr_ecotaxe/i18n/pl.po | 12 +- l10n_fr_ecotaxe/i18n/pt.po | 8 +- l10n_fr_ecotaxe/i18n/pt_BR.po | 11 +- l10n_fr_ecotaxe/i18n/pt_PT.po | 14 +- l10n_fr_ecotaxe/i18n/ro.po | 11 +- l10n_fr_ecotaxe/i18n/ru.po | 12 +- l10n_fr_ecotaxe/i18n/sk.po | 8 +- l10n_fr_ecotaxe/i18n/sk_SK.po | 11 +- l10n_fr_ecotaxe/i18n/sl.po | 11 +- l10n_fr_ecotaxe/i18n/sr.po | 11 +- l10n_fr_ecotaxe/i18n/sr@latin.po | 14 +- l10n_fr_ecotaxe/i18n/sv.po | 8 +- l10n_fr_ecotaxe/i18n/th.po | 8 +- l10n_fr_ecotaxe/i18n/tr.po | 8 +- l10n_fr_ecotaxe/i18n/tr_TR.po | 11 +- l10n_fr_ecotaxe/i18n/uk.po | 11 +- l10n_fr_ecotaxe/i18n/vi.po | 8 +- l10n_fr_ecotaxe/i18n/vi_VN.po | 11 +- l10n_fr_ecotaxe/i18n/zh_CN.po | 11 +- l10n_fr_ecotaxe/i18n/zh_TW.po | 11 +- 73 files changed, 706 insertions(+), 337 deletions(-) create mode 100644 l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot diff --git a/l10n_fr_ecotaxe/i18n/am.po b/l10n_fr_ecotaxe/i18n/am.po index 2934cbd88..a248d6730 100644 --- a/l10n_fr_ecotaxe/i18n/am.po +++ b/l10n_fr_ecotaxe/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Mike T , 2017 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ar.po b/l10n_fr_ecotaxe/i18n/ar.po index e101d722b..76d152ad3 100644 --- a/l10n_fr_ecotaxe/i18n/ar.po +++ b/l10n_fr_ecotaxe/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # SaFi J. , 2017 @@ -13,11 +13,12 @@ msgstr "" "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" -"Language: ar\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" +"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 @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/bg.po b/l10n_fr_ecotaxe/i18n/bg.po index d834f117b..3245c328d 100644 --- a/l10n_fr_ecotaxe/i18n/bg.po +++ b/l10n_fr_ecotaxe/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/bs.po b/l10n_fr_ecotaxe/i18n/bs.po index 8691b5385..368fbf8ba 100644 --- a/l10n_fr_ecotaxe/i18n/bs.po +++ b/l10n_fr_ecotaxe/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: bs\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" +"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 @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ca.po b/l10n_fr_ecotaxe/i18n/ca.po index 9a1182ee7..9ebe62f72 100644 --- a/l10n_fr_ecotaxe/i18n/ca.po +++ b/l10n_fr_ecotaxe/i18n/ca.po @@ -1,7 +1,7 @@ # 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 @@ -15,10 +15,10 @@ msgstr "" "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" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -281,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ca_ES.po b/l10n_fr_ecotaxe/i18n/ca_ES.po index 2a399b2f8..de3ecc2ea 100644 --- a/l10n_fr_ecotaxe/i18n/ca_ES.po +++ b/l10n_fr_ecotaxe/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Carlos Hormigo, 2018 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/cs.po b/l10n_fr_ecotaxe/i18n/cs.po index 22c05128d..cd09fb487 100644 --- a/l10n_fr_ecotaxe/i18n/cs.po +++ b/l10n_fr_ecotaxe/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Jaroslav Helemik Nemec , 2017 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/cs_CZ.po b/l10n_fr_ecotaxe/i18n/cs_CZ.po index d9fdf170a..7f5e5ca4b 100644 --- a/l10n_fr_ecotaxe/i18n/cs_CZ.po +++ b/l10n_fr_ecotaxe/i18n/cs_CZ.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Lukáš Spurný , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/da.po b/l10n_fr_ecotaxe/i18n/da.po index be95956e1..b554e48e2 100644 --- a/l10n_fr_ecotaxe/i18n/da.po +++ b/l10n_fr_ecotaxe/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/de.po b/l10n_fr_ecotaxe/i18n/de.po index 94386c73d..7ddb8dc7c 100644 --- a/l10n_fr_ecotaxe/i18n/de.po +++ b/l10n_fr_ecotaxe/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Philipp Hug , 2017 @@ -15,10 +15,10 @@ msgstr "" "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" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -281,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/el_GR.po b/l10n_fr_ecotaxe/i18n/el_GR.po index 225f20927..f8f5222ea 100644 --- a/l10n_fr_ecotaxe/i18n/el_GR.po +++ b/l10n_fr_ecotaxe/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Kostas Goutoudis , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/en_GB.po b/l10n_fr_ecotaxe/i18n/en_GB.po index 918d05a4b..8021b53a8 100644 --- a/l10n_fr_ecotaxe/i18n/en_GB.po +++ b/l10n_fr_ecotaxe/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es.po b/l10n_fr_ecotaxe/i18n/es.po index bba370758..e23f3f86f 100644 --- a/l10n_fr_ecotaxe/i18n/es.po +++ b/l10n_fr_ecotaxe/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Antonio Trueba , 2017 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_AR.po b/l10n_fr_ecotaxe/i18n/es_AR.po index 629aa9052..3f4bf19c5 100644 --- a/l10n_fr_ecotaxe/i18n/es_AR.po +++ b/l10n_fr_ecotaxe/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_CL.po b/l10n_fr_ecotaxe/i18n/es_CL.po index 85ba773a7..f3cfa75c9 100644 --- a/l10n_fr_ecotaxe/i18n/es_CL.po +++ b/l10n_fr_ecotaxe/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_CO.po b/l10n_fr_ecotaxe/i18n/es_CO.po index 43e559f5d..ec5918504 100644 --- a/l10n_fr_ecotaxe/i18n/es_CO.po +++ b/l10n_fr_ecotaxe/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_CR.po b/l10n_fr_ecotaxe/i18n/es_CR.po index 5fa3ee80b..9daff8578 100644 --- a/l10n_fr_ecotaxe/i18n/es_CR.po +++ b/l10n_fr_ecotaxe/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_DO.po b/l10n_fr_ecotaxe/i18n/es_DO.po index 37bff3aa3..b876b1e9e 100644 --- a/l10n_fr_ecotaxe/i18n/es_DO.po +++ b/l10n_fr_ecotaxe/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_EC.po b/l10n_fr_ecotaxe/i18n/es_EC.po index fca066037..c1624da80 100644 --- a/l10n_fr_ecotaxe/i18n/es_EC.po +++ b/l10n_fr_ecotaxe/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_ES.po b/l10n_fr_ecotaxe/i18n/es_ES.po index 2ebd28049..447bd5f2c 100644 --- a/l10n_fr_ecotaxe/i18n/es_ES.po +++ b/l10n_fr_ecotaxe/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Daniel , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_MX.po b/l10n_fr_ecotaxe/i18n/es_MX.po index a2a43da0b..5dc90ef1b 100644 --- a/l10n_fr_ecotaxe/i18n/es_MX.po +++ b/l10n_fr_ecotaxe/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Juan González , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_PE.po b/l10n_fr_ecotaxe/i18n/es_PE.po index 7d47b3379..2e86be52c 100644 --- a/l10n_fr_ecotaxe/i18n/es_PE.po +++ b/l10n_fr_ecotaxe/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_PY.po b/l10n_fr_ecotaxe/i18n/es_PY.po index 307292774..934ff5465 100644 --- a/l10n_fr_ecotaxe/i18n/es_PY.po +++ b/l10n_fr_ecotaxe/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/es_VE.po b/l10n_fr_ecotaxe/i18n/es_VE.po index 420acaea7..1041f4161 100644 --- a/l10n_fr_ecotaxe/i18n/es_VE.po +++ b/l10n_fr_ecotaxe/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/et.po b/l10n_fr_ecotaxe/i18n/et.po index 821fe513b..83b42f944 100644 --- a/l10n_fr_ecotaxe/i18n/et.po +++ b/l10n_fr_ecotaxe/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/eu.po b/l10n_fr_ecotaxe/i18n/eu.po index f304bbf5b..394d6be7e 100644 --- a/l10n_fr_ecotaxe/i18n/eu.po +++ b/l10n_fr_ecotaxe/i18n/eu.po @@ -1,7 +1,7 @@ # 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 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/fa.po b/l10n_fr_ecotaxe/i18n/fa.po index d50ded9c5..0fa885b30 100644 --- a/l10n_fr_ecotaxe/i18n/fa.po +++ b/l10n_fr_ecotaxe/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/fi.po b/l10n_fr_ecotaxe/i18n/fi.po index 237c8d984..23e7bc5cd 100644 --- a/l10n_fr_ecotaxe/i18n/fi.po +++ b/l10n_fr_ecotaxe/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Jarmo Kortetjärvi , 2017 # OCA Transbot , 2017 @@ -14,10 +14,10 @@ msgstr "" "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" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -280,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/fr.po b/l10n_fr_ecotaxe/i18n/fr.po index ba481a58a..95b60452b 100644 --- a/l10n_fr_ecotaxe/i18n/fr.po +++ b/l10n_fr_ecotaxe/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Quentin THEURET , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-03-24 05:39+0000\n" "Last-Translator: Quentin THEURET , 2017\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" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -285,8 +285,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/fr_CA.po b/l10n_fr_ecotaxe/i18n/fr_CA.po index 967f0d497..74a4b6e2e 100644 --- a/l10n_fr_ecotaxe/i18n/fr_CA.po +++ b/l10n_fr_ecotaxe/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Adriana Ierfino , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/fr_CH.po b/l10n_fr_ecotaxe/i18n/fr_CH.po index 8af07f1c2..bd7494bf0 100644 --- a/l10n_fr_ecotaxe/i18n/fr_CH.po +++ b/l10n_fr_ecotaxe/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # leemannd , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/fr_FR.po b/l10n_fr_ecotaxe/i18n/fr_FR.po index 860a17777..3bcabc665 100644 --- a/l10n_fr_ecotaxe/i18n/fr_FR.po +++ b/l10n_fr_ecotaxe/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Mohamed HABOU , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/gl.po b/l10n_fr_ecotaxe/i18n/gl.po index 73949a1a6..8314794ee 100644 --- a/l10n_fr_ecotaxe/i18n/gl.po +++ b/l10n_fr_ecotaxe/i18n/gl.po @@ -1,7 +1,7 @@ # 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 @@ -14,10 +14,10 @@ msgstr "" "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" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -280,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/gl_ES.po b/l10n_fr_ecotaxe/i18n/gl_ES.po index c1a651e12..6f88ef747 100644 --- a/l10n_fr_ecotaxe/i18n/gl_ES.po +++ b/l10n_fr_ecotaxe/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/he.po b/l10n_fr_ecotaxe/i18n/he.po index 31ccf01b7..830b1d12a 100644 --- a/l10n_fr_ecotaxe/i18n/he.po +++ b/l10n_fr_ecotaxe/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/hr.po b/l10n_fr_ecotaxe/i18n/hr.po index ad5a323dc..5d0fdc6dc 100644 --- a/l10n_fr_ecotaxe/i18n/hr.po +++ b/l10n_fr_ecotaxe/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Ana-Maria Olujić , 2017 @@ -11,13 +11,15 @@ msgstr "" "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" +"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" -"Language: hr\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" +"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 @@ -279,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/hr_HR.po b/l10n_fr_ecotaxe/i18n/hr_HR.po index be0013185..4bf9b232d 100644 --- a/l10n_fr_ecotaxe/i18n/hr_HR.po +++ b/l10n_fr_ecotaxe/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Bole , 2017 # OCA Transbot , 2017 @@ -12,12 +12,14 @@ msgstr "" "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-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" -"Language: hr_HR\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" +"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 @@ -279,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/hu.po b/l10n_fr_ecotaxe/i18n/hu.po index 99a24a932..39df143fb 100644 --- a/l10n_fr_ecotaxe/i18n/hu.po +++ b/l10n_fr_ecotaxe/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/id.po b/l10n_fr_ecotaxe/i18n/id.po index 2894cd5aa..9f03d628d 100644 --- a/l10n_fr_ecotaxe/i18n/id.po +++ b/l10n_fr_ecotaxe/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Wahyu Setiawan , 2017 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/it.po b/l10n_fr_ecotaxe/i18n/it.po index 36696c774..21d786ddc 100644 --- a/l10n_fr_ecotaxe/i18n/it.po +++ b/l10n_fr_ecotaxe/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-11-17 14:35+0000\n" "Last-Translator: Paolo Valier , 2017\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" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ja.po b/l10n_fr_ecotaxe/i18n/ja.po index 8148f565e..1df54483e 100644 --- a/l10n_fr_ecotaxe/i18n/ja.po +++ b/l10n_fr_ecotaxe/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ko.po b/l10n_fr_ecotaxe/i18n/ko.po index cba98cf3d..8ac461062 100644 --- a/l10n_fr_ecotaxe/i18n/ko.po +++ b/l10n_fr_ecotaxe/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" 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..1e7475509 --- /dev/null +++ b/l10n_fr_ecotaxe/i18n/l10n_fr_ecotaxe.pot @@ -0,0 +1,318 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_fr_ecotaxe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.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.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/lt.po b/l10n_fr_ecotaxe/i18n/lt.po index c6020d970..c140cabda 100644 --- a/l10n_fr_ecotaxe/i18n/lt.po +++ b/l10n_fr_ecotaxe/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: lt\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" +"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 @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/lt_LT.po b/l10n_fr_ecotaxe/i18n/lt_LT.po index 15ae8e54c..20958ec13 100644 --- a/l10n_fr_ecotaxe/i18n/lt_LT.po +++ b/l10n_fr_ecotaxe/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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-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" -"Language: lt_LT\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" +"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 @@ -278,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/lv.po b/l10n_fr_ecotaxe/i18n/lv.po index 2f7f79f57..357711231 100644 --- a/l10n_fr_ecotaxe/i18n/lv.po +++ b/l10n_fr_ecotaxe/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\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 @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/mk.po b/l10n_fr_ecotaxe/i18n/mk.po index f5afe9efc..08f5ac102 100644 --- a/l10n_fr_ecotaxe/i18n/mk.po +++ b/l10n_fr_ecotaxe/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/mn.po b/l10n_fr_ecotaxe/i18n/mn.po index 256c5d65d..e072ce95a 100644 --- a/l10n_fr_ecotaxe/i18n/mn.po +++ b/l10n_fr_ecotaxe/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/nb.po b/l10n_fr_ecotaxe/i18n/nb.po index 2e0194e9e..3d8fb687f 100644 --- a/l10n_fr_ecotaxe/i18n/nb.po +++ b/l10n_fr_ecotaxe/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/nb_NO.po b/l10n_fr_ecotaxe/i18n/nb_NO.po index 77bceed10..d1bbc8f77 100644 --- a/l10n_fr_ecotaxe/i18n/nb_NO.po +++ b/l10n_fr_ecotaxe/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Imre Kristoffer Eilertsen , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/nl.po b/l10n_fr_ecotaxe/i18n/nl.po index fdf2f802b..9fc495a21 100644 --- a/l10n_fr_ecotaxe/i18n/nl.po +++ b/l10n_fr_ecotaxe/i18n/nl.po @@ -1,7 +1,7 @@ # 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 @@ -14,10 +14,10 @@ msgstr "" "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" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -280,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/nl_BE.po b/l10n_fr_ecotaxe/i18n/nl_BE.po index 90b1086a6..4253dfac0 100644 --- a/l10n_fr_ecotaxe/i18n/nl_BE.po +++ b/l10n_fr_ecotaxe/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Sarah Druyts , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/nl_NL.po b/l10n_fr_ecotaxe/i18n/nl_NL.po index be95029d9..80233de76 100644 --- a/l10n_fr_ecotaxe/i18n/nl_NL.po +++ b/l10n_fr_ecotaxe/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/pl.po b/l10n_fr_ecotaxe/i18n/pl.po index 51545ee6f..8caa19aa8 100644 --- a/l10n_fr_ecotaxe/i18n/pl.po +++ b/l10n_fr_ecotaxe/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "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" -"Language: pl\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" +"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 @@ -278,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/pt.po b/l10n_fr_ecotaxe/i18n/pt.po index 76624c9f0..55b39c635 100644 --- a/l10n_fr_ecotaxe/i18n/pt.po +++ b/l10n_fr_ecotaxe/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Daniel Reis , 2017 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/pt_BR.po b/l10n_fr_ecotaxe/i18n/pt_BR.po index e4b40e45e..61ffa8e1d 100644 --- a/l10n_fr_ecotaxe/i18n/pt_BR.po +++ b/l10n_fr_ecotaxe/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # falexandresilva , 2017 @@ -15,11 +15,12 @@ msgstr "" "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-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" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -282,8 +283,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/pt_PT.po b/l10n_fr_ecotaxe/i18n/pt_PT.po index 25ef6b0b4..a70c89393 100644 --- a/l10n_fr_ecotaxe/i18n/pt_PT.po +++ b/l10n_fr_ecotaxe/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -11,12 +11,14 @@ msgstr "" "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" +"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" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -279,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ro.po b/l10n_fr_ecotaxe/i18n/ro.po index b480d4b19..faa2e1ec4 100644 --- a/l10n_fr_ecotaxe/i18n/ro.po +++ b/l10n_fr_ecotaxe/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # Dorin Hongu , 2017 # OCA Transbot , 2017 @@ -13,11 +13,12 @@ msgstr "" "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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\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 @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/ru.po b/l10n_fr_ecotaxe/i18n/ru.po index 24766db03..4ef2fe295 100644 --- a/l10n_fr_ecotaxe/i18n/ru.po +++ b/l10n_fr_ecotaxe/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Victor Safronovich , 2017 @@ -13,11 +13,13 @@ msgstr "" "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" -"Language: ru\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" +"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 @@ -279,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/sk.po b/l10n_fr_ecotaxe/i18n/sk.po index ef9877d67..bc283dd96 100644 --- a/l10n_fr_ecotaxe/i18n/sk.po +++ b/l10n_fr_ecotaxe/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Jan Prokop , 2017 @@ -13,10 +13,10 @@ msgstr "" "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" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: l10n_fr_ecotaxe @@ -279,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/sk_SK.po b/l10n_fr_ecotaxe/i18n/sk_SK.po index f76c46918..1f896cba9 100644 --- a/l10n_fr_ecotaxe/i18n/sk_SK.po +++ b/l10n_fr_ecotaxe/i18n/sk_SK.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/sl.po b/l10n_fr_ecotaxe/i18n/sl.po index a2edb4018..37c3bcb66 100644 --- a/l10n_fr_ecotaxe/i18n/sl.po +++ b/l10n_fr_ecotaxe/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Matjaž Mozetič , 2017 @@ -13,11 +13,12 @@ msgstr "" "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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\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 @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/sr.po b/l10n_fr_ecotaxe/i18n/sr.po index c63eb1680..5ed473d94 100644 --- a/l10n_fr_ecotaxe/i18n/sr.po +++ b/l10n_fr_ecotaxe/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: sr\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" +"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 @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/sr@latin.po b/l10n_fr_ecotaxe/i18n/sr@latin.po index 9df4a2237..46c71791e 100644 --- a/l10n_fr_ecotaxe/i18n/sr@latin.po +++ b/l10n_fr_ecotaxe/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "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-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" -"Language: sr@latin\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" +"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 @@ -278,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/sv.po b/l10n_fr_ecotaxe/i18n/sv.po index 38d79a5d2..7c46357a9 100644 --- a/l10n_fr_ecotaxe/i18n/sv.po +++ b/l10n_fr_ecotaxe/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/th.po b/l10n_fr_ecotaxe/i18n/th.po index a4cbf7510..dc4b59347 100644 --- a/l10n_fr_ecotaxe/i18n/th.po +++ b/l10n_fr_ecotaxe/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/tr.po b/l10n_fr_ecotaxe/i18n/tr.po index f6129a7a2..faac6bc40 100644 --- a/l10n_fr_ecotaxe/i18n/tr.po +++ b/l10n_fr_ecotaxe/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Ozge Altinisik , 2017 @@ -15,10 +15,10 @@ msgstr "" "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" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: l10n_fr_ecotaxe @@ -281,8 +281,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/tr_TR.po b/l10n_fr_ecotaxe/i18n/tr_TR.po index 4b983bab9..b0b188be0 100644 --- a/l10n_fr_ecotaxe/i18n/tr_TR.po +++ b/l10n_fr_ecotaxe/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # Ozge Altinisik , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/uk.po b/l10n_fr_ecotaxe/i18n/uk.po index dafd2fc3f..ae370b3f6 100644 --- a/l10n_fr_ecotaxe/i18n/uk.po +++ b/l10n_fr_ecotaxe/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "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" -"Language: uk\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" +"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 @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/vi.po b/l10n_fr_ecotaxe/i18n/vi.po index 28cdcdafc..625c1e7b1 100644 --- a/l10n_fr_ecotaxe/i18n/vi.po +++ b/l10n_fr_ecotaxe/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "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" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +278,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/vi_VN.po b/l10n_fr_ecotaxe/i18n/vi_VN.po index db0be6b6b..8b0a295c3 100644 --- a/l10n_fr_ecotaxe/i18n/vi_VN.po +++ b/l10n_fr_ecotaxe/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/zh_CN.po b/l10n_fr_ecotaxe/i18n/zh_CN.po index 119fd43e1..bfb7c891a 100644 --- a/l10n_fr_ecotaxe/i18n/zh_CN.po +++ b/l10n_fr_ecotaxe/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 # ITGeeker , 2017 @@ -12,11 +12,12 @@ msgstr "" "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-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" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -279,8 +280,8 @@ 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 " +"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 "" diff --git a/l10n_fr_ecotaxe/i18n/zh_TW.po b/l10n_fr_ecotaxe/i18n/zh_TW.po index 05af75192..fe95f8c7a 100644 --- a/l10n_fr_ecotaxe/i18n/zh_TW.po +++ b/l10n_fr_ecotaxe/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * l10n_fr_ecotaxe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "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-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" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: l10n_fr_ecotaxe @@ -278,8 +279,8 @@ 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 " +"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 "" From 186022bf06363e949af80e15ffd447b9f3820c23 Mon Sep 17 00:00:00 2001 From: Stefan Rijnhart Date: Thu, 5 Jul 2018 23:59:05 +0200 Subject: [PATCH 23/54] [FIX] Pylint --- l10n_fr_ecotaxe/README.rst | 8 ++++---- l10n_fr_ecotaxe/__openerp__.py | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/l10n_fr_ecotaxe/README.rst b/l10n_fr_ecotaxe/README.rst index 51ce80bb7..6ff863bbe 100644 --- a/l10n_fr_ecotaxe/README.rst +++ b/l10n_fr_ecotaxe/README.rst @@ -3,7 +3,7 @@ This module manages the Ecotaxe (Recycling Tax) for France. -========================================================== +=========================================================== 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, @@ -25,10 +25,10 @@ You should define two ecotaxes : Setting -============= +======= Add sale and purchase ecotexe. The Ecotaxe amount must be included in base of VAT. The ecotaxe should have a sequence less then VAT. Define the right account on Ecotaxe. -Add ecotaxe classification via the menu *Accounting > configuration > Taxes > Ecotaxe Classification. +Add ecotaxe classification via the menu *Accounting > configuration > Taxes > Ecotaxe Classification*. Assign ecotaxe to a product. @@ -36,7 +36,7 @@ Assign ecotaxe to a product. Bug Tracker =========== -Bugs are tracked on `GitHub Issues +Bugs are tracked on `GitHub Issues `_ Credits diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__openerp__.py index b7a299ec9..f5395337e 100644 --- a/l10n_fr_ecotaxe/__openerp__.py +++ b/l10n_fr_ecotaxe/__openerp__.py @@ -9,6 +9,7 @@ 'author': "Akretion,Odoo Community Association (OCA)", 'website': 'http://www.akretion.com', 'category': 'Localization/Account Taxes', + 'license': 'AGPL-3', 'depends': [ 'account_accountant', 'sale', From 2c4b25118fcabf70a09f2110ca92efc852c2a656 Mon Sep 17 00:00:00 2001 From: Mourad Date: Tue, 21 Jul 2020 15:46:33 +0200 Subject: [PATCH 24/54] [MIG] module l10n_fr_ecotaxe to 12.0 --- .../{__openerp__.py => __manifest__.py} | 13 +- l10n_fr_ecotaxe/data/account_data.xml | 6 +- l10n_fr_ecotaxe/models/__init__.py | 6 +- l10n_fr_ecotaxe/models/account.py | 137 ------------------ .../models/account_ecotaxe_classification.py | 96 ++++++++++++ l10n_fr_ecotaxe/models/account_invoice.py | 50 +++---- l10n_fr_ecotaxe/models/product.py | 35 ++--- l10n_fr_ecotaxe/models/purchase.py | 2 +- l10n_fr_ecotaxe/models/sale.py | 2 +- l10n_fr_ecotaxe/security/ir_rule.xml | 8 +- ...> account_ecotaxe_classification_view.xml} | 106 ++++++++++---- .../views/account_invoice_view.xml | 58 ++++++++ l10n_fr_ecotaxe/views/product_view.xml | 8 +- l10n_fr_ecotaxe/views/purchase_view.xml | 8 +- l10n_fr_ecotaxe/views/sale_view.xml | 8 +- 15 files changed, 298 insertions(+), 245 deletions(-) rename l10n_fr_ecotaxe/{__openerp__.py => __manifest__.py} (76%) delete mode 100644 l10n_fr_ecotaxe/models/account.py create mode 100644 l10n_fr_ecotaxe/models/account_ecotaxe_classification.py rename l10n_fr_ecotaxe/views/{account_view.xml => account_ecotaxe_classification_view.xml} (70%) create mode 100644 l10n_fr_ecotaxe/views/account_invoice_view.xml diff --git a/l10n_fr_ecotaxe/__openerp__.py b/l10n_fr_ecotaxe/__manifest__.py similarity index 76% rename from l10n_fr_ecotaxe/__openerp__.py rename to l10n_fr_ecotaxe/__manifest__.py index f5395337e..c9b5f97b2 100644 --- a/l10n_fr_ecotaxe/__openerp__.py +++ b/l10n_fr_ecotaxe/__manifest__.py @@ -5,26 +5,23 @@ { 'name': 'France Custom Ecotaxe', 'summary': 'Use Ecotaxe in French localisation contexte', - 'version': '8.0.0.1.0', + 'version': '12.0.0.1.0', 'author': "Akretion,Odoo Community Association (OCA)", 'website': 'http://www.akretion.com', 'category': 'Localization/Account Taxes', 'license': 'AGPL-3', 'depends': [ - 'account_accountant', - 'sale', - 'purchase' + 'account', ], 'data': [ 'data/account_data.xml', 'security/ir_rule.xml', 'security/ir_model_access.yml', 'views/product_view.xml', - 'views/sale_view.xml', - 'views/purchase_view.xml', - 'views/account_view.xml', + # 'views/sale_view.xml', + # 'views/purchase_view.xml', + 'views/account_ecotaxe_classification_view.xml', ], - 'application': False, 'installable': True, } diff --git a/l10n_fr_ecotaxe/data/account_data.xml b/l10n_fr_ecotaxe/data/account_data.xml index 804ffb433..418a0537e 100644 --- a/l10n_fr_ecotaxe/data/account_data.xml +++ b/l10n_fr_ecotaxe/data/account_data.xml @@ -1,6 +1,6 @@ - + @@ -8,5 +8,5 @@ 3 - - + + diff --git a/l10n_fr_ecotaxe/models/__init__.py b/l10n_fr_ecotaxe/models/__init__.py index 89b48b404..a93932e46 100755 --- a/l10n_fr_ecotaxe/models/__init__.py +++ b/l10n_fr_ecotaxe/models/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from . import product -from . import account -from . import sale +from . import account_ecotaxe_classification +# from . import sale from . import account_invoice -from . import purchase +# from . import purchase diff --git a/l10n_fr_ecotaxe/models/account.py b/l10n_fr_ecotaxe/models/account.py deleted file mode 100644 index 004157fae..000000000 --- a/l10n_fr_ecotaxe/models/account.py +++ /dev/null @@ -1,137 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2014-2016 Akretion (http://www.akretion.com) -# @author Mourad EL HADJ MIMOUNE -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -from openerp import api, fields, models -import openerp.addons.decimal_precision as dp - - -class AccountTax(models.Model): - _inherit = 'account.tax' - - is_ecotaxe = fields.Boolean('Ecotaxe', - help="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)") - - @api.onchange('is_ecotaxe') - def onchange_is_ecotaxe(self): - if self.is_ecotaxe: - self.type = 'code' - self.include_base_amount = True - self.python_compute = """ -# price_unit -# product: product.product object or None -# partner: res.partner object or None -result = product.computed_ecotaxe or 0.0 - """ - self.python_compute_inv = self.python_compute - - -class AccountEcotaxeClassification(models.Model): - _name = 'account.ecotaxe.classification' - - # Default Section - def _default_company_id(self): - return self.env['res.users']._get_company() - - name = fields.Char('Name', required=True,) - code = fields.Char('Code') - ecotaxe_type = fields.Selection( - [ - ('fixed', u'Fixed'), - ('weight_based', 'Weight based'), - ], - string='Ecotaxe Type', 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( - string='Ecotaxe Coef', - digits=dp.get_precision('Ecotaxe')) - fixed_ecotaxe = fields.Float( - string='Fixed Ecotaxe', - help="fixed ecotaxe amount.\n") - sale_ecotaxe_id = fields.Many2one( - 'account.tax', - string="Sale EcoTaxe", required=True, - domain=[ - ('is_ecotaxe', '=', True), - ('parent_id', '=', False), - ('type_tax_use', 'in', ['sale', 'all'])]) - purchase_ecotaxe_id = fields.Many2one( - 'account.tax', - string="Purchase EcoTaxe", required=True, - domain=[ - ('is_ecotaxe', '=', True), - ('parent_id', '=', False), - ('type_tax_use', 'in', ['purchase', 'all'])]) - active = fields.Boolean(default=True,) - - company_id = fields.Many2one( - comodel_name='res.company', default=_default_company_id, - string='Company', 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.") - - @api.onchange('ecotaxe_type') - def onchange_ecotaxe_type(self): - if self.ecotaxe_type == 'weight_based': - self.fixed_ecotaxe = 0 - if self.ecotaxe_type == 'fixed': - self.ecotaxe_coef = 0 - - -class AccountInvoiceTax(models.Model): - _inherit = "account.invoice.tax" - - @api.depends('tax_code_id', 'base_code_id', 'account_id', 'invoice_id') - def _compute_generic_base(self): - for tax_line in self: - generic_base = 0.0 - for line in tax_line.invoice_id.invoice_line: - ecotaxe_ids = [tax.id for tax in line.invoice_line_tax_id - if tax.is_ecotaxe] - for ecotaxe_id in self.env['account.tax'].browse(ecotaxe_ids): - tax_acc_id = ecotaxe_id.account_paid_id - if tax_line.invoice_id.type in \ - ('out_invoice', 'in_invoice'): - tax_acc_id = ecotaxe_id.account_collected_id - if ecotaxe_id.tax_code_id == tax_line.tax_code_id and \ - ecotaxe_id.base_code_id == tax_line.base_code_id and \ - (not tax_acc_id or tax_acc_id == - tax_line.account_id): - if line.product_id: - for ecotaxe_classif_id in \ - line.product_id.ecotaxe_classification_ids: - related_tax_id = \ - ecotaxe_classif_id.purchase_ecotaxe_id - if tax_line.invoice_id.type in ( - 'out_invoice', 'in_invoice'): - related_tax_id = \ - ecotaxe_classif_id.sale_ecotaxe_id - if ecotaxe_classif_id.ecotaxe_type == 'fixed'\ - and ecotaxe_id == related_tax_id: - generic_base += line.quantity - elif ecotaxe_classif_id.ecotaxe_type == \ - 'weight_based' and ecotaxe_id == \ - related_tax_id: - generic_base += ( - line.product_id.weight_net * - line.quantity) - - tax_line.generic_base = generic_base or tax_line.base - - generic_base = fields.Float( - string='Generic base', - compute='_compute_generic_base', - help="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", store=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..bf0137147 --- /dev/null +++ b/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py @@ -0,0 +1,96 @@ +# -*- coding: utf-8 -*- +# © 2014-2016 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 +import openerp.addons.decimal_precision as dp + + +class AccountEcotaxeClassification(models.Model): + _name = 'account.ecotaxe.classification' + + # Default Section + def _default_company_id(self): + return self.env['res.users']._get_company() + + name = fields.Char('Name', required=True,) + code = fields.Char('Code') + ecotaxe_type = fields.Selection( + [ + ('fixed', 'Fixed'), + ('weight_based', 'Weight based'), + ], + string='Ecotaxe Type', 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( + string='Ecotaxe Coef', + digits=dp.get_precision('Ecotaxe')) + defaul_fixed_ecotaxe = fields.Float( + help="Default fixed ecotaxe amount.\n", + oldname="fixed_ecotaxe" + ) + + account_ecotaxe_categ_id = fields.Many2one( + comodel_name='account.ecotaxe.category', + string='Ecotaxe category', + ) + active = fields.Boolean(default=True,) + company_id = fields.Many2one( + comodel_name='res.company', default=_default_company_id, + string='Company', 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.") + ecotaxe_product_status = fields.Selection( + [ + ('M', 'Menager'), + ('P', 'Professionnel'), + ], + string='Product Status', required=True, + ) + ecotaxe_supplier_status = fields.Selection( + [ + ('FAB', 'Fabricant'), + ('REV', 'Revendeur sous sa marque'), + ('INT', 'Introducteur'), + ('IMP', 'Importateur'), + ('DIS', 'Vendeur à distance'), + ], + string='Supplier Status', required=True, + help= + "FAB ==> Fabricant : est établi en France et fabrique des EEE sous\n" + " 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 communication à distance" + ) + ecotaxe_deb_code = fields.Char(string='Ecotaxe DEB Code') + ecotaxe_scale_code = fields.Char(string='Ecotaxe Scale Code') + + @api.onchange('ecotaxe_type') + def onchange_ecotaxe_type(self): + if self.ecotaxe_type == 'weight_based': + self.defaul_fixed_ecotaxe = 0 + if self.ecotaxe_type == 'fixed': + self.ecotaxe_coef = 0 + + +class AccountEcotaxeClassificationCategory(models.Model): + _name = 'account.ecotaxe.category' + + name = fields.Char(required=True,) + code = fields.Char(required=True,) + description = fields.Char() + diff --git a/l10n_fr_ecotaxe/models/account_invoice.py b/l10n_fr_ecotaxe/models/account_invoice.py index 22ceb9109..7b9784809 100644 --- a/l10n_fr_ecotaxe/models/account_invoice.py +++ b/l10n_fr_ecotaxe/models/account_invoice.py @@ -3,39 +3,40 @@ # @author Mourad EL HADJ MIMOUNE # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models +from odoo import api, fields, models class AcountInvoiceLine(models.Model): _inherit = 'account.invoice.line' - amount_ecotaxe = fields.Float(string='Ecotaxe', store=True, - compute='_compute_ecotaxe') + subtotal_ecotaxe = fields.Float( + store=True, + compute='_compute_ecotaxe', + oldname="amount_ecotaxe" + ) + unit_ecotaxe_amount = fields.Float( + string='ecotaxe', store=True, + compute='_compute_ecotaxe', + oldname="amount_ecotaxe" + ) + ecotaxe_classification_id = fields.Many2one( + 'account.ecotaxe.classification', + string='Ecotaxe Classification', + ) @api.multi - @api.depends('invoice_line_tax_id', 'product_id', 'quantity') + @api.depends('product_id', 'quantity') def _compute_ecotaxe(self): for line in self: - ecotaxe_id = [tax.id for tax in line.invoice_line_tax_id - if tax.is_ecotaxe] - ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) - price = line.price_unit * (1 - (line.discount or 0.0) / 100.0) - val = 0.0 - if ecotaxe_id: - taxes = ecotaxe_id.compute_all( - price, line.quantity, - product=line.product_id, - partner=line.invoice_id.partner_id)['taxes'] + line.unit_ecotaxe_amount = line.product_id.ecotaxe_amount - for t in taxes: - val += t.get('amount', 0.0) - line.amount_ecotaxe = val + if line.invoice_id: + cur = line.invoice_id.currency_id + line.unit_ecotaxe_amount= cur.round( + line.unit_ecotaxe_amount) - if line.invoice_id: - cur = line.invoice_id.currency_id - line.amount_ecotaxe = cur.round( - line.amount_ecotaxe) + line.subtotal_ecotaxe = line.unit_ecotaxe_amount * line.quantity class AccountInvoice(models.Model): @@ -51,13 +52,12 @@ class AccountInvoice(models.Model): @api.multi @api.depends('amount_untaxed', 'amount_tax', - 'invoice_line.invoice_line_tax_id', - 'invoice_line.product_id', 'invoice_line.quantity') + 'invoice_line_ids.product_id', 'invoice_line_ids.quantity') def _compute_ecotaxe(self): for invoice in self: val_ecotaxe = 0.0 - for line in invoice.invoice_line: - val_ecotaxe += line.amount_ecotaxe + for line in invoice.invoice_line_ids: + val_ecotaxe += line.subtotal_ecotaxe invoice.amount_ecotaxe = val_ecotaxe invoice.amount_untaxed_with_ecotaxe = \ invoice.amount_untaxed + invoice.amount_ecotaxe diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index aff471bd9..b94256a52 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -3,7 +3,7 @@ # @author Mourad EL HADJ MIMOUNE # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models +from odoo import api, fields, models class ProductTemplate(models.Model): @@ -13,6 +13,16 @@ class ProductTemplate(models.Model): 'account.ecotaxe.classification', 'product_template_rel_ecotaxe_classif', string='Ecotaxe Classification',) + ecotaxe_amount = fields.Float( + compute='_compute_ecotaxe', + help="Ecotaxe Amount" + "computed form Classification\n") + + manual_fixed_ecotaxe = fields.Float( + help= + "Manual Fixed ecotaxe.\n" + "Allow to subtite default Ecotaxe Classification\n") + @api.onchange('ecotaxe_classification_ids') def onchange_ecotaxe_classification_ids(self): @@ -28,34 +38,21 @@ def onchange_ecotaxe_classification_ids(self): self.supplier_taxes_id = [(6, 0, purchase_taxes)] -class ProductProduct(models.Model): - _inherit = 'product.product' - - fixed_ecotaxe = fields.Float('Fixed Ecotaxe', compute='_compute_ecotaxe', - help="Fixed ecotaxe of the " - "Ecotaxe Classification\n") - computed_ecotaxe = fields.Float('Coputed Ecotaxe', - compute='_compute_ecotaxe', - help="Ecotaxe value :\n" - "product weight * ecotaxe coef of " - "Ecotaxe Classification\n") - @api.depends('ecotaxe_classification_ids', 'ecotaxe_classification_ids.ecotaxe_type', 'ecotaxe_classification_ids.ecotaxe_coef', - 'ecotaxe_classification_ids.fixed_ecotaxe', 'weight') + 'weight', 'manual_fixed_ecotaxe') def _compute_ecotaxe(self): for prod in self: - prod.computed_ecotaxe = 0.0 - prod.fixed_ecotaxe = 0.0 + prod.ecotaxe_amount = 0.0 for ecotaxe_classif_id in prod.ecotaxe_classification_ids: if ecotaxe_classif_id.ecotaxe_type ==\ 'weight_based': weight = prod.weight_net or 0.0 - prod.computed_ecotaxe +=\ + prod.ecotaxe_amount +=\ ecotaxe_classif_id.ecotaxe_coef * weight else: - prod.fixed_ecotaxe += ecotaxe_classif_id.fixed_ecotaxe + prod.ecotaxe_amount += ecotaxe_classif_id.defaul_fixed_ecotaxe # Some product has a taxe different from template @api.onchange('ecotaxe_classification_ids') @@ -76,7 +73,7 @@ class ProductCategory(models.Model): _inherit = 'product.category' ecotaxe_type = fields.Selection( [ - ('fixed', u'Fixed'), + ('fixed', 'Fixed'), ('weight_based', 'Weight based'), ], string='Ecotaxe Type', diff --git a/l10n_fr_ecotaxe/models/purchase.py b/l10n_fr_ecotaxe/models/purchase.py index ee19f85f3..b72551797 100755 --- a/l10n_fr_ecotaxe/models/purchase.py +++ b/l10n_fr_ecotaxe/models/purchase.py @@ -3,7 +3,7 @@ # @author Mourad EL HADJ MIMOUNE # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models +from odoo import api, fields, models class PurchaseOrderLine(models.Model): diff --git a/l10n_fr_ecotaxe/models/sale.py b/l10n_fr_ecotaxe/models/sale.py index 9ea92fb37..541f41262 100755 --- a/l10n_fr_ecotaxe/models/sale.py +++ b/l10n_fr_ecotaxe/models/sale.py @@ -3,7 +3,7 @@ # @author Mourad EL HADJ MIMOUNE # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models +from odoo import api, fields, models class SaleOrderLine(models.Model): diff --git a/l10n_fr_ecotaxe/security/ir_rule.xml b/l10n_fr_ecotaxe/security/ir_rule.xml index 6a5b5a8a6..045d36aea 100644 --- a/l10n_fr_ecotaxe/security/ir_rule.xml +++ b/l10n_fr_ecotaxe/security/ir_rule.xml @@ -6,13 +6,13 @@ - - + + Ecotaxe Classification ['|', ('company_id', '=', user.company_id.id), ('company_id', '=', False)] - - + + diff --git a/l10n_fr_ecotaxe/views/account_view.xml b/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml similarity index 70% rename from l10n_fr_ecotaxe/views/account_view.xml rename to l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml index a0b56392a..7f43dd0df 100644 --- a/l10n_fr_ecotaxe/views/account_view.xml +++ b/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml @@ -5,27 +5,10 @@ The licence is in the file __openerp__.py --> - - - - - - l10n_fr_ecotaxe.account.tax.form - account.tax - - 300 - - - - - - - - + + - - account.ecotaxe.classification @@ -35,11 +18,10 @@ - - - - + + @@ -57,9 +39,13 @@ - + - + + + + + @@ -70,11 +56,6 @@ - - - - - @@ -110,7 +91,68 @@ action="action_ecotaxe_classification" sequence="15"/> + + + + account.ecotaxe.category + + + + + + + + + + account.ecotaxe.category + +
+ +
+
+
+

+ +

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

+ Click to start a new Ecotaxe category. +

+
+
+ + + + + + l10n_fr_ecotaxe.customer.invoice.form @@ -159,5 +201,5 @@
- - + + diff --git a/l10n_fr_ecotaxe/views/account_invoice_view.xml b/l10n_fr_ecotaxe/views/account_invoice_view.xml new file mode 100644 index 000000000..dd39ede96 --- /dev/null +++ b/l10n_fr_ecotaxe/views/account_invoice_view.xml @@ -0,0 +1,58 @@ + + + + + + + + l10n_fr_ecotaxe.customer.invoice.form + account.invoice + + + + + + + True + + + True + + + + + + + + + + + + + + l10n_fr_ecotaxe.supplier.invoice.form + account.invoice + + + + + + + True + + + True + + + + + + + + + + + diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index ad88f4427..58a0a7150 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -6,8 +6,8 @@ The licence is in the file __openerp__.py --> - - + + @@ -37,5 +37,5 @@
- - + + diff --git a/l10n_fr_ecotaxe/views/purchase_view.xml b/l10n_fr_ecotaxe/views/purchase_view.xml index 74cdbedce..29e30b50b 100644 --- a/l10n_fr_ecotaxe/views/purchase_view.xml +++ b/l10n_fr_ecotaxe/views/purchase_view.xml @@ -5,8 +5,8 @@ The licence is in the file __openerp__.py --> - - + + l10n_fr_ecotaxe.purchase.line.form @@ -31,5 +31,5 @@
- - + + diff --git a/l10n_fr_ecotaxe/views/sale_view.xml b/l10n_fr_ecotaxe/views/sale_view.xml index 85679a163..b867e83a1 100644 --- a/l10n_fr_ecotaxe/views/sale_view.xml +++ b/l10n_fr_ecotaxe/views/sale_view.xml @@ -5,8 +5,8 @@ The licence is in the file __openerp__.py --> - - + + l10n_fr_ecotaxe.sale.line.form @@ -33,5 +33,5 @@
- - + + From a9fab0ad4542cd38ec2f1bfdc1c049d2b648fa72 Mon Sep 17 00:00:00 2001 From: Mourad Date: Fri, 24 Jul 2020 11:07:15 +0200 Subject: [PATCH 25/54] [FIX] split l10n_fr_ecotaxe in 3 modules (add l10n_fr_ecotaxe_sale, l10n_fr_ecotaxe_purchase) --- l10n_fr_ecotaxe/__init__.py | 2 - l10n_fr_ecotaxe/__manifest__.py | 39 +- l10n_fr_ecotaxe/data/account_data.xml | 17 +- l10n_fr_ecotaxe/models/__init__.py | 4 +- .../models/account_ecotaxe_classification.py | 88 +++-- l10n_fr_ecotaxe/models/account_invoice.py | 41 +- l10n_fr_ecotaxe/models/product.py | 109 ++---- l10n_fr_ecotaxe/models/purchase.py | 61 --- l10n_fr_ecotaxe/models/sale.py | 62 --- l10n_fr_ecotaxe/security/ir.model.access.csv | 3 + l10n_fr_ecotaxe/security/ir_model_access.yml | 25 -- l10n_fr_ecotaxe/security/ir_rule.xml | 18 +- .../account_ecotaxe_classification_view.xml | 353 ++++++++---------- .../views/account_invoice_view.xml | 84 ++--- l10n_fr_ecotaxe/views/product_view.xml | 58 ++- l10n_fr_ecotaxe/views/purchase_view.xml | 35 -- l10n_fr_ecotaxe/views/sale_view.xml | 37 -- 17 files changed, 334 insertions(+), 702 deletions(-) mode change 100755 => 100644 l10n_fr_ecotaxe/models/__init__.py delete mode 100755 l10n_fr_ecotaxe/models/purchase.py delete mode 100755 l10n_fr_ecotaxe/models/sale.py create mode 100644 l10n_fr_ecotaxe/security/ir.model.access.csv delete mode 100644 l10n_fr_ecotaxe/security/ir_model_access.yml delete mode 100644 l10n_fr_ecotaxe/views/purchase_view.xml delete mode 100644 l10n_fr_ecotaxe/views/sale_view.xml diff --git a/l10n_fr_ecotaxe/__init__.py b/l10n_fr_ecotaxe/__init__.py index cde864bae..0650744f6 100644 --- a/l10n_fr_ecotaxe/__init__.py +++ b/l10n_fr_ecotaxe/__init__.py @@ -1,3 +1 @@ -# -*- coding: utf-8 -*- - from . import models diff --git a/l10n_fr_ecotaxe/__manifest__.py b/l10n_fr_ecotaxe/__manifest__.py index c9b5f97b2..97cd73579 100644 --- a/l10n_fr_ecotaxe/__manifest__.py +++ b/l10n_fr_ecotaxe/__manifest__.py @@ -1,27 +1,22 @@ -# -*- coding: utf-8 -*- -# © 2014-2016 Akretion (http://www.akretion.com) +# © 2014-2020 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': '12.0.0.1.0', - 'author': "Akretion,Odoo Community Association (OCA)", - 'website': 'http://www.akretion.com', - 'category': 'Localization/Account Taxes', - 'license': 'AGPL-3', - 'depends': [ - 'account', + "name": "France Custom Ecotaxe", + "summary": "Use Ecotaxe in French localisation contexte", + "version": "12.0.0.1.0", + "author": "Akretion,Odoo Community Association (OCA)", + "website": "http://www.akretion.com", + "category": "Localization/Account Taxes", + "license": "AGPL-3", + "depends": ["account"], + "data": [ + "data/account_data.xml", + "security/ir_rule.xml", + "security/ir.model.access.csv", + "views/product_view.xml", + "views/account_invoice_view.xml", + "views/account_ecotaxe_classification_view.xml", ], - 'data': [ - 'data/account_data.xml', - 'security/ir_rule.xml', - 'security/ir_model_access.yml', - 'views/product_view.xml', - # 'views/sale_view.xml', - # 'views/purchase_view.xml', - 'views/account_ecotaxe_classification_view.xml', - - ], - 'installable': True, + "installable": True, } diff --git a/l10n_fr_ecotaxe/data/account_data.xml b/l10n_fr_ecotaxe/data/account_data.xml index 418a0537e..1833c9077 100644 --- a/l10n_fr_ecotaxe/data/account_data.xml +++ b/l10n_fr_ecotaxe/data/account_data.xml @@ -1,12 +1,9 @@ - - + - - - - Ecotaxe - 3 - - - + + + Ecotaxe + 3 + + diff --git a/l10n_fr_ecotaxe/models/__init__.py b/l10n_fr_ecotaxe/models/__init__.py old mode 100755 new mode 100644 index a93932e46..cc2198d63 --- a/l10n_fr_ecotaxe/models/__init__.py +++ b/l10n_fr_ecotaxe/models/__init__.py @@ -1,7 +1,7 @@ -# -*- coding: utf-8 -*- - from . import product from . import account_ecotaxe_classification + # from . import sale from . import account_invoice + # from . import purchase diff --git a/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py b/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py index bf0137147..51c6f5b46 100644 --- a/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py +++ b/l10n_fr_ecotaxe/models/account_ecotaxe_classification.py @@ -1,69 +1,65 @@ -# -*- coding: utf-8 -*- # © 2014-2016 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 import openerp.addons.decimal_precision as dp +from odoo import api, fields, models class AccountEcotaxeClassification(models.Model): - _name = 'account.ecotaxe.classification' + _name = "account.ecotaxe.classification" # Default Section def _default_company_id(self): - return self.env['res.users']._get_company() + return self.env["res.users"]._get_company() - name = fields.Char('Name', required=True,) - code = fields.Char('Code') + name = fields.Char("Name", required=True,) + code = fields.Char("Code") ecotaxe_type = fields.Selection( - [ - ('fixed', 'Fixed'), - ('weight_based', 'Weight based'), - ], - string='Ecotaxe Type', required=True, + [("fixed", "Fixed"), ("weight_based", "Weight based")], + string="Ecotaxe Type", + required=True, help="If ecotaxe is weight based," "the ecotaxe coef must take into account\n" - "the weight unit of measure (kg by default)" + "the weight unit of measure (kg by default)", ) ecotaxe_coef = fields.Float( - string='Ecotaxe Coef', - digits=dp.get_precision('Ecotaxe')) - defaul_fixed_ecotaxe = fields.Float( - help="Default fixed ecotaxe amount.\n", - oldname="fixed_ecotaxe" + string="Ecotaxe Coef", digits=dp.get_precision("Ecotaxe") + ) + default_fixed_ecotaxe = fields.Float( + help="Default fixed ecotaxe amount.\n", oldname="fixed_ecotaxe" ) - + account_ecotaxe_categ_id = fields.Many2one( - comodel_name='account.ecotaxe.category', - string='Ecotaxe category', - ) + comodel_name="account.ecotaxe.category", string="Ecotaxe category", + ) active = fields.Boolean(default=True,) company_id = fields.Many2one( - comodel_name='res.company', default=_default_company_id, - string='Company', help="Specify a company" + comodel_name="res.company", + default=_default_company_id, + string="Company", + 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.") + " for all companies.", + ) ecotaxe_product_status = fields.Selection( - [ - ('M', 'Menager'), - ('P', 'Professionnel'), - ], - string='Product Status', required=True, + [("M", "Menager"), ("P", "Professionnel")], + string="Product Status", + required=True, ) ecotaxe_supplier_status = fields.Selection( [ - ('FAB', 'Fabricant'), - ('REV', 'Revendeur sous sa marque'), - ('INT', 'Introducteur'), - ('IMP', 'Importateur'), - ('DIS', 'Vendeur à distance'), + ("FAB", "Fabricant"), + ("REV", "Revendeur sous sa marque"), + ("INT", "Introducteur"), + ("IMP", "Importateur"), + ("DIS", "Vendeur à distance"), ], - string='Supplier Status', required=True, - help= - "FAB ==> Fabricant : est établi en France et fabrique des EEE sous\n" - " son propre nom ou sa propre marque, ou fait concevoir ou\n" + string="Supplier Status", + 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" @@ -74,23 +70,23 @@ def _default_company_id(self): "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 communication à distance" + "membre ou dans un pays tiers et vend en France des EEE par\n" + "communication à distance", ) - ecotaxe_deb_code = fields.Char(string='Ecotaxe DEB Code') - ecotaxe_scale_code = fields.Char(string='Ecotaxe Scale Code') + ecotaxe_deb_code = fields.Char(string="Ecotaxe DEB Code") + ecotaxe_scale_code = fields.Char(string="Ecotaxe Scale Code") - @api.onchange('ecotaxe_type') + @api.onchange("ecotaxe_type") def onchange_ecotaxe_type(self): - if self.ecotaxe_type == 'weight_based': + if self.ecotaxe_type == "weight_based": self.defaul_fixed_ecotaxe = 0 - if self.ecotaxe_type == 'fixed': + if self.ecotaxe_type == "fixed": self.ecotaxe_coef = 0 class AccountEcotaxeClassificationCategory(models.Model): - _name = 'account.ecotaxe.category' + _name = "account.ecotaxe.category" name = fields.Char(required=True,) code = fields.Char(required=True,) description = fields.Char() - diff --git a/l10n_fr_ecotaxe/models/account_invoice.py b/l10n_fr_ecotaxe/models/account_invoice.py index 7b9784809..df5df0415 100644 --- a/l10n_fr_ecotaxe/models/account_invoice.py +++ b/l10n_fr_ecotaxe/models/account_invoice.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2014-2016 Akretion (http://www.akretion.com) # @author Mourad EL HADJ MIMOUNE # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -8,58 +7,40 @@ class AcountInvoiceLine(models.Model): - _inherit = 'account.invoice.line' + _inherit = "account.invoice.line" subtotal_ecotaxe = fields.Float( - store=True, - compute='_compute_ecotaxe', - oldname="amount_ecotaxe" + store=True, compute="_compute_ecotaxe", oldname="amount_ecotaxe" ) unit_ecotaxe_amount = fields.Float( - string='ecotaxe', store=True, - compute='_compute_ecotaxe', - oldname="amount_ecotaxe" + string="ecotaxe Unit.", store=True, compute="_compute_ecotaxe", ) - ecotaxe_classification_id = fields.Many2one( - 'account.ecotaxe.classification', - string='Ecotaxe Classification', - ) @api.multi - @api.depends('product_id', 'quantity') + @api.depends("product_id", "quantity") def _compute_ecotaxe(self): for line in self: line.unit_ecotaxe_amount = line.product_id.ecotaxe_amount if line.invoice_id: cur = line.invoice_id.currency_id - line.unit_ecotaxe_amount= cur.round( - line.unit_ecotaxe_amount) + line.unit_ecotaxe_amount = cur.round(line.unit_ecotaxe_amount) - line.subtotal_ecotaxe = line.unit_ecotaxe_amount * line.quantity + line.subtotal_ecotaxe = line.unit_ecotaxe_amount * line.quantity class AccountInvoice(models.Model): - _inherit = 'account.invoice' + _inherit = "account.invoice" - amount_untaxed_with_ecotaxe = fields.Float('Untaxed Amount with Ecotaxe', - store=True, - compute='_compute_ecotaxe') - amount_ecotaxe = fields.Float(string='Included Ecotaxe', store=True, - compute='_compute_ecotaxe') - amount_tax_without_ecotaxe = fields.Float(string='Other Taxes', store=True, - compute='_compute_ecotaxe') + amount_ecotaxe = fields.Float( + string="Included Ecotaxe", store=True, compute="_compute_ecotaxe" + ) @api.multi - @api.depends('amount_untaxed', 'amount_tax', - 'invoice_line_ids.product_id', 'invoice_line_ids.quantity') + @api.depends("invoice_line_ids.subtotal_ecotaxe") def _compute_ecotaxe(self): for invoice in self: val_ecotaxe = 0.0 for line in invoice.invoice_line_ids: val_ecotaxe += line.subtotal_ecotaxe invoice.amount_ecotaxe = val_ecotaxe - invoice.amount_untaxed_with_ecotaxe = \ - invoice.amount_untaxed + invoice.amount_ecotaxe - invoice.amount_tax_without_ecotaxe = \ - invoice.amount_tax - invoice.amount_ecotaxe diff --git a/l10n_fr_ecotaxe/models/product.py b/l10n_fr_ecotaxe/models/product.py index b94256a52..92a294119 100644 --- a/l10n_fr_ecotaxe/models/product.py +++ b/l10n_fr_ecotaxe/models/product.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2014-2016 Akretion (http://www.akretion.com) # @author Mourad EL HADJ MIMOUNE # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). @@ -7,91 +6,39 @@ class ProductTemplate(models.Model): - _inherit = 'product.template' + _inherit = "product.template" - ecotaxe_classification_ids = fields.Many2many( - 'account.ecotaxe.classification', - 'product_template_rel_ecotaxe_classif', - string='Ecotaxe Classification',) + ecotaxe_classification_id = fields.Many2one( + "account.ecotaxe.classification", + string="Ecotaxe Classification", + oldname="ecotaxe_classification_ids", + ) ecotaxe_amount = fields.Float( - compute='_compute_ecotaxe', - help="Ecotaxe Amount" - "computed form Classification\n") + compute="_compute_ecotaxe", + help="Ecotaxe Amount" "computed form Classification\n", + ) manual_fixed_ecotaxe = fields.Float( - help= - "Manual Fixed ecotaxe.\n" - "Allow to subtite default Ecotaxe Classification\n") - - - @api.onchange('ecotaxe_classification_ids') - def onchange_ecotaxe_classification_ids(self): - if self.ecotaxe_classification_ids: - sale_taxes = self.taxes_id.ids or [] - purchase_taxes = self.supplier_taxes_id.ids or [] - for ecotaxe_classif_id in self.ecotaxe_classification_ids: - sale_taxes +=\ - ecotaxe_classif_id.sale_ecotaxe_id.ids - purchase_taxes +=\ - ecotaxe_classif_id.purchase_ecotaxe_id.ids - self.taxes_id = [(6, 0, sale_taxes)] - self.supplier_taxes_id = [(6, 0, purchase_taxes)] - + help="Manual Fixed ecotaxe.\n" + "Allow to subtite default Ecotaxe Classification\n" + ) - @api.depends('ecotaxe_classification_ids', - 'ecotaxe_classification_ids.ecotaxe_type', - 'ecotaxe_classification_ids.ecotaxe_coef', - 'weight', 'manual_fixed_ecotaxe') + @api.depends( + "ecotaxe_classification_id", + "ecotaxe_classification_id.ecotaxe_type", + "ecotaxe_classification_id.ecotaxe_coef", + "weight", + "manual_fixed_ecotaxe", + ) def _compute_ecotaxe(self): for prod in self: prod.ecotaxe_amount = 0.0 - for ecotaxe_classif_id in prod.ecotaxe_classification_ids: - if ecotaxe_classif_id.ecotaxe_type ==\ - 'weight_based': - weight = prod.weight_net or 0.0 - prod.ecotaxe_amount +=\ - ecotaxe_classif_id.ecotaxe_coef * weight - else: - prod.ecotaxe_amount += ecotaxe_classif_id.defaul_fixed_ecotaxe - - # Some product has a taxe different from template - @api.onchange('ecotaxe_classification_ids') - def onchange_ecotaxe_classification_ids(self): - if self.ecotaxe_classification_ids: - sale_taxes = self.taxes_id.ids or [] - purchase_taxes = self.supplier_taxes_id.ids or [] - for ecotaxe_classif_id in self.ecotaxe_classification_ids: - sale_taxes +=\ - ecotaxe_classif_id.sale_ecotaxe_id.ids - purchase_taxes +=\ - ecotaxe_classif_id.purchase_ecotaxe_id.ids - self.taxes_id = [(6, 0, sale_taxes)] - self.supplier_taxes_id = [(6, 0, purchase_taxes)] - - -class ProductCategory(models.Model): - _inherit = 'product.category' - ecotaxe_type = fields.Selection( - [ - ('fixed', 'Fixed'), - ('weight_based', 'Weight based'), - ], - string='Ecotaxe Type', - 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('Ecotaxe Coef') - default_fixed_ecotaxe = fields.Float( - 'Fixed Ecotaxe', - help="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") - - @api.onchange('ecotaxe_type') - def onchange_ecotaxe_type(self): - if self.ecotaxe_type == 'weight_based': - self.default_fixed_ecotaxe = 0 - if self.ecotaxe_type == 'fixed': - self.ecotaxe_coef = 0 + ecotaxe_classif_id = prod.ecotaxe_classification_id + if ecotaxe_classif_id.ecotaxe_type == "weight_based": + weight = prod.weight or 0.0 + prod.ecotaxe_amount = ecotaxe_classif_id.ecotaxe_coef * weight + else: + prod.ecotaxe_amount = ( + prod.manual_fixed_ecotaxe + or ecotaxe_classif_id.default_fixed_ecotaxe + ) diff --git a/l10n_fr_ecotaxe/models/purchase.py b/l10n_fr_ecotaxe/models/purchase.py deleted file mode 100755 index b72551797..000000000 --- a/l10n_fr_ecotaxe/models/purchase.py +++ /dev/null @@ -1,61 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2014-2016 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 PurchaseOrderLine(models.Model): - - _inherit = "purchase.order.line" - amount_ecotaxe = fields.Float(string='Ecotaxe', store=True, - compute='_compute_ecotaxe') - - @api.depends('taxes_id', 'product_id', 'product_qty') - def _compute_ecotaxe(self): - for line in self: - price = line._calc_line_base_price(line) - qty = line._calc_line_quantity(line) - ecotaxe_id = [tax.id for tax in line.taxes_id if tax.is_ecotaxe] - ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) - val = 0.0 - if ecotaxe_id: - taxes = ecotaxe_id.compute_all( - price, qty, line.product_id, - line.order_id.partner_id)['taxes'] - for t in taxes: - val += t.get('amount', 0.0) - - line.amount_ecotaxe = val - if line.order_id: - cur = line.order_id.pricelist_id.currency_id - line.amount_ecotaxe = cur.round( - line.amount_ecotaxe) - - -class PurchaseOrder(models.Model): - - _inherit = "purchase.order" - - amount_untaxed_with_ecotaxe = fields.Float('Untaxed Amount with Ecotaxe', - store=True, - compute='_compute_ecotaxe') - amount_ecotaxe = fields.Float(string='Included Ecotaxe', store=True, - compute='_compute_ecotaxe') - amount_tax_without_ecotaxe = fields.Float(string='Other Taxes', store=True, - compute='_compute_ecotaxe') - - @api.multi - @api.depends('amount_untaxed', 'order_line.taxes_id', - 'order_line.product_id', 'order_line.product_qty') - def _compute_ecotaxe(self): - for order in self: - val_ecotaxe = 0.0 - for line in order.order_line: - val_ecotaxe += line.amount_ecotaxe - order.amount_ecotaxe = val_ecotaxe - order.amount_untaxed_with_ecotaxe = \ - order.amount_untaxed + order.amount_ecotaxe - order.amount_tax_without_ecotaxe = \ - order.amount_tax - order.amount_ecotaxe diff --git a/l10n_fr_ecotaxe/models/sale.py b/l10n_fr_ecotaxe/models/sale.py deleted file mode 100755 index 541f41262..000000000 --- a/l10n_fr_ecotaxe/models/sale.py +++ /dev/null @@ -1,62 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2014-2016 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 SaleOrderLine(models.Model): - - _inherit = "sale.order.line" - amount_ecotaxe = fields.Float(string='Ecotaxe', store=True, - compute='_compute_ecotaxe') - - @api.depends('tax_id', 'product_id', 'product_uom_qty') - def _compute_ecotaxe(self): - for line in self: - price = line._calc_line_base_price(line) - qty = line._calc_line_quantity(line) - ecotaxe_id = [tax.id for tax in line.tax_id if tax.is_ecotaxe] - ecotaxe_id = self.env['account.tax'].browse(ecotaxe_id) - val = 0.0 - if ecotaxe_id: - taxes = ecotaxe_id.compute_all( - price, qty, line.product_id, - line.order_id.partner_id)['taxes'] - for t in taxes: - val += t.get('amount', 0.0) - - line.amount_ecotaxe = val - if line.order_id: - cur = line.order_id.pricelist_id.currency_id - line.amount_ecotaxe = cur.round( - line.amount_ecotaxe) - - -class SaleOrder(models.Model): - - _inherit = "sale.order" - - amount_untaxed_with_ecotaxe = fields.Float( - 'Untaxed Amount with Ecotaxe', store=True, - compute='_compute_ecotaxe') - amount_ecotaxe = fields.Float( - string='Included Ecotaxe', store=True, - compute='_compute_ecotaxe') - amount_tax_without_ecotaxe = fields.Float( - string='Other Taxes', store=True, - compute='_compute_ecotaxe') - - @api.multi - @api.depends('amount_untaxed', 'order_line.tax_id', - 'order_line.product_id', 'order_line.product_uom_qty') - def _compute_ecotaxe(self): - for order in self: - val_ecotaxe = 0.0 - for line in order.order_line: - val_ecotaxe += line.amount_ecotaxe - order.amount_ecotaxe = val_ecotaxe - order.amount_untaxed_with_ecotaxe = order.amount_untaxed \ - + val_ecotaxe - order.amount_tax_without_ecotaxe = order.amount_tax - val_ecotaxe 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..5b1004343 --- /dev/null +++ b/l10n_fr_ecotaxe/security/ir.model.access.csv @@ -0,0 +1,3 @@ +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 diff --git a/l10n_fr_ecotaxe/security/ir_model_access.yml b/l10n_fr_ecotaxe/security/ir_model_access.yml deleted file mode 100644 index 85c8ad492..000000000 --- a/l10n_fr_ecotaxe/security/ir_model_access.yml +++ /dev/null @@ -1,25 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Account Product - France Ecotaxe localisation module for Odoo -# Copyright (C) 2015 Akretion (http://www.akretion.com). -# @author Mourad EL HADJ MIMOUNE -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################### - -- !record {model: ir.model.access, id: ir_model_access_account_ecotaxe_classification_reader}: - group_id: base.group_user - model_id: model_account_ecotaxe_classification - name: Fiscal Classification Reader - perm_read: true - -- !record {model: ir.model.access, id: ir_model_access_account_ecotaxe_classification_manager}: - group_id: account.group_account_manager - model_id: model_account_ecotaxe_classification - name: Fiscal Classification Manager - perm_create: true - perm_write: true - perm_read: true - perm_unlink: true diff --git a/l10n_fr_ecotaxe/security/ir_rule.xml b/l10n_fr_ecotaxe/security/ir_rule.xml index 045d36aea..ccd333fd1 100644 --- a/l10n_fr_ecotaxe/security/ir_rule.xml +++ b/l10n_fr_ecotaxe/security/ir_rule.xml @@ -1,4 +1,4 @@ - + @@ -7,12 +7,12 @@ - - - Ecotaxe Classification - - - ['|', ('company_id', '=', user.company_id.id), ('company_id', '=', False)] - - + + Ecotaxe Classification + + + ['|', ('company_id', '=', user.company_id.id), ('company_id', '=', False)] + diff --git a/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml b/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml index 7f43dd0df..bbe04661b 100644 --- a/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml +++ b/l10n_fr_ecotaxe/views/account_ecotaxe_classification_view.xml @@ -1,205 +1,174 @@ - + - - - - - - account.ecotaxe.classification - - - - - - - - - - - - - - - account.ecotaxe.classification - -
- -
-
-
-

- -

+ + + account.ecotaxe.classification + + + + + + + + + + + + + + account.ecotaxe.classification + + + +
+
+
- - - - - - - - - - - - - - - - - - - - - - account.ecotaxe.classification - - - - - - - +

+ +

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

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

Click to start a new Ecotaxe Classification.

-
-
- - - - - - - - account.ecotaxe.category - - - - - - - - - - account.ecotaxe.category - -
- -
-
-
-

- -

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

+

+ +

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

Click to start a new Ecotaxe category.

-
-
- - - - - - - - - l10n_fr_ecotaxe.customer.invoice.form - account.invoice - - - - - - - True - - - True - - - - - - - - - - - - - - l10n_fr_ecotaxe.supplier.invoice.form - account.invoice - - - - - - - True - - - True - - - - - - - - - - + + + diff --git a/l10n_fr_ecotaxe/views/account_invoice_view.xml b/l10n_fr_ecotaxe/views/account_invoice_view.xml index dd39ede96..9e741e2cf 100644 --- a/l10n_fr_ecotaxe/views/account_invoice_view.xml +++ b/l10n_fr_ecotaxe/views/account_invoice_view.xml @@ -1,58 +1,40 @@ - + - - - - - l10n_fr_ecotaxe.customer.invoice.form - account.invoice - - - - - - - True - - - True - - - - - - - - - + + + l10n_fr_ecotaxe.customer.invoice.form + account.invoice + + + + + + + - - - - l10n_fr_ecotaxe.supplier.invoice.form - account.invoice - - - - - - - True - - - True - - - - - - + + + + l10n_fr_ecotaxe.supplier.invoice.form + account.invoice + + + + + + + - - - - + + + diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index 58a0a7150..8ee4200b3 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -1,41 +1,25 @@ - - + - - - - - product.template.ecotaxe.form - product.template - - - - - - - - - - product.product.ecotaxe.form - product.product - - - - - - - - - - + + product.template.ecotaxe.form + product.template + + + + + + diff --git a/l10n_fr_ecotaxe/views/purchase_view.xml b/l10n_fr_ecotaxe/views/purchase_view.xml deleted file mode 100644 index 29e30b50b..000000000 --- a/l10n_fr_ecotaxe/views/purchase_view.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - l10n_fr_ecotaxe.purchase.line.form - purchase.order - - - - True - - - True - - - - - - - - - - - - - - - diff --git a/l10n_fr_ecotaxe/views/sale_view.xml b/l10n_fr_ecotaxe/views/sale_view.xml deleted file mode 100644 index b867e83a1..000000000 --- a/l10n_fr_ecotaxe/views/sale_view.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - l10n_fr_ecotaxe.sale.line.form - sale.order - - - - True - - - True - - - - - - - - - - - - - - - - - From 1b8b369f0b8bced3ec4c31b6a163db98b059dde6 Mon Sep 17 00:00:00 2001 From: Mourad Date: Wed, 26 Aug 2020 14:46:00 +0200 Subject: [PATCH 26/54] [FIX] add test --- l10n_fr_ecotaxe/tests/__init__.py | 1 + l10n_fr_ecotaxe/tests/test_ecotaxe.py | 113 ++++++++++++++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 l10n_fr_ecotaxe/tests/__init__.py create mode 100644 l10n_fr_ecotaxe/tests/test_ecotaxe.py 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..0119df92c --- /dev/null +++ b/l10n_fr_ecotaxe/tests/test_ecotaxe.py @@ -0,0 +1,113 @@ +# Copyright 2016-2018 Akretion France +# @author: Alexis de Lattre +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo.tests import SavepointCase + + +class TestInvoiceEcotaxe(SavepointCase): + + @classmethod + def setUpClass(cls): + super(TestInvoiceEcotaxe, cls).setUpClass() + cls.partner = cls.env['res.partner'].create({'name': 'Test'}) + cls.account_type = cls.env['account.account.type'].create({ + 'name': 'Test', + 'type': 'receivable', + }) + cls.account = cls.env['account.account'].create({ + 'name': 'Test account', + 'code': 'TEST', + 'user_type_id': cls.account_type.id, + 'reconcile': True, + }) + cls.invoice = cls.env['account.invoice'].create({ + 'name': "Test Customer Invoice", + 'journal_id': cls.env['account.journal'].search( + [('type', '=', 'sale')])[0].id, + 'partner_id': cls.partner.id, + 'account_id': cls.account.id, + }) + cls.product = cls.env['product.template'].create({ + 'name': 'Product Test', + 'list_price': 100.00, + 'weight': 100.00, + }) + + cls.invoice_line = cls.env['account.invoice.line'] + cls.invoice_line1 = cls.invoice_line.create({ + 'invoice_id': cls.invoice.id, + 'name': 'Line 1', + 'price_unit': 100, + 'product_id': cls.product.product_variant_ids[:1].id, + 'account_id': cls.account.id, + 'quantity': 1, + }) + cls.ecotaxe_classification = cls.env['account.ecotaxe.classification'] + cls.ecotaxe_classification1 = cls.ecotaxe_classification.create({ + 'name': 'Fixed Ecotaxe', + 'ecotaxe_type': 'fixed', + 'default_fixed_ecotaxe': 2.4, + 'ecotaxe_product_status': 'M', + 'ecotaxe_supplier_status': 'FAB', + }) + cls.ecotaxe_classification2 = cls.ecotaxe_classification.create({ + 'name': 'Weight based', + 'ecotaxe_type': 'weight_based', + 'ecotaxe_coef': 0.04, + 'ecotaxe_product_status': 'P', + 'ecotaxe_supplier_status': 'FAB', + }) + cls.product2 = cls.env['product.template'].create({ + 'name': 'Product Test 2', + 'list_price': 2000.00, + 'weight': 400.00, + 'ecotaxe_classification_id': cls.ecotaxe_classification2.id, + }) + + def test_01_manual_fixed_ecotaxe(self): + """ Tests multiple lines with mixed taxes """ + self.product.manual_fixed_ecotaxe = 1.5 + self.product._compute_ecotaxe() + self.assertEqual(self.product.ecotaxe_amount, 1.5) + self.invoice_line1.quantity = 4 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice_line1.unit_ecotaxe_amount, 1.5) + self.assertEqual(self.invoice_line1.subtotal_ecotaxe, 6.0) + self.assertEqual(self.invoice.amount_total, 400.0) + self.assertEqual(self.invoice.amount_ecotaxe, 6.0) + + def test_02_classification_weight_based_ecotaxe(self): + """ Tests multiple lines with mixed taxes """ + self.product.ecotaxe_classification_id = self.ecotaxe_classification2 + self.product._compute_ecotaxe() + self.assertEqual(self.product.ecotaxe_amount, 4) + self.invoice_line1.quantity = 3 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice_line1.unit_ecotaxe_amount, 4) + self.assertEqual(self.invoice_line1.subtotal_ecotaxe, 12) + self.assertEqual(self.invoice.amount_total, 300.0) + self.assertEqual(self.invoice.amount_ecotaxe, 12) + + def test_03_classification_ecotaxe(self): + """ Tests multiple lines with mixed taxes """ + self.product.ecotaxe_classification_id = self.ecotaxe_classification1 + self.product._compute_ecotaxe() + self.assertEqual(self.product.ecotaxe_amount, 2.4) + self.invoice_line1.quantity = 3 + self.invoice._onchange_invoice_line_ids() + self.invoice_line2 = self.invoice_line.create({ + 'invoice_id': self.invoice.id, + 'name': 'Line 1', + 'price_unit': 2000, + 'product_id': self.product2.product_variant_ids[:1].id, + 'account_id': self.account.id, + 'quantity': 2, + }) + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice_line1.unit_ecotaxe_amount, 2.4) + self.assertEqual(self.invoice_line1.subtotal_ecotaxe, 7.2) + self.assertEqual(self.invoice_line2.unit_ecotaxe_amount, 16) + self.assertEqual(self.invoice_line2.subtotal_ecotaxe, 32) + self.assertEqual(self.invoice.amount_total, 4300.0) + self.assertEqual(self.invoice.amount_ecotaxe, 39.2) From a5d2a91638066121123ed3e9858c2867758d2e51 Mon Sep 17 00:00:00 2001 From: Mourad Date: Wed, 26 Aug 2020 16:00:35 +0200 Subject: [PATCH 27/54] [FIX] add sale & purchase ecotaxe test + format code --- l10n_fr_ecotaxe/tests/test_ecotaxe.py | 110 +++++++++++++------------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/l10n_fr_ecotaxe/tests/test_ecotaxe.py b/l10n_fr_ecotaxe/tests/test_ecotaxe.py index 0119df92c..2146ccc18 100644 --- a/l10n_fr_ecotaxe/tests/test_ecotaxe.py +++ b/l10n_fr_ecotaxe/tests/test_ecotaxe.py @@ -10,63 +10,63 @@ class TestInvoiceEcotaxe(SavepointCase): @classmethod def setUpClass(cls): super(TestInvoiceEcotaxe, cls).setUpClass() - cls.partner = cls.env['res.partner'].create({'name': 'Test'}) - cls.account_type = cls.env['account.account.type'].create({ - 'name': 'Test', - 'type': 'receivable', + cls.partner = cls.env["res.partner"].create({"name": "Test"}) + cls.account_type = cls.env["account.account.type"].create({ + "name": "Test", + "type": "receivable", }) - cls.account = cls.env['account.account'].create({ - 'name': 'Test account', - 'code': 'TEST', - 'user_type_id': cls.account_type.id, - 'reconcile': True, + cls.account = cls.env["account.account"].create({ + "name": "Test account", + "code": "TEST", + "user_type_id": cls.account_type.id, + "reconcile": True, }) - cls.invoice = cls.env['account.invoice'].create({ - 'name': "Test Customer Invoice", - 'journal_id': cls.env['account.journal'].search( - [('type', '=', 'sale')])[0].id, - 'partner_id': cls.partner.id, - 'account_id': cls.account.id, + cls.invoice = cls.env["account.invoice"].create({ + "name": "Test Customer Invoice", + "journal_id": cls.env["account.journal"].search( + [("type", "=", "sale")])[0].id, + "partner_id": cls.partner.id, + "account_id": cls.account.id, }) - cls.product = cls.env['product.template'].create({ - 'name': 'Product Test', - 'list_price': 100.00, - 'weight': 100.00, + cls.product = cls.env["product.template"].create({ + "name": "Product Test", + "list_price": 100.00, + "weight": 100.00, }) - - cls.invoice_line = cls.env['account.invoice.line'] + + cls.invoice_line = cls.env["account.invoice.line"] cls.invoice_line1 = cls.invoice_line.create({ - 'invoice_id': cls.invoice.id, - 'name': 'Line 1', - 'price_unit': 100, - 'product_id': cls.product.product_variant_ids[:1].id, - 'account_id': cls.account.id, - 'quantity': 1, - }) - cls.ecotaxe_classification = cls.env['account.ecotaxe.classification'] + "invoice_id": cls.invoice.id, + "name": "Line 1", + "price_unit": 100, + "product_id": cls.product.product_variant_ids[:1].id, + "account_id": cls.account.id, + "quantity": 1, + }) + cls.ecotaxe_classification = cls.env["account.ecotaxe.classification"] cls.ecotaxe_classification1 = cls.ecotaxe_classification.create({ - 'name': 'Fixed Ecotaxe', - 'ecotaxe_type': 'fixed', - 'default_fixed_ecotaxe': 2.4, - 'ecotaxe_product_status': 'M', - 'ecotaxe_supplier_status': 'FAB', + "name": "Fixed Ecotaxe", + "ecotaxe_type": "fixed", + "default_fixed_ecotaxe": 2.4, + "ecotaxe_product_status": "M", + "ecotaxe_supplier_status": "FAB", }) cls.ecotaxe_classification2 = cls.ecotaxe_classification.create({ - 'name': 'Weight based', - 'ecotaxe_type': 'weight_based', - 'ecotaxe_coef': 0.04, - 'ecotaxe_product_status': 'P', - 'ecotaxe_supplier_status': 'FAB', + "name": "Weight based", + "ecotaxe_type": "weight_based", + "ecotaxe_coef": 0.04, + "ecotaxe_product_status": "P", + "ecotaxe_supplier_status": "FAB", + }) + cls.product2 = cls.env["product.template"].create({ + "name": "Product Test 2", + "list_price": 2000.00, + "weight": 400.00, + "ecotaxe_classification_id": cls.ecotaxe_classification2.id, }) - cls.product2 = cls.env['product.template'].create({ - 'name': 'Product Test 2', - 'list_price': 2000.00, - 'weight': 400.00, - 'ecotaxe_classification_id': cls.ecotaxe_classification2.id, - }) def test_01_manual_fixed_ecotaxe(self): - """ Tests multiple lines with mixed taxes """ + """ Tests multiple lines with fixed ecotaxes """ self.product.manual_fixed_ecotaxe = 1.5 self.product._compute_ecotaxe() self.assertEqual(self.product.ecotaxe_amount, 1.5) @@ -78,7 +78,7 @@ def test_01_manual_fixed_ecotaxe(self): self.assertEqual(self.invoice.amount_ecotaxe, 6.0) def test_02_classification_weight_based_ecotaxe(self): - """ Tests multiple lines with mixed taxes """ + """ Tests multiple lines with weight based ecotaxes """ self.product.ecotaxe_classification_id = self.ecotaxe_classification2 self.product._compute_ecotaxe() self.assertEqual(self.product.ecotaxe_amount, 4) @@ -90,20 +90,20 @@ def test_02_classification_weight_based_ecotaxe(self): self.assertEqual(self.invoice.amount_ecotaxe, 12) def test_03_classification_ecotaxe(self): - """ Tests multiple lines with mixed taxes """ + """ Tests multiple lines with mixed ecotaxes """ self.product.ecotaxe_classification_id = self.ecotaxe_classification1 self.product._compute_ecotaxe() self.assertEqual(self.product.ecotaxe_amount, 2.4) self.invoice_line1.quantity = 3 self.invoice._onchange_invoice_line_ids() self.invoice_line2 = self.invoice_line.create({ - 'invoice_id': self.invoice.id, - 'name': 'Line 1', - 'price_unit': 2000, - 'product_id': self.product2.product_variant_ids[:1].id, - 'account_id': self.account.id, - 'quantity': 2, - }) + "invoice_id": self.invoice.id, + "name": "Line 1", + "price_unit": 2000, + "product_id": self.product2.product_variant_ids[:1].id, + "account_id": self.account.id, + "quantity": 2, + }) self.invoice._onchange_invoice_line_ids() self.assertEqual(self.invoice_line1.unit_ecotaxe_amount, 2.4) self.assertEqual(self.invoice_line1.subtotal_ecotaxe, 7.2) From 01f8b7288188577e55883c7fcf545f8bf85d700e Mon Sep 17 00:00:00 2001 From: Mourad Date: Wed, 26 Aug 2020 16:50:23 +0200 Subject: [PATCH 28/54] [FIX] readme files --- l10n_fr_ecotaxe/README.rst | 63 ------------------------- l10n_fr_ecotaxe/readme/CONTRIBUTORS.rst | 1 + l10n_fr_ecotaxe/readme/DESCRIPTION.rst | 10 ++++ l10n_fr_ecotaxe/readme/USAGE.rst | 6 +++ 4 files changed, 17 insertions(+), 63 deletions(-) delete mode 100644 l10n_fr_ecotaxe/README.rst create mode 100644 l10n_fr_ecotaxe/readme/CONTRIBUTORS.rst create mode 100644 l10n_fr_ecotaxe/readme/DESCRIPTION.rst create mode 100644 l10n_fr_ecotaxe/readme/USAGE.rst diff --git a/l10n_fr_ecotaxe/README.rst b/l10n_fr_ecotaxe/README.rst deleted file mode 100644 index 6ff863bbe..000000000 --- a/l10n_fr_ecotaxe/README.rst +++ /dev/null @@ -1,63 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License - - -This module manages the Ecotaxe (Recycling Tax) for France. -=========================================================== - -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). - -This localisation module add a field "is Ecotaxe" on Tax object. -It add Ecotaxe amount on sale line, purchase line and invoice line. -furthermore, a total ecotaxe are added at the footer of each document. -The fields "Untaxed amount include Ecotaxe amount" was added for readability. - -To make easy ecotaxe management and to factor the data, ecotaxe are set on products via ECOTAXE classification. -ECOTAXE classification can either a fixed or weight based ecotaxe. -On the taxe "Ecotaxe" we use python code to get a right ecotaxe -value from product. -One ecotaxe can be used for all products. -You should define two ecotaxes : -* sale ecotaxe -* purchase ecotaxe - - -Setting -======= - -Add sale and purchase ecotexe. The Ecotaxe amount must be included in base of VAT. The ecotaxe should have a sequence less then VAT. Define the right account on Ecotaxe. -Add ecotaxe classification via the menu *Accounting > configuration > Taxes > Ecotaxe Classification*. - -Assign ecotaxe to a product. - - -Bug Tracker -=========== - -Bugs are tracked on `GitHub Issues `_ - - -Credits -======= - -Contributors ------------- - -* Mourad EL HADJ MIMOUNE - - -Maintainer ----------- -.. image:: http://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: http://odoo-community.org - -This module is maintained by the OCA. - -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. - -To contribute to this module, please visit http://odoo-community.org. - - 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..e051649f8 --- /dev/null +++ b/l10n_fr_ecotaxe/readme/DESCRIPTION.rst @@ -0,0 +1,10 @@ +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 classification. +ECOTAXE classification can either a fixed or weight based ecotaxe. + diff --git a/l10n_fr_ecotaxe/readme/USAGE.rst b/l10n_fr_ecotaxe/readme/USAGE.rst new file mode 100644 index 000000000..3ee6865cb --- /dev/null +++ b/l10n_fr_ecotaxe/readme/USAGE.rst @@ -0,0 +1,6 @@ +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 set manual value on product. In this way, we shold defin one classification ecotaxe by product status (P OR M) (not one by exotaxe value). +For weight based ecotext, we should define one ecotaxe by coef applied for the weight (depending on product materials). +Assign ecotaxe classification to a product. From 09073a9ebfdc4b67a90e82fae23a87bb43a63250 Mon Sep 17 00:00:00 2001 From: Mourad Date: Wed, 25 Nov 2020 12:50:52 +0100 Subject: [PATCH 29/54] [IMP] product view --- l10n_fr_ecotaxe/views/product_view.xml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/l10n_fr_ecotaxe/views/product_view.xml b/l10n_fr_ecotaxe/views/product_view.xml index 8ee4200b3..0d736258d 100644 --- a/l10n_fr_ecotaxe/views/product_view.xml +++ b/l10n_fr_ecotaxe/views/product_view.xml @@ -9,16 +9,11 @@ product.template - -