build: configurar herramientas de verificación OCA

- Instalar pre-commit con 25 hooks configurados
- Configurar black 26.1.0 para formateo de código Python
- Configurar isort 7.0.0 para ordenación de imports
- Configurar flake8 7.3.0 con flake8-bugbear
- Configurar pylint 3.1.1 con pylint-odoo 9.1.2
- Añadir autoflake y pyupgrade para mejoras automáticas
- Configurar prettier para formateo de XML/JSON/YAML
- Crear .editorconfig para consistencia de editor
- Crear Makefile con comandos útiles
- Crear check_addon.sh para verificación rápida de addons
- Actualizar configuración de VS Code con extensiones recomendadas
- Añadir documentación completa de uso
- Aplicar formateo automático a archivos existentes
- Deshabilitar setuptools-odoo (no soporta Odoo 18.0 aún)
- Deshabilitar fix-encoding-pragma (obsoleto, usar pyupgrade)
This commit is contained in:
snt 2026-02-11 16:09:41 +01:00
parent 5b9c6e3211
commit fe137dc265
224 changed files with 18376 additions and 0 deletions

View file

@ -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
<https://github.com/OCA/sale-workflow/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 <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
Contributors
------------
* Cyril Gaudin <cyril.gaudin@camptocamp.com>
* Akim Juillerat <akim.juillerat@camptocamp.com>
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.

View file

@ -0,0 +1 @@
from . import models

View file

@ -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,
}

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <daniel.martinez@qubiq.es>\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"

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <daniel.martinez@qubiq.es>\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"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,124 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# guillaume bauer <guillaume.bauer@syentys.com>, 2018
# Quentin THEURET <odoo@kerpeo.com>, 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 <odoo@kerpeo.com>, 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"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,124 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Bole <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 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"

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,114 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <francesco.foresti@ooops404.com>\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."

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# Peter Hageman <hageman.p@gmail.com>, 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 <hageman.p@gmail.com>, 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 ""

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,107 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.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_pricelist_item__display_applied_on
msgid "Display Applied 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__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
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__display_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
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
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__display_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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 "
"<sottomaiormacedotec@sottomaiormacedo.tech>\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."

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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: 2026-01-22 17:04+0000\n"
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\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"
"X-Generator: Weblate 5.15.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 "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 "Prikazani 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,113 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,111 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_price_category
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

View file

@ -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'
""")

View file

@ -0,0 +1,4 @@
from . import product_price_category
from . import product_template
from . import product_pricelist
from . import product_pricelist_item

View file

@ -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
from odoo import models
class ProductPriceCategory(models.Model):
_name = "product.price.category"
_description = "Product Price Category"
name = fields.Char(required=True)

View file

@ -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

View file

@ -0,0 +1,74 @@
# Copyright 2017 Camptocamp SA
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import _
from odoo import api
from odoo import fields
from odoo import 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,
)
@api.depends("price_category_id")
def _compute_name(self):
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

View file

@ -0,0 +1,14 @@
# 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
from odoo import models
class ProductTemplate(models.Model):
_inherit = "product.template"
price_category_id = fields.Many2one(
"product.price.category", string="Price Category", ondelete="restrict"
)

View file

@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"

View file

@ -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
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_product_price_category_user access_product_price_category_user model_product_price_category product.group_product_pricelist 1 0 0 0
3 access_product_price_category_manager access_product_price_category_manager model_product_price_category sales_team.group_sale_manager 1 1 1 1

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View file

@ -0,0 +1,4 @@
# Copyright 2016 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import test_sale

View file

@ -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)

View file

@ -0,0 +1,19 @@
<odoo>
<!-- Add price_category_id field in product.pricelist.item form -->
<record id="product_pricelist_item_form_view" model="ir.ui.view">
<field name="model">product.pricelist.item</field>
<field
name="inherit_id"
ref="product.product_pricelist_item_form_view"
/>
<field name="arch" type="xml">
<field name="display_applied_on" position="after">
<field
name="price_category_id"
invisible="display_applied_on != '2b_product_price_category'"
required="display_applied_on == '2b_product_price_category'"
/>
</field>
</field>
</record>
</odoo>

View file

@ -0,0 +1,23 @@
<odoo>
<!-- Adds price_category_id in form view -->
<record id="product_template_form_view" model="ir.ui.view">
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view" />
<field name="arch" type="xml">
<div name="standard_price_uom" position="after">
<field name="price_category_id" />
</div>
</field>
</record>
<!-- Adds price_category_id in search view -->
<record id="product_template_search_view" model="ir.ui.view">
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_search_view" />
<field name="arch" type="xml">
<field name="categ_id" position="after">
<field name="price_category_id" />
</field>
</field>
</record>
</odoo>