diff --git a/product_price_category/README.rst b/product_price_category/README.rst new file mode 100644 index 00000000000..e6e8135f3f6 --- /dev/null +++ b/product_price_category/README.rst @@ -0,0 +1,69 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +====================== +Product Price Category +====================== + +This module adds a field Price Category on Product Template +and allow Pricelist to be applied on this field. + +Usage +===== + +In Pricelist Form (Sales -> Configuration -> Pricelist), you can add or modify +an item ("Manage Pricelist Items" access should be checked in the user settings) +and select "Price Category" in "Applied on". +Then you have to choose on which price category should it be applied. + +.. image:: static/pricelist_price_category.png + + +Product price category can be modified in product form -> General Information. + +.. image:: static/product_price_category.png + + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/167/10.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Cyril Gaudin +* Akim Juillerat + +Do not contact contributors directly about support or help with technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://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 https://odoo-community.org. diff --git a/product_price_category/__init__.py b/product_price_category/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/product_price_category/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/product_price_category/__manifest__.py b/product_price_category/__manifest__.py new file mode 100644 index 00000000000..4085f59c0dc --- /dev/null +++ b/product_price_category/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2016 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Product Price Category", + "summary": "Add Price Category field on product and allow to apply " + "a pricelist on this field.", + "version": "18.0.1.0.0", + "author": "Camptocamp SA, Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Product", + "depends": ["sale_stock"], + "website": "https://github.com/OCA/sale-workflow", + "data": [ + "security/ir.model.access.csv", + "views/product_pricelist.xml", + "views/product_template.xml", + ], + "maintainers": ["sbejaoui"], + "installable": True, +} diff --git a/product_price_category/i18n/am.po b/product_price_category/i18n/am.po new file mode 100644 index 00000000000..2ed2641e12e --- /dev/null +++ b/product_price_category/i18n/am.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ar.po b/product_price_category/i18n/ar.po new file mode 100644 index 00000000000..f67fce160e1 --- /dev/null +++ b/product_price_category/i18n/ar.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "المعرف" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "الاسم" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/bg.po b/product_price_category/i18n/bg.po new file mode 100644 index 00000000000..2c932bd3062 --- /dev/null +++ b/product_price_category/i18n/bg.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Име" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/bs.po b/product_price_category/i18n/bs.po new file mode 100644 index 00000000000..ba33c01bfd6 --- /dev/null +++ b/product_price_category/i18n/bs.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ime" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ca.po b/product_price_category/i18n/ca.po new file mode 100644 index 00000000000..6b340009667 --- /dev/null +++ b/product_price_category/i18n/ca.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2021-03-26 10:46+0000\n" +"Last-Translator: Daniel Martinez Vila \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nom visible" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoria de preus" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoria de preus: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Tarifes de preus" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Especifiqueu una categoria de preu del producte si aquesta regla només " +"s'aplica a una categoria de preus. Mantingueu-lo buit en cas contrari." + +#~ msgid "Pricelist item" +#~ msgstr "Article de la llista de preus" + +#~ msgid "Product Template" +#~ msgstr "Plantilla de producte" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/cs.po b/product_price_category/i18n/cs.po new file mode 100644 index 00000000000..90e474c8ae9 --- /dev/null +++ b/product_price_category/i18n/cs.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Název" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/da.po b/product_price_category/i18n/da.po new file mode 100644 index 00000000000..7aefdcf1b5e --- /dev/null +++ b/product_price_category/i18n/da.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Id" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/de.po b/product_price_category/i18n/de.po new file mode 100644 index 00000000000..9fb86ba1b24 --- /dev/null +++ b/product_price_category/i18n/de.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Angelegt durch" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Angelegt am" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zuletzt akualisiert durch" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zuletzt akualisiert am" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Bezeichnung" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Preisliste" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/el_GR.po b/product_price_category/i18n/el_GR.po new file mode 100644 index 00000000000..2d13a7ce0d6 --- /dev/null +++ b/product_price_category/i18n/el_GR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Κωδικός" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ονομασία" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/en_GB.po b/product_price_category/i18n/en_GB.po new file mode 100644 index 00000000000..16239570e88 --- /dev/null +++ b/product_price_category/i18n/en_GB.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Created on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es.po b/product_price_category/i18n/es.po new file mode 100644 index 00000000000..44cc8f096d6 --- /dev/null +++ b/product_price_category/i18n/es.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2021-03-26 10:46+0000\n" +"Last-Translator: Daniel Martinez Vila \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoría de precio" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoría de precio: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Tarifa" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Especifique una categoría de precio de producto si esta regla solo se aplica " +"a una categoría de precio. De lo contrario, manténgalo vacío." + +#~ msgid "Pricelist item" +#~ msgstr "Artículo de lista de precios" + +#~ msgid "Product Template" +#~ msgstr "Plantilla de producto" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/es_AR.po b/product_price_category/i18n/es_AR.po new file mode 100644 index 00000000000..27e8493b4d4 --- /dev/null +++ b/product_price_category/i18n/es_AR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_CL.po b/product_price_category/i18n/es_CL.po new file mode 100644 index 00000000000..5e29c9c2641 --- /dev/null +++ b/product_price_category/i18n/es_CL.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_CO.po b/product_price_category/i18n/es_CO.po new file mode 100644 index 00000000000..c221bee552c --- /dev/null +++ b/product_price_category/i18n/es_CO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_CR.po b/product_price_category/i18n/es_CR.po new file mode 100644 index 00000000000..9d7e18c5861 --- /dev/null +++ b/product_price_category/i18n/es_CR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_DO.po b/product_price_category/i18n/es_DO.po new file mode 100644 index 00000000000..dd700a6fb57 --- /dev/null +++ b/product_price_category/i18n/es_DO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_EC.po b/product_price_category/i18n/es_EC.po new file mode 100644 index 00000000000..68e48142b65 --- /dev/null +++ b/product_price_category/i18n/es_EC.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_ES.po b/product_price_category/i18n/es_ES.po new file mode 100644 index 00000000000..c1b550b26e2 --- /dev/null +++ b/product_price_category/i18n/es_ES.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_MX.po b/product_price_category/i18n/es_MX.po new file mode 100644 index 00000000000..18c39eba949 --- /dev/null +++ b/product_price_category/i18n/es_MX.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_PE.po b/product_price_category/i18n/es_PE.po new file mode 100644 index 00000000000..bc7bd49d44e --- /dev/null +++ b/product_price_category/i18n/es_PE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_PY.po b/product_price_category/i18n/es_PY.po new file mode 100644 index 00000000000..ec7417b134c --- /dev/null +++ b/product_price_category/i18n/es_PY.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/es_VE.po b/product_price_category/i18n/es_VE.po new file mode 100644 index 00000000000..f3c8b6eb76c --- /dev/null +++ b/product_price_category/i18n/es_VE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nombre" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/et.po b/product_price_category/i18n/et.po new file mode 100644 index 00000000000..0924ed15794 --- /dev/null +++ b/product_price_category/i18n/et.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/eu.po b/product_price_category/i18n/eu.po new file mode 100644 index 00000000000..6acf6ffb097 --- /dev/null +++ b/product_price_category/i18n/eu.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Created on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Izena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fa.po b/product_price_category/i18n/fa.po new file mode 100644 index 00000000000..c8cca8b3906 --- /dev/null +++ b/product_price_category/i18n/fa.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "شناسه" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "نام" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fi.po b/product_price_category/i18n/fi.po new file mode 100644 index 00000000000..188b3dc67d6 --- /dev/null +++ b/product_price_category/i18n/fi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nimi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fr.po b/product_price_category/i18n/fr.po new file mode 100644 index 00000000000..a107fb841ea --- /dev/null +++ b/product_price_category/i18n/fr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +# guillaume bauer , 2018 +# Quentin THEURET , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-28 01:48+0000\n" +"PO-Revision-Date: 2018-02-28 01:48+0000\n" +"Last-Translator: Quentin THEURET , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Catégorie de prix" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Catégorie de prix : %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Tarif" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Définissez une catégorie de prix de produit si cette règle s'applique " +"uniquement à une catégorie de prix. Laisser vide dans l'autre cas." + +#~ msgid "Pricelist item" +#~ msgstr "Élément de la liste de prix" + +#~ msgid "Product Template" +#~ msgstr "Modèle de produit" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/fr_CA.po b/product_price_category/i18n/fr_CA.po new file mode 100644 index 00000000000..f80b958d715 --- /dev/null +++ b/product_price_category/i18n/fr_CA.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Identifiant" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nom" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/fr_CH.po b/product_price_category/i18n/fr_CH.po new file mode 100644 index 00000000000..8c4b8aa7969 --- /dev/null +++ b/product_price_category/i18n/fr_CH.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/gl.po b/product_price_category/i18n/gl.po new file mode 100644 index 00000000000..0b2d25f964e --- /dev/null +++ b/product_price_category/i18n/gl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Modificado por última vez o" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/gl_ES.po b/product_price_category/i18n/gl_ES.po new file mode 100644 index 00000000000..b0b0f2c2eff --- /dev/null +++ b/product_price_category/i18n/gl_ES.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/he.po b/product_price_category/i18n/he.po new file mode 100644 index 00000000000..a027192863d --- /dev/null +++ b/product_price_category/i18n/he.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "מזהה" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "שם" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/hr.po b/product_price_category/i18n/hr.po new file mode 100644 index 00000000000..b37ac9c782a --- /dev/null +++ b/product_price_category/i18n/hr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-28 01:48+0000\n" +"PO-Revision-Date: 2018-02-28 01:48+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Kategorija cijena" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Kategorija cijena: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Cjenik" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Odredite kategoriju cijena ako ovo je pravilo primjenjivo na jednu " +"kategoriju, inače ostavite prazno." + +#~ msgid "Pricelist item" +#~ msgstr "Stavka cjenika" + +#~ msgid "Product Template" +#~ msgstr "Predložak proizvoda" + +#~ msgid "product.price.category" +#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/hr_HR.po b/product_price_category/i18n/hr_HR.po new file mode 100644 index 00000000000..9586f113a50 --- /dev/null +++ b/product_price_category/i18n/hr_HR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Cjenik" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/hu.po b/product_price_category/i18n/hu.po new file mode 100644 index 00000000000..98f1780a407 --- /dev/null +++ b/product_price_category/i18n/hu.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Név" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/id.po b/product_price_category/i18n/id.po new file mode 100644 index 00000000000..63cdddbbdc3 --- /dev/null +++ b/product_price_category/i18n/id.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nama" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/it.po b/product_price_category/i18n/it.po new file mode 100644 index 00000000000..f7144745f2d --- /dev/null +++ b/product_price_category/i18n/it.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2024-10-15 17:06+0000\n" +"Last-Translator: Francesco Foresti \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "Applica a" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoria di Prezzo" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoria di Prezzo: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Listino prezzi" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "Riga listino applicabile all'opzione selezionata" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "Regola listino prezzi" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "Prodotto" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "Categoria prezzo prodotto" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Specificare una categoria di prezzo del prodotto se questa regola si applica " +"solo a una categoria di prezzo. In caso contrario, lasciare vuoto." diff --git a/product_price_category/i18n/ja.po b/product_price_category/i18n/ja.po new file mode 100644 index 00000000000..a78f5de6c41 --- /dev/null +++ b/product_price_category/i18n/ja.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "作成日" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "名称" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ko.po b/product_price_category/i18n/ko.po new file mode 100644 index 00000000000..b75a670ae10 --- /dev/null +++ b/product_price_category/i18n/ko.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "작성일" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "이름" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/lt.po b/product_price_category/i18n/lt.po new file mode 100644 index 00000000000..23f89b56313 --- /dev/null +++ b/product_price_category/i18n/lt.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/lt_LT.po b/product_price_category/i18n/lt_LT.po new file mode 100644 index 00000000000..fc2c3de4011 --- /dev/null +++ b/product_price_category/i18n/lt_LT.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/lv.po b/product_price_category/i18n/lv.po new file mode 100644 index 00000000000..b0d175e44c8 --- /dev/null +++ b/product_price_category/i18n/lv.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nosaukums" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/mk.po b/product_price_category/i18n/mk.po new file mode 100644 index 00000000000..308cdfea661 --- /dev/null +++ b/product_price_category/i18n/mk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Име" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/mn.po b/product_price_category/i18n/mn.po new file mode 100644 index 00000000000..dad1a2aa137 --- /dev/null +++ b/product_price_category/i18n/mn.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Нэр" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nb.po b/product_price_category/i18n/nb.po new file mode 100644 index 00000000000..99ed845b23f --- /dev/null +++ b/product_price_category/i18n/nb.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nb_NO.po b/product_price_category/i18n/nb_NO.po new file mode 100644 index 00000000000..9ed17b4042c --- /dev/null +++ b/product_price_category/i18n/nb_NO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nl.po b/product_price_category/i18n/nl.po new file mode 100644 index 00000000000..b169a4205b8 --- /dev/null +++ b/product_price_category/i18n/nl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Laatste bijgewerkt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nl_BE.po b/product_price_category/i18n/nl_BE.po new file mode 100644 index 00000000000..d226010f964 --- /dev/null +++ b/product_price_category/i18n/nl_BE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naam:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/nl_NL.po b/product_price_category/i18n/nl_NL.po new file mode 100644 index 00000000000..4698a78b8e1 --- /dev/null +++ b/product_price_category/i18n/nl_NL.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# Peter Hageman , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: Peter Hageman , 2018\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Laatst aangepast door" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Laatst aangepast op" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naam" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/pl.po b/product_price_category/i18n/pl.po new file mode 100644 index 00000000000..2aa9ca767ff --- /dev/null +++ b/product_price_category/i18n/pl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nazwa" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/product_price_category.pot b/product_price_category/i18n/product_price_category.pot new file mode 100644 index 00000000000..07bf835cbaa --- /dev/null +++ b/product_price_category/i18n/product_price_category.pot @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.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: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/pt.po b/product_price_category/i18n/pt.po new file mode 100644 index 00000000000..1862ee5a65e --- /dev/null +++ b/product_price_category/i18n/pt.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/pt_BR.po b/product_price_category/i18n/pt_BR.po new file mode 100644 index 00000000000..431e604d346 --- /dev/null +++ b/product_price_category/i18n/pt_BR.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2024-09-20 20:06+0000\n" +"Last-Translator: Rodrigo Sottomaior Macedo " +"\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "Aplicar em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Identificação" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "Categoria de Preço" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "Categoria de Preço: %s" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Lista de Preço" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "Item da lista de preços aplicável na opção selecionada" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "Regra da lista de preços" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "Produto" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "Categoria de Preço do Produto" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" +"Especifique uma categoria de preço de produto se esta regra se aplicar " +"somente a uma categoria de preço. Mantenha em branco caso contrário." diff --git a/product_price_category/i18n/pt_PT.po b/product_price_category/i18n/pt_PT.po new file mode 100644 index 00000000000..0b8afe2a3d2 --- /dev/null +++ b/product_price_category/i18n/pt_PT.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nome" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ro.po b/product_price_category/i18n/ro.po new file mode 100644 index 00000000000..e019cccc009 --- /dev/null +++ b/product_price_category/i18n/ro.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Nume" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/ru.po b/product_price_category/i18n/ru.po new file mode 100644 index 00000000000..48ad92bac03 --- /dev/null +++ b/product_price_category/i18n/ru.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Создан" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Название" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sk.po b/product_price_category/i18n/sk.po new file mode 100644 index 00000000000..4c329843400 --- /dev/null +++ b/product_price_category/i18n/sk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Meno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sl.po b/product_price_category/i18n/sl.po new file mode 100644 index 00000000000..38fc278216a --- /dev/null +++ b/product_price_category/i18n/sl.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Naziv" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "Cenik" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sr.po b/product_price_category/i18n/sr.po new file mode 100644 index 00000000000..8155a3e5c86 --- /dev/null +++ b/product_price_category/i18n/sr.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ime" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sr@latin.po b/product_price_category/i18n/sr@latin.po new file mode 100644 index 00000000000..be8b312cedb --- /dev/null +++ b/product_price_category/i18n/sr@latin.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ime:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/sv.po b/product_price_category/i18n/sv.po new file mode 100644 index 00000000000..53335439bba --- /dev/null +++ b/product_price_category/i18n/sv.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Namn" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/th.po b/product_price_category/i18n/th.po new file mode 100644 index 00000000000..41311d903dd --- /dev/null +++ b/product_price_category/i18n/th.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "รหัส" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "ชื่อ" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/tr.po b/product_price_category/i18n/tr.po new file mode 100644 index 00000000000..e33f4df28c6 --- /dev/null +++ b/product_price_category/i18n/tr.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Adı" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/tr_TR.po b/product_price_category/i18n/tr_TR.po new file mode 100644 index 00000000000..1677a8d5eb0 --- /dev/null +++ b/product_price_category/i18n/tr_TR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "Kimlik" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Ad" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/uk.po b/product_price_category/i18n/uk.po new file mode 100644 index 00000000000..8716d641580 --- /dev/null +++ b/product_price_category/i18n/uk.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/vi.po b/product_price_category/i18n/vi.po new file mode 100644 index 00000000000..cf8cc766119 --- /dev/null +++ b/product_price_category/i18n/vi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Tên" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/vi_VN.po b/product_price_category/i18n/vi_VN.po new file mode 100644 index 00000000000..f2f741326ad --- /dev/null +++ b/product_price_category/i18n/vi_VN.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "Tên" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/zh_CN.po b/product_price_category/i18n/zh_CN.po new file mode 100644 index 00000000000..c6c3020bd5c --- /dev/null +++ b/product_price_category/i18n/zh_CN.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "ID" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "名称" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/i18n/zh_TW.po b/product_price_category/i18n/zh_TW.po new file mode 100644 index 00000000000..c56e46ca83f --- /dev/null +++ b/product_price_category/i18n/zh_TW.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * product_price_category +# +# Translators: +# OCA Transbot , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-27 03:52+0000\n" +"PO-Revision-Date: 2018-01-27 03:52+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on +msgid "Apply On" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date +msgid "Created on" +msgstr "建立於" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id +msgid "ID" +msgstr "編號" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name +msgid "Name" +msgstr "名稱" + +#. module: product_price_category +#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id +#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id +#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category +msgid "Price Category" +msgstr "" + +#. module: product_price_category +#. odoo-python +#: code:addons/product_price_category/models/product_pricelist_item.py:0 +#, python-format +msgid "Price Category: %s" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist +msgid "Pricelist" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on +msgid "Pricelist Item applicable on selected option" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_pricelist_item +msgid "Pricelist Rule" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_template +msgid "Product" +msgstr "" + +#. module: product_price_category +#: model:ir.model,name:product_price_category.model_product_price_category +msgid "Product Price Category" +msgstr "" + +#. module: product_price_category +#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id +msgid "" +"Specify a product price category if this rule only applies to one price " +"category. Keep empty otherwise." +msgstr "" diff --git a/product_price_category/migrations/18.0.1.0.0/post-migration.py b/product_price_category/migrations/18.0.1.0.0/post-migration.py new file mode 100644 index 00000000000..eccf8cf09f9 --- /dev/null +++ b/product_price_category/migrations/18.0.1.0.0/post-migration.py @@ -0,0 +1,15 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import logging + +_logger = logging.getLogger(__name__) + + +def migrate(cr, version): + if not version: + return + cr.execute(""" + UPDATE product_pricelist_item + SET display_applied_on = '2b_product_price_category' + WHERE applied_on = '2b_product_price_category' + """) diff --git a/product_price_category/models/__init__.py b/product_price_category/models/__init__.py new file mode 100644 index 00000000000..e13fbdfe3e0 --- /dev/null +++ b/product_price_category/models/__init__.py @@ -0,0 +1,4 @@ +from . import product_price_category +from . import product_template +from . import product_pricelist +from . import product_pricelist_item diff --git a/product_price_category/models/product_price_category.py b/product_price_category/models/product_price_category.py new file mode 100644 index 00000000000..3cb1c8c9d3b --- /dev/null +++ b/product_price_category/models/product_price_category.py @@ -0,0 +1,12 @@ +# Copyright 2016 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ProductPriceCategory(models.Model): + _name = "product.price.category" + _description = "Product Price Category" + + name = fields.Char(required=True) diff --git a/product_price_category/models/product_pricelist.py b/product_price_category/models/product_pricelist.py new file mode 100644 index 00000000000..c8c451797b1 --- /dev/null +++ b/product_price_category/models/product_pricelist.py @@ -0,0 +1,25 @@ +# Copyright 2017 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +from odoo import models + + +class ProductPricelist(models.Model): + _inherit = "product.pricelist" + + def _get_applicable_rules_domain(self, products, date, **kwargs): + price_categ_ids = [ + p.price_category_id.id for p in products if p.price_category_id + ] + domain = super()._get_applicable_rules_domain(products, date, **kwargs) + if price_categ_ids: + domain.extend( + [ + "|", + ("price_category_id", "=", False), + ("price_category_id", "in", price_categ_ids), + ] + ) + return domain diff --git a/product_price_category/models/product_pricelist_item.py b/product_price_category/models/product_pricelist_item.py new file mode 100644 index 00000000000..b47ff82e30a --- /dev/null +++ b/product_price_category/models/product_pricelist_item.py @@ -0,0 +1,71 @@ +# Copyright 2017 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +from odoo import _, api, fields, models + + +class ProductPricelistItem(models.Model): + _inherit = "product.pricelist.item" + + applied_on = fields.Selection( + selection_add=[("2b_product_price_category", "Price Category")], + ondelete={"2b_product_price_category": "set default"}, + ) + display_applied_on = fields.Selection( + selection_add=[("2b_product_price_category", "Price Category")], + ondelete={"2b_product_price_category": "set default"}, + ) + price_category_id = fields.Many2one( + comodel_name="product.price.category", + string="Price Category", + ondelete="cascade", + help="Specify a product price category if this rule only applies " + "to one price category. Keep empty otherwise.", + compute="_compute_price_category", + store=True, + readonly=False, + ) + + def _compute_name(self): + # triggered from these fields: applied_on, categ_id, product_tmpl_id, ... + result = super()._compute_name() + for item in self: + if item.applied_on == "2b_product_price_category": + item.name = _("Price Category: %s", item.price_category_id.display_name) + return result + + @api.depends("display_applied_on") + def _compute_price_category(self): + """Reset the price_category_id value if applied_on + is not price_category + """ + for rec in self: + if rec.display_applied_on != "2b_product_price_category": + rec.price_category_id = False + + def _is_applicable_for(self, product, qty_in_product_uom): + res = super()._is_applicable_for(product, qty_in_product_uom) + if ( + self.price_category_id + and self.price_category_id != product.price_category_id + ): + return False + return res + + @api.onchange("display_applied_on") + def _onchange_display_applied_on(self): + res = super()._onchange_display_applied_on() + for item in self: + if item.display_applied_on == "2b_product_price_category": + item.update( + dict( + product_id=None, + product_tmpl_id=None, + applied_on="2b_product_price_category", + product_uom=None, + categ_id=None, + ) + ) + return res diff --git a/product_price_category/models/product_template.py b/product_price_category/models/product_template.py new file mode 100644 index 00000000000..5a9af180a0a --- /dev/null +++ b/product_price_category/models/product_template.py @@ -0,0 +1,13 @@ +# Copyright 2016 Camptocamp SA +# Copyright 2023 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + price_category_id = fields.Many2one( + "product.price.category", string="Price Category", ondelete="restrict" + ) diff --git a/product_price_category/pyproject.toml b/product_price_category/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/product_price_category/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/product_price_category/security/ir.model.access.csv b/product_price_category/security/ir.model.access.csv new file mode 100644 index 00000000000..5afd0ecc133 --- /dev/null +++ b/product_price_category/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 +access_product_price_category_user,access_product_price_category_user,model_product_price_category,product.group_product_pricelist,1,0,0,0 +access_product_price_category_manager,access_product_price_category_manager,model_product_price_category,sales_team.group_sale_manager,1,1,1,1 diff --git a/product_price_category/static/description/icon.png b/product_price_category/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/product_price_category/static/description/icon.png differ diff --git a/product_price_category/static/pricelist_price_category.png b/product_price_category/static/pricelist_price_category.png new file mode 100644 index 00000000000..5356cade1ec Binary files /dev/null and b/product_price_category/static/pricelist_price_category.png differ diff --git a/product_price_category/static/product_price_category.png b/product_price_category/static/product_price_category.png new file mode 100644 index 00000000000..9f7ce0ebe8c Binary files /dev/null and b/product_price_category/static/product_price_category.png differ diff --git a/product_price_category/tests/__init__.py b/product_price_category/tests/__init__.py new file mode 100644 index 00000000000..e95d2042c49 --- /dev/null +++ b/product_price_category/tests/__init__.py @@ -0,0 +1,4 @@ +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_sale diff --git a/product_price_category/tests/test_sale.py b/product_price_category/tests/test_sale.py new file mode 100644 index 00000000000..f26f8aebeb9 --- /dev/null +++ b/product_price_category/tests/test_sale.py @@ -0,0 +1,146 @@ +# Copyright 2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import Command +from odoo.tests import Form +from odoo.tests.common import TransactionCase + + +class TestSale(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + # activate advanced pricelist + cls.env.user.write( + { + "groups_id": [ + Command.link(cls.env.ref("product.group_product_pricelist").id) + ] + } + ) + cls.tax = cls.env["account.tax"].create( + {"name": "Unittest tax", "amount_type": "percent", "amount": "0"} + ) + + price_category_1 = cls.env["product.price.category"].create( + {"name": "TEST_CAT"} + ) + price_category_2 = cls.env["product.price.category"].create( + {"name": "TEST_CAT_2"} + ) + + cls.pricelist = cls.env["product.pricelist"].create( + { + "name": "Unittest Pricelist", + "item_ids": [ + Command.create( + { + "applied_on": "2b_product_price_category", + "price_category_id": price_category_2.id, + "compute_price": "percentage", + "percent_price": 5, + } + ), + ], + } + ) + + # P1 with price_category_1 + cls.p1 = cls.env["product.product"].create( + { + "name": "Unittest P1", + "price_category_id": price_category_1.id, + "list_price": 10, + "taxes_id": [Command.set(cls.tax.ids)], + } + ) + + # P2 with price_category_2 + cls.p2 = cls.env["product.product"].create( + { + "name": "Unittest P2", + "price_category_id": price_category_2.id, + "list_price": 20, + "taxes_id": [Command.set(cls.tax.ids)], + } + ) + + # P3 without price category + cls.p3 = cls.env["product.product"].create( + { + "name": "Unittest P3", + "list_price": 30, + "taxes_id": [Command.set(cls.tax.ids)], + } + ) + + cls.partner = cls.env["res.partner"].create({"name": "Unittest partner"}) + + cls.sale = cls.env["sale.order"].create( + { + "partner_id": cls.partner.id, + "order_line": [ + Command.create( + { + "name": cls.p1.name, + "product_id": cls.p1.id, + "product_uom_qty": 1, + "product_uom": cls.env.ref("uom.product_uom_unit").id, + }, + ), + Command.create( + { + "name": cls.p1.name, + "product_id": cls.p2.id, + "product_uom_qty": 1, + "product_uom": cls.env.ref("uom.product_uom_unit").id, + }, + ), + Command.create( + { + "name": cls.p1.name, + "product_id": cls.p3.id, + "product_uom_qty": 1, + "product_uom": cls.env.ref("uom.product_uom_unit").id, + }, + ), + ], + } + ) + + def test_sale_without_pricelist(self): + self.sale._recompute_prices() + self.assertEqual(10, self.sale.order_line[0].price_total) + self.assertEqual(20, self.sale.order_line[1].price_total) + self.assertEqual(30, self.sale.order_line[2].price_total) + self.assertEqual(60, self.sale.amount_total) + + def test_sale_with_pricelist(self): + """Pricelist should be applied only on product with price_category_2""" + self.sale.pricelist_id = self.pricelist + self.sale._recompute_prices() + self.assertEqual(10, self.sale.order_line[0].price_total) + self.assertEqual(19, self.sale.order_line[1].price_total) + self.assertEqual(30, self.sale.order_line[2].price_total) + self.assertEqual(59, self.sale.amount_total) + + def test_sale_with_pricelist_and_tax(self): + self.tax.amount = 20 + self.sale.pricelist_id = self.pricelist + self.sale._recompute_prices() + self.assertEqual(12, self.sale.order_line[0].price_total) + self.assertEqual(22.8, self.sale.order_line[1].price_total) + self.assertEqual(36, self.sale.order_line[2].price_total) + self.assertEqual(70.8, self.sale.amount_total) + + def test_onchange_applied_on_price_category(self): + pricelist_form = Form(self.pricelist) + with pricelist_form.item_ids.edit(0) as item_form: + self.assertTrue(item_form.price_category_id) + item_form.display_applied_on = "1_product" + self.assertFalse(item_form.price_category_id) + + def test_name(self): + item = self.pricelist.item_ids[0] + expected_name = f"Price Category: {item.price_category_id.display_name}" + self.assertEqual(expected_name, item.name) diff --git a/product_price_category/views/product_pricelist.xml b/product_price_category/views/product_pricelist.xml new file mode 100644 index 00000000000..ba547089a86 --- /dev/null +++ b/product_price_category/views/product_pricelist.xml @@ -0,0 +1,16 @@ + + + + product.pricelist.item + + + + + + + + diff --git a/product_price_category/views/product_template.xml b/product_price_category/views/product_template.xml new file mode 100644 index 00000000000..2d2216c37d5 --- /dev/null +++ b/product_price_category/views/product_template.xml @@ -0,0 +1,23 @@ + + + + product.template + + +
+ +
+
+
+ + + + product.template + + + + + + + +