diff --git a/ocb b/ocb deleted file mode 160000 index 6fb141f..0000000 --- a/ocb +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6fb141fc7547f9de55c9ac702515f1e3a27406d0 diff --git a/product_main_seller/README.md b/product_main_seller/README.md deleted file mode 100644 index b58dfea..0000000 --- a/product_main_seller/README.md +++ /dev/null @@ -1,100 +0,0 @@ -# Product Main Seller - -## Summary - -Adds a "Main Vendor" field to products that automatically tracks the primary supplier based on supplierinfo sequence. - -## Features - -- **Automatic Main Vendor**: Computed field showing the primary supplier -- **Based on Sequence**: Uses the supplierinfo with the lowest sequence number -- **Visible in Views**: Shows in product form and tree views -- **Searchable**: Can search and filter products by main vendor -- **Related Fields**: Access to vendor name and reference - -## Technical Details - -### Models Extended - -- `product.template`: Main product template -- `product.product`: Product variants - -### Fields Added - -- `main_seller_id` (Many2one → res.partner, computed, stored) - - The main vendor for this product - - Computed from `seller_ids` with lowest sequence - - Stored for performance - - Searchable and filterable - -### Computation Logic - -The main vendor is determined by: -1. Looking at all supplierinfo records (`seller_ids`) -2. Filtering for valid suppliers (active partners) -3. Selecting the one with the **lowest sequence** number -4. If no suppliers, returns empty - -## Dependencies - -- `purchase` (Odoo core) - -## Installation - -```bash -docker-compose exec odoo odoo -d odoo -u product_main_seller --stop-after-init -``` - -## Usage - -## Usage - -### Viewing Main Vendor - -1. Open a product form (Products > Products > [Product]) -2. See "Main Vendor" field (usually in Purchase tab) -3. Field is automatically computed from vendor list - -### Changing Main Vendor - -To change the main vendor: -1. Go to product form > Purchase tab -2. Edit the vendor list (`seller_ids`) -3. Change the sequence numbers (lower = more priority) -4. Save - the "Main Vendor" will update automatically - -### Searching by Vendor - -```python -# Find all products from a specific vendor -products = self.env['product.template'].search([ - ('main_seller_id', '=', vendor_id) -]) -``` - -## Use Cases in Kidekoop - -This module is critical for: -- Vendor performance analysis -- Purchase order management -- Inventory planning by supplier -- Default supplier selection in purchase workflows - -## Views Modified - -- Product Template Form View -- Product Template Tree View -- Product Variant Form View - -## Translations - -- ✅ Spanish (es) -- ✅ Euskera (eu) - -Located in `i18n/` directory. - ---- - -**Version**: 18.0.1.0.0 -**Category**: Purchase -**License**: AGPL-3 diff --git a/product_main_seller/README.rst b/product_main_seller/README.rst deleted file mode 100644 index 22ed7f8..0000000 --- a/product_main_seller/README.rst +++ /dev/null @@ -1,97 +0,0 @@ -.. image:: https://odoo-community.org/readme-banner-image - :target: https://odoo-community.org/get-involved?utm_source=readme - :alt: Odoo Community Association - -=================== -Product Main Vendor -=================== - -.. - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! This file is generated by oca-gen-addon-readme !! - !! changes will be overwritten. !! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:c353b8931ca2140d6d80974f00d4e5e073b737283dc2770fe718a8842cd6bd4e - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - -.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png - :target: https://odoo-community.org/page/development-status - :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 -.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github - :target: https://github.com/OCA/purchase-workflow/tree/18.0/product_main_seller - :alt: OCA/purchase-workflow -.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-product_main_seller - :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png - :target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=18.0 - :alt: Try me on Runboat - -|badge1| |badge2| |badge3| |badge4| |badge5| - -This module extends the Odoo Product module to compute and display the -main Vendor of each products. The main vendor is the first vendor in the -vendors list. - -|image1| - -.. |image1| image:: https://raw.githubusercontent.com/OCA/purchase-workflow/18.0/product_main_seller/static/description/product_tree_view.png - -**Table of contents** - -.. contents:: - :local: - -Bug Tracker -=========== - -Bugs are tracked on `GitHub Issues `_. -In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us to smash it by providing a detailed and welcomed -`feedback `_. - -Do not contact contributors directly about support or help with technical issues. - -Credits -======= - -Authors -------- - -* GRAP - -Contributors ------------- - -- Quentin Dupont (quentin.dupont@grap.coop) - -Maintainers ------------ - -This module is maintained by the OCA. - -.. image:: https://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: https://odoo-community.org - -OCA, or the Odoo Community Association, is a nonprofit organization whose -mission is to support the collaborative development of Odoo features and -promote its widespread use. - -.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px - :target: https://github.com/legalsylvain - :alt: legalsylvain -.. |maintainer-quentinDupont| image:: https://github.com/quentinDupont.png?size=40px - :target: https://github.com/quentinDupont - :alt: quentinDupont - -Current `maintainers `__: - -|maintainer-legalsylvain| |maintainer-quentinDupont| - -This module is part of the `OCA/purchase-workflow `_ project on GitHub. - -You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/product_main_seller/__init__.py b/product_main_seller/__init__.py deleted file mode 100644 index 6d58305..0000000 --- a/product_main_seller/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from . import models -from .hooks import pre_init_hook diff --git a/product_main_seller/__manifest__.py b/product_main_seller/__manifest__.py deleted file mode 100644 index faa14da..0000000 --- a/product_main_seller/__manifest__.py +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (C) 2022 - Today: GRAP (http://www.grap.coop) -# @author: Quentin Dupont (quentin.dupont@grap.coop) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -{ - "name": "Product Main Vendor", - "summary": "Main Vendor for a product", - "version": "18.0.1.0.0", - "category": "Purchase", - "author": "GRAP,Odoo Community Association (OCA)", - "website": "https://github.com/OCA/purchase-workflow", - "license": "AGPL-3", - "depends": ["purchase"], - "maintainers": ["legalsylvain", "quentinDupont"], - "data": [ - "views/view_product_product.xml", - "views/view_product_template.xml", - ], - "pre_init_hook": "pre_init_hook", -} diff --git a/product_main_seller/hooks.py b/product_main_seller/hooks.py deleted file mode 100644 index eceb699..0000000 --- a/product_main_seller/hooks.py +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2024-Today - Sylvain Le GAL (GRAP) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -import logging - -_logger = logging.getLogger(__name__) - - -def pre_init_hook(env): - _logger.info("Initializing column main_seller_id on table product_template") - cr = env.cr - cr.execute(""" - ALTER TABLE product_template - ADD COLUMN IF NOT EXISTS main_seller_id integer; - """) - cr.execute(""" - WITH numbered_supplierinfos as ( - SELECT *, ROW_number() over ( - partition BY product_tmpl_id - ORDER BY sequence, min_qty desc, price - ) as row_number - FROM product_supplierinfo - ), - - first_supplierinfos as ( - SELECT * from numbered_supplierinfos - WHERE row_number = 1 - ) - - UPDATE product_template pt - SET main_seller_id = first_supplierinfos.partner_id - FROM first_supplierinfos - WHERE pt.id = first_supplierinfos.product_tmpl_id; - """) diff --git a/product_main_seller/i18n/fr.po b/product_main_seller/i18n/fr.po deleted file mode 100644 index f245722..0000000 --- a/product_main_seller/i18n/fr.po +++ /dev/null @@ -1,37 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_main_seller -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 16.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-08 20:26+0000\n" -"PO-Revision-Date: 2024-07-08 20:26+0000\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: product_main_seller -#: model:ir.model.fields,field_description:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,field_description:product_main_seller.field_product_template__main_seller_id -#: model_terms:ir.ui.view,arch_db:product_main_seller.view_product_template_search -msgid "Main Vendor" -msgstr "Fournisseur principal" - -#. module: product_main_seller -#: model:ir.model,name:product_main_seller.model_product_template -msgid "Product" -msgstr "Produit" - -#. module: product_main_seller -#: model:ir.model.fields,help:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,help:product_main_seller.field_product_template__main_seller_id -msgid "Put your supplier info in first position to set as main vendor" -msgstr "" -"Définir une information fournisseur en première position pour le définir " -"comme fournisseur principal" diff --git a/product_main_seller/i18n/it.po b/product_main_seller/i18n/it.po deleted file mode 100644 index 2bf8009..0000000 --- a/product_main_seller/i18n/it.po +++ /dev/null @@ -1,37 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_main_seller -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 16.0\n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-06 15:06+0000\n" -"Last-Translator: mymage \n" -"Language-Team: none\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_main_seller -#: model:ir.model.fields,field_description:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,field_description:product_main_seller.field_product_template__main_seller_id -#: model_terms:ir.ui.view,arch_db:product_main_seller.view_product_template_search -msgid "Main Vendor" -msgstr "Fornitore principale" - -#. module: product_main_seller -#: model:ir.model,name:product_main_seller.model_product_template -msgid "Product" -msgstr "Prodotto" - -#. module: product_main_seller -#: model:ir.model.fields,help:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,help:product_main_seller.field_product_template__main_seller_id -msgid "Put your supplier info in first position to set as main vendor" -msgstr "" -"Inserire le informazioni fornitore nella prima posizione per impostarlo come " -"fornitore principale" diff --git a/product_main_seller/i18n/nl.po b/product_main_seller/i18n/nl.po deleted file mode 100644 index 1d03c36..0000000 --- a/product_main_seller/i18n/nl.po +++ /dev/null @@ -1,38 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_main_seller -# bosd , 2025. -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 16.0\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: bosd \n" -"Language-Team: Dutch\n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"PO-Revision-Date: 2025-04-18 13:34+0200\n" -"X-Generator: Gtranslator 47.1\n" - -#. module: product_main_seller -#: model:ir.model.fields,field_description:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,field_description:product_main_seller.field_product_template__main_seller_id -#: model_terms:ir.ui.view,arch_db:product_main_seller.view_product_template_search -msgid "Main Vendor" -msgstr "Hoofdleverancier" - -#. module: product_main_seller -#: model:ir.model,name:product_main_seller.model_product_template -msgid "Product" -msgstr "Product" - -#. module: product_main_seller -#: model:ir.model.fields,help:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,help:product_main_seller.field_product_template__main_seller_id -msgid "Put your supplier info in first position to set as main vendor" -msgstr "" -"Zet uw leverancier op de eerste plaats om deze als hoofdleverancier in te " -"stellen" diff --git a/product_main_seller/i18n/product_main_seller.pot b/product_main_seller/i18n/product_main_seller.pot deleted file mode 100644 index f425184..0000000 --- a/product_main_seller/i18n/product_main_seller.pot +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_main_seller -# -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_main_seller -#: model:ir.model.fields,field_description:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,field_description:product_main_seller.field_product_template__main_seller_id -#: model_terms:ir.ui.view,arch_db:product_main_seller.view_product_template_search -msgid "Main Vendor" -msgstr "" - -#. module: product_main_seller -#: model:ir.model,name:product_main_seller.model_product_template -msgid "Product" -msgstr "" - -#. module: product_main_seller -#: model:ir.model.fields,help:product_main_seller.field_product_product__main_seller_id -#: model:ir.model.fields,help:product_main_seller.field_product_template__main_seller_id -msgid "Put your supplier info in first position to set as main vendor" -msgstr "" diff --git a/product_main_seller/models/__init__.py b/product_main_seller/models/__init__.py deleted file mode 100644 index e8fa8f6..0000000 --- a/product_main_seller/models/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import product_template diff --git a/product_main_seller/models/product_template.py b/product_main_seller/models/product_template.py deleted file mode 100644 index f4d35ee..0000000 --- a/product_main_seller/models/product_template.py +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright (C) 2022 - Today: GRAP (http://www.grap.coop) -# @author: Quentin DUPONT (quentin.dupont@grap.coop) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -from odoo import api -from odoo import fields -from odoo import models - - -class ProductTemplate(models.Model): - _inherit = "product.template" - - main_seller_id = fields.Many2one( - comodel_name="res.partner", - string="Main Vendor", - help="Put your supplier info in first position to set as main vendor", - compute="_compute_main_seller_id", - store=True, - ) - - @api.depends("variant_seller_ids.sequence", "variant_seller_ids.partner_id.active") - def _compute_main_seller_id(self): - for template in self: - if template.variant_seller_ids: - template.main_seller_id = fields.first( - template.variant_seller_ids.filtered( - lambda seller: seller.partner_id.active - ) - ).partner_id - else: - template.main_seller_id = False diff --git a/product_main_seller/pyproject.toml b/product_main_seller/pyproject.toml deleted file mode 100644 index 4231d0c..0000000 --- a/product_main_seller/pyproject.toml +++ /dev/null @@ -1,3 +0,0 @@ -[build-system] -requires = ["whool"] -build-backend = "whool.buildapi" diff --git a/product_main_seller/readme/CONTRIBUTORS.md b/product_main_seller/readme/CONTRIBUTORS.md deleted file mode 100644 index 65c3000..0000000 --- a/product_main_seller/readme/CONTRIBUTORS.md +++ /dev/null @@ -1 +0,0 @@ -- Quentin Dupont () diff --git a/product_main_seller/readme/DESCRIPTION.md b/product_main_seller/readme/DESCRIPTION.md deleted file mode 100644 index 20a1cce..0000000 --- a/product_main_seller/readme/DESCRIPTION.md +++ /dev/null @@ -1,5 +0,0 @@ -This module extends the Odoo Product module to compute and display the -main Vendor of each products. The main vendor is the first vendor in the -vendors list. - -![](../static/description/product_tree_view.png) diff --git a/product_main_seller/static/description/icon.png b/product_main_seller/static/description/icon.png deleted file mode 100644 index 2dcd8fd..0000000 Binary files a/product_main_seller/static/description/icon.png and /dev/null differ diff --git a/product_main_seller/static/description/index.html b/product_main_seller/static/description/index.html deleted file mode 100644 index 8c4e691..0000000 --- a/product_main_seller/static/description/index.html +++ /dev/null @@ -1,434 +0,0 @@ - - - - - -README.rst - - - -
- - - -Odoo Community Association - -
-

Product Main Vendor

- -

Beta License: AGPL-3 OCA/purchase-workflow Translate me on Weblate Try me on Runboat

-

This module extends the Odoo Product module to compute and display the -main Vendor of each products. The main vendor is the first vendor in the -vendors list.

-

image1

-

Table of contents

- -
-

Bug Tracker

-

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

-

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

-
-
-

Credits

-
-

Authors

-
    -
  • GRAP
  • -
-
-
-

Contributors

- -
-
-

Maintainers

-

This module is maintained by the OCA.

- -Odoo Community Association - -

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

-

Current maintainers:

-

legalsylvain quentinDupont

-

This module is part of the OCA/purchase-workflow project on GitHub.

-

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

-
-
-
-
- - diff --git a/product_main_seller/static/description/product_tree_view.png b/product_main_seller/static/description/product_tree_view.png deleted file mode 100644 index 3c770c8..0000000 Binary files a/product_main_seller/static/description/product_tree_view.png and /dev/null differ diff --git a/product_main_seller/tests/__init__.py b/product_main_seller/tests/__init__.py deleted file mode 100644 index d412bad..0000000 --- a/product_main_seller/tests/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import test_seller diff --git a/product_main_seller/tests/test_seller.py b/product_main_seller/tests/test_seller.py deleted file mode 100644 index 9ab5958..0000000 --- a/product_main_seller/tests/test_seller.py +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright (C) 2022 - Today: GRAP (http://www.grap.coop) -# @author: Quentin DUPONT (quentin.dupont@grap.coop) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -from odoo import Command -from odoo.tests.common import TransactionCase - - -class TestSeller(TransactionCase): - @classmethod - def setUpClass(cls): - super().setUpClass() - cls.product_workplace = cls.env.ref("product.product_product_24") - cls.product_acoustic = cls.env.ref("product.product_product_25") - cls.product_with_var_chair = cls.env.ref("product.product_product_11") - cls.product_without_seller_desk = cls.env.ref("product.product_product_3") - - cls.partner_woodcorner = cls.env.ref("base.res_partner_1") - cls.partner_azure = cls.env.ref("base.res_partner_12") - - def test_01_computed_main_vendor(self): - self.assertEqual( - self.product_acoustic.main_seller_id, - self.product_acoustic.seller_ids[0].partner_id, - ) - self.assertEqual( - self.product_with_var_chair.main_seller_id, - self.product_acoustic.product_variant_ids[0] - .variant_seller_ids[0] - .partner_id, - ) - - def test_02_replace_supplierinfo(self): - self.product_acoustic.seller_ids = [ - Command.clear(), - Command.create({"partner_id": self.partner_azure.id}), - ] - self.assertEqual(self.product_acoustic.main_seller_id.id, self.partner_azure.id) - - def test_03_add_supplierinfo_no_existing_supplierinfo(self): - self.product_without_seller_desk.seller_ids = [ - Command.create({"partner_id": self.partner_azure.id}), - ] - self.assertEqual( - self.product_without_seller_desk.main_seller_id.id, self.partner_azure.id - ) - - def test_03_add_supplierinfo_low_sequence(self): - self.product_workplace.seller_ids.write({"sequence": 1}) - self.product_workplace.seller_ids = [ - Command.create({"sequence": 100, "partner_id": self.partner_azure.id}), - ] - self.assertNotEqual( - self.product_workplace.main_seller_id.id, self.partner_azure.id - ) - - def test_03_add_supplierinfo_high_sequence(self): - self.product_workplace.seller_ids.write({"sequence": 1000}) - self.product_workplace.seller_ids = [ - Command.create({"sequence": 100, "partner_id": self.partner_azure.id}), - ] - self.assertEqual( - self.product_workplace.main_seller_id.id, self.partner_azure.id - ) - - def test_04_update_supplierinfo(self): - self.product_acoustic.seller_ids.write({"partner_id": self.partner_azure.id}) - self.assertEqual(self.product_acoustic.main_seller_id.id, self.partner_azure.id) - - def test_05_unlink_supplierinfo(self): - self.product_acoustic.seller_ids.unlink() - self.assertEqual(self.product_acoustic.main_seller_id.id, False) diff --git a/product_main_seller/views/view_product_product.xml b/product_main_seller/views/view_product_product.xml deleted file mode 100644 index 30ee16d..0000000 --- a/product_main_seller/views/view_product_product.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - product.product - - - - - - - - diff --git a/product_main_seller/views/view_product_template.xml b/product_main_seller/views/view_product_template.xml deleted file mode 100644 index e9251c1..0000000 --- a/product_main_seller/views/view_product_template.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - product.template - - - - - - - - - - - - - product.template - - - - - - - - diff --git a/product_price_category/README.rst b/product_price_category/README.rst deleted file mode 100644 index e6e8135..0000000 --- a/product_price_category/README.rst +++ /dev/null @@ -1,69 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl - :alt: License: AGPL-3 - -====================== -Product Price Category -====================== - -This module adds a field Price Category on Product Template -and allow Pricelist to be applied on this field. - -Usage -===== - -In Pricelist Form (Sales -> Configuration -> Pricelist), you can add or modify -an item ("Manage Pricelist Items" access should be checked in the user settings) -and select "Price Category" in "Applied on". -Then you have to choose on which price category should it be applied. - -.. image:: static/pricelist_price_category.png - - -Product price category can be modified in product form -> General Information. - -.. image:: static/product_price_category.png - - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/167/10.0 - -Bug Tracker -=========== - -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smash it by providing detailed and welcomed feedback. - -Credits -======= - -Images ------- - -* Odoo Community Association: `Icon `_. - -Contributors ------------- - -* Cyril Gaudin -* Akim Juillerat - -Do not contact contributors directly about support or help with technical issues. - -Maintainer ----------- - -.. image:: https://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: https://odoo-community.org - -This module is maintained by the OCA. - -OCA, or the Odoo Community Association, is a nonprofit organization whose -mission is to support the collaborative development of Odoo features and -promote its widespread use. - -To contribute to this module, please visit https://odoo-community.org. diff --git a/product_price_category/__init__.py b/product_price_category/__init__.py deleted file mode 100644 index 0650744..0000000 --- a/product_price_category/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import models diff --git a/product_price_category/__manifest__.py b/product_price_category/__manifest__.py deleted file mode 100644 index 3fd306e..0000000 --- a/product_price_category/__manifest__.py +++ /dev/null @@ -1,21 +0,0 @@ -# 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"], -} diff --git a/product_price_category/i18n/am.po b/product_price_category/i18n/am.po deleted file mode 100644 index 2ed2641..0000000 --- a/product_price_category/i18n/am.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" -"Language: am\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/ar.po b/product_price_category/i18n/ar.po deleted file mode 100644 index f67fce1..0000000 --- a/product_price_category/i18n/ar.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" -"Language: ar\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "أنشئ بواسطة" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "أنشئ في" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "اسم العرض" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "المعرف" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "آخر تعديل في" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "آخر تحديث بواسطة" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "آخر تحديث في" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "الاسم" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/bg.po b/product_price_category/i18n/bg.po deleted file mode 100644 index 2c932bd..0000000 --- a/product_price_category/i18n/bg.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" -"Language: bg\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Създадено от" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Създадено на" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Име за показване" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Последно променено на" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Последно обновено от" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Последно обновено на" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Име" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/bs.po b/product_price_category/i18n/bs.po deleted file mode 100644 index ba33c01..0000000 --- a/product_price_category/i18n/bs.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" -"Language: bs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Kreirano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Prikaži naziv" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Zadnje mijenjano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Zadnje ažurirano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Ime" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/ca.po b/product_price_category/i18n/ca.po deleted file mode 100644 index 6b34000..0000000 --- a/product_price_category/i18n/ca.po +++ /dev/null @@ -1,123 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2021-03-26 10:46+0000\n" -"Last-Translator: Daniel Martinez Vila \n" -"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3.2\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creat per" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creat el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nom visible" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Darrera modificació el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Darrera Actualització per" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Darrera Actualització el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nom" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "Categoria de preus" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "Categoria de preus: %s" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Tarifes de preus" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" -"Especifiqueu una categoria de preu del producte si aquesta regla només " -"s'aplica a una categoria de preus. Mantingueu-lo buit en cas contrari." - -#~ msgid "Pricelist item" -#~ msgstr "Article de la llista de preus" - -#~ msgid "Product Template" -#~ msgstr "Plantilla de producte" - -#~ msgid "product.price.category" -#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/cs.po b/product_price_category/i18n/cs.po deleted file mode 100644 index 90e474c..0000000 --- a/product_price_category/i18n/cs.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Vytvořil(a)" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Vytvořeno" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Zobrazovaný název" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Naposled upraveno" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Naposled upraveno" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Naposled upraveno" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Název" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/da.po b/product_price_category/i18n/da.po deleted file mode 100644 index 7aefdcf..0000000 --- a/product_price_category/i18n/da.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Oprettet af" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Oprettet den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Vist navn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "Id" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Sidst ændret den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Sidst opdateret af" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Sidst opdateret den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Navn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/de.po b/product_price_category/i18n/de.po deleted file mode 100644 index 9fb86ba..0000000 --- a/product_price_category/i18n/de.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Angelegt durch" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Angelegt am" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Anzeigename" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Zuletzt geändert am" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Zuletzt akualisiert durch" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Zuletzt akualisiert am" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Bezeichnung" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Preisliste" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/el_GR.po b/product_price_category/i18n/el_GR.po deleted file mode 100644 index 2d13a7c..0000000 --- a/product_price_category/i18n/el_GR.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" -"el_GR/)\n" -"Language: el_GR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Δημιουργήθηκε από " - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Δημιουργήθηκε στις" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "Κωδικός" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Τελευταία ενημέρωση από" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Τελευταία ενημέρωση στις" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Ονομασία" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/en_GB.po b/product_price_category/i18n/en_GB.po deleted file mode 100644 index 1623957..0000000 --- a/product_price_category/i18n/en_GB.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" -"teams/23907/en_GB/)\n" -"Language: en_GB\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Created by" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Created on" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Display Name" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Name" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es.po b/product_price_category/i18n/es.po deleted file mode 100644 index 44cc8f0..0000000 --- a/product_price_category/i18n/es.po +++ /dev/null @@ -1,123 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2021-03-26 10:46+0000\n" -"Last-Translator: Daniel Martinez Vila \n" -"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3.2\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre mostrado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "Categoría de precio" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "Categoría de precio: %s" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Tarifa" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" -"Especifique una categoría de precio de producto si esta regla solo se aplica " -"a una categoría de precio. De lo contrario, manténgalo vacío." - -#~ msgid "Pricelist item" -#~ msgstr "Artículo de lista de precios" - -#~ msgid "Product Template" -#~ msgstr "Plantilla de producto" - -#~ msgid "product.price.category" -#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/es_AR.po b/product_price_category/i18n/es_AR.po deleted file mode 100644 index 27e8493..0000000 --- a/product_price_category/i18n/es_AR.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" -"teams/23907/es_AR/)\n" -"Language: es_AR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Mostrar Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización realizada por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_CL.po b/product_price_category/i18n/es_CL.po deleted file mode 100644 index 5e29c9c..0000000 --- a/product_price_category/i18n/es_CL.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" -"es_CL/)\n" -"Language: es_CL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre mostrado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID (identificación)" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización de" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_CO.po b/product_price_category/i18n/es_CO.po deleted file mode 100644 index c221bee..0000000 --- a/product_price_category/i18n/es_CO.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" -"es_CO/)\n" -"Language: es_CO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre Público" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última Modificación el" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Actualizado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Actualizado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_CR.po b/product_price_category/i18n/es_CR.po deleted file mode 100644 index 9d7e18c..0000000 --- a/product_price_category/i18n/es_CR.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" -"teams/23907/es_CR/)\n" -"Language: es_CR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_DO.po b/product_price_category/i18n/es_DO.po deleted file mode 100644 index dd700a6..0000000 --- a/product_price_category/i18n/es_DO.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" -"teams/23907/es_DO/)\n" -"Language: es_DO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre mostrado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización de" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_EC.po b/product_price_category/i18n/es_EC.po deleted file mode 100644 index 68e4814..0000000 --- a/product_price_category/i18n/es_EC.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" -"es_EC/)\n" -"Language: es_EC\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre mostrado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID (identificación)" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última modificación en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización de" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_ES.po b/product_price_category/i18n/es_ES.po deleted file mode 100644 index c1b550b..0000000 --- a/product_price_category/i18n/es_ES.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" -"es_ES/)\n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_MX.po b/product_price_category/i18n/es_MX.po deleted file mode 100644 index 18c39eb..0000000 --- a/product_price_category/i18n/es_MX.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" -"es_MX/)\n" -"Language: es_MX\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre desplegado" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Ultima modificacion realizada" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Ultima actualizacion por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultima actualización realizada" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_PE.po b/product_price_category/i18n/es_PE.po deleted file mode 100644 index bc7bd49..0000000 --- a/product_price_category/i18n/es_PE.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" -"es_PE/)\n" -"Language: es_PE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nombre a Mostrar" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Ultima Modificación en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Actualizado última vez por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultima Actualización" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_PY.po b/product_price_category/i18n/es_PY.po deleted file mode 100644 index ec7417b..0000000 --- a/product_price_category/i18n/es_PY.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" -"es_PY/)\n" -"Language: es_PY\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Ultima actualización por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultima actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/es_VE.po b/product_price_category/i18n/es_VE.po deleted file mode 100644 index f3c8b6e..0000000 --- a/product_price_category/i18n/es_VE.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" -"teams/23907/es_VE/)\n" -"Language: es_VE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Mostrar nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Modificada por última vez" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última actualización realizada por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultima actualizacion en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nombre" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/et.po b/product_price_category/i18n/et.po deleted file mode 100644 index 0924ed1..0000000 --- a/product_price_category/i18n/et.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" -"Language: et\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Loonud" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Loodud" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Näidatav nimi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Viimati muudetud" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Viimati uuendatud" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Viimati uuendatud" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nimi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/eu.po b/product_price_category/i18n/eu.po deleted file mode 100644 index 6acf6ff..0000000 --- a/product_price_category/i18n/eu.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" -"Language: eu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Nork sortua" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Created on" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Izena erakutsi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Izena" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/fa.po b/product_price_category/i18n/fa.po deleted file mode 100644 index c8cca8b..0000000 --- a/product_price_category/i18n/fa.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" -"Language: fa\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "ایجاد شده توسط" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "ایجاد شده در" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "نام نمایشی" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "شناسه" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "تاریخ آخرین به‌روزرسانی" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "آخرین به روز رسانی توسط" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "آخرین به روز رسانی در" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "نام" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/fi.po b/product_price_category/i18n/fi.po deleted file mode 100644 index 188b3dc..0000000 --- a/product_price_category/i18n/fi.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Luonut" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Luotu" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nimi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Viimeksi muokattu" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Viimeksi päivittänyt" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Viimeksi päivitetty" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nimi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/fr.po b/product_price_category/i18n/fr.po deleted file mode 100644 index a107fb8..0000000 --- a/product_price_category/i18n/fr.po +++ /dev/null @@ -1,124 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -# guillaume bauer , 2018 -# Quentin THEURET , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-02-28 01:48+0000\n" -"PO-Revision-Date: 2018-02-28 01:48+0000\n" -"Last-Translator: Quentin THEURET , 2018\n" -"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Créé le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Afficher le nom" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Dernière modification le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Modifié par" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Modifié le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nom" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "Catégorie de prix" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "Catégorie de prix : %s" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Tarif" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" -"Définissez une catégorie de prix de produit si cette règle s'applique " -"uniquement à une catégorie de prix. Laisser vide dans l'autre cas." - -#~ msgid "Pricelist item" -#~ msgstr "Élément de la liste de prix" - -#~ msgid "Product Template" -#~ msgstr "Modèle de produit" - -#~ msgid "product.price.category" -#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/fr_CA.po b/product_price_category/i18n/fr_CA.po deleted file mode 100644 index f80b958..0000000 --- a/product_price_category/i18n/fr_CA.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" -"fr_CA/)\n" -"Language: fr_CA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Créé le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Afficher le nom" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "Identifiant" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Dernière mise à jour par" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Dernière mise à jour le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nom" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/fr_CH.po b/product_price_category/i18n/fr_CH.po deleted file mode 100644 index 8c4b8aa..0000000 --- a/product_price_category/i18n/fr_CH.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" -"teams/23907/fr_CH/)\n" -"Language: fr_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Créé par" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Créé le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nom affiché" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Dernière modification le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Modifié par" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Modifié le" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/gl.po b/product_price_category/i18n/gl.po deleted file mode 100644 index 0b2d25f..0000000 --- a/product_price_category/i18n/gl.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" -"Language: gl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creado en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Modificado por última vez o" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "ültima actualización por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última actualización en" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nome" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/gl_ES.po b/product_price_category/i18n/gl_ES.po deleted file mode 100644 index b0b0f2c..0000000 --- a/product_price_category/i18n/gl_ES.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" -"gl_ES/)\n" -"Language: gl_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/he.po b/product_price_category/i18n/he.po deleted file mode 100644 index a027192..0000000 --- a/product_price_category/i18n/he.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" -"Language: he\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "נוצר על ידי" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "נוצר ב-" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "השם המוצג" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "מזהה" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "תאריך שינוי אחרון" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "עודכן לאחרונה על ידי" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "עודכן לאחרונה על" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "שם" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/hr.po b/product_price_category/i18n/hr.po deleted file mode 100644 index b37ac9c..0000000 --- a/product_price_category/i18n/hr.po +++ /dev/null @@ -1,124 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -# Bole , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-02-28 01:48+0000\n" -"PO-Revision-Date: 2018-02-28 01:48+0000\n" -"Last-Translator: Bole , 2018\n" -"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Datum kreiranja" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Naziv za prikaz" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Zadnja promjena" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Promijenio" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Vrijeme promjene" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Naziv" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "Kategorija cijena" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "Kategorija cijena: %s" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Cjenik" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" -"Odredite kategoriju cijena ako ovo je pravilo primjenjivo na jednu " -"kategoriju, inače ostavite prazno." - -#~ msgid "Pricelist item" -#~ msgstr "Stavka cjenika" - -#~ msgid "Product Template" -#~ msgstr "Predložak proizvoda" - -#~ msgid "product.price.category" -#~ msgstr "product.price.category" diff --git a/product_price_category/i18n/hr_HR.po b/product_price_category/i18n/hr_HR.po deleted file mode 100644 index 9586f11..0000000 --- a/product_price_category/i18n/hr_HR.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" -"hr_HR/)\n" -"Language: hr_HR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Kreirano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Naziv" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Zadnje modificirano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Zadnji ažurirao" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Zadnje ažurirano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Naziv" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Cjenik" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/hu.po b/product_price_category/i18n/hu.po deleted file mode 100644 index 98f1780..0000000 --- a/product_price_category/i18n/hu.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Készítette" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Létrehozás dátuma" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Név megjelenítése" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Utolsó frissítés dátuma" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Utoljára frissítve, által" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Utoljára frissítve " - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Név" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/id.po b/product_price_category/i18n/id.po deleted file mode 100644 index 63cdddb..0000000 --- a/product_price_category/i18n/id.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" -"Language: id\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Dibuat oleh" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Dibuat pada" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nama Tampilan" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Terakhir Dimodifikasi pada" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Diperbaharui oleh" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Diperbaharui pada" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nama" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/it.po b/product_price_category/i18n/it.po deleted file mode 100644 index f714474..0000000 --- a/product_price_category/i18n/it.po +++ /dev/null @@ -1,114 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2024-10-15 17:06+0000\n" -"Last-Translator: Francesco Foresti \n" -"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6.2\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "Applica a" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creato da" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creato il" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nome visualizzato" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Ultima modifica il" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Ultimo aggiornamento di" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultimo aggiornamento il" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nome" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "Categoria di Prezzo" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "Categoria di Prezzo: %s" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Listino prezzi" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "Riga listino applicabile all'opzione selezionata" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "Regola listino prezzi" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "Prodotto" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "Categoria prezzo prodotto" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" -"Specificare una categoria di prezzo del prodotto se questa regola si applica " -"solo a una categoria di prezzo. In caso contrario, lasciare vuoto." diff --git a/product_price_category/i18n/ja.po b/product_price_category/i18n/ja.po deleted file mode 100644 index a78f5de..0000000 --- a/product_price_category/i18n/ja.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "作成者" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "作成日" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "表示名" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "最終更新日" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "最終更新者" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "最終更新日" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "名称" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/ko.po b/product_price_category/i18n/ko.po deleted file mode 100644 index b75a670..0000000 --- a/product_price_category/i18n/ko.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" -"Language: ko\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "작성자" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "작성일" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "표시 이름" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "최근 수정" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "최근 갱신한 사람" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "최근 갱신 날짜" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "이름" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/lt.po b/product_price_category/i18n/lt.po deleted file mode 100644 index 23f89b5..0000000 --- a/product_price_category/i18n/lt.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" -"Language: lt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Sukūrė" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Sukurta" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Vaizduojamas pavadinimas" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Paskutinį kartą keista" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Paskutinį kartą atnaujino" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Paskutinį kartą atnaujinta" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Pavadinimas" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/lt_LT.po b/product_price_category/i18n/lt_LT.po deleted file mode 100644 index fc2c3de..0000000 --- a/product_price_category/i18n/lt_LT.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" -"teams/23907/lt_LT/)\n" -"Language: lt_LT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Sukūrė" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Sukurta" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Paskutinį kartą atnaujino" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Paskutinį kartą atnaujinta" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/lv.po b/product_price_category/i18n/lv.po deleted file mode 100644 index b0d175e..0000000 --- a/product_price_category/i18n/lv.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" -"Language: lv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Izveidoja" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Izveidots" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Pēdējo reizi atjaunoja" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Pēdējās izmaiņas" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nosaukums" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/mk.po b/product_price_category/i18n/mk.po deleted file mode 100644 index 308cdfe..0000000 --- a/product_price_category/i18n/mk.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" -"Language: mk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Креирано од" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Креирано на" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Прикажи име" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Последна промена на" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Последно ажурирање од" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Последно ажурирање на" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Име" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/mn.po b/product_price_category/i18n/mn.po deleted file mode 100644 index dad1a2a..0000000 --- a/product_price_category/i18n/mn.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" -"Language: mn\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Үүсгэгч" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Үүсгэсэн" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Дэлгэцийн Нэр" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Сүүлийн засвар хийсэн огноо" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Сүүлийн засвар хийсэн" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Сүүлийн засвар хийсэн огноо" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Нэр" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/nb.po b/product_price_category/i18n/nb.po deleted file mode 100644 index 99ed845..0000000 --- a/product_price_category/i18n/nb.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" -"nb/)\n" -"Language: nb\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Opprettet av" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Opprettet den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Visnings navn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Sist oppdatert " - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Sist oppdatert av" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Sist oppdatert" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Navn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/nb_NO.po b/product_price_category/i18n/nb_NO.po deleted file mode 100644 index 9ed17b4..0000000 --- a/product_price_category/i18n/nb_NO.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" -"teams/23907/nb_NO/)\n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Laget av" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Laget den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Vis navn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Sist endret den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Sist oppdatert av" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Sist oppdatert den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/nl.po b/product_price_category/i18n/nl.po deleted file mode 100644 index b169a42..0000000 --- a/product_price_category/i18n/nl.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Aangemaakt door" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Te tonen naam" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Laatst bijgewerkt op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Laatste bijgewerkt door" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Laatst bijgewerkt op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Naam" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/nl_BE.po b/product_price_category/i18n/nl_BE.po deleted file mode 100644 index d226010..0000000 --- a/product_price_category/i18n/nl_BE.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" -"nl_BE/)\n" -"Language: nl_BE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Gemaakt door" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Gemaakt op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Schermnaam" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Laatst Aangepast op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Laatst bijgewerkt door" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Laatst bijgewerkt op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Naam:" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/nl_NL.po b/product_price_category/i18n/nl_NL.po deleted file mode 100644 index 4698a78..0000000 --- a/product_price_category/i18n/nl_NL.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# Peter Hageman , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: Peter Hageman , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" -"teams/23907/nl_NL/)\n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Aangemaakt door" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Aangemaakt op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Weergavenaam" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Laatst gewijzigd op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Laatst aangepast door" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Laatst aangepast op" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Naam" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/pl.po b/product_price_category/i18n/pl.po deleted file mode 100644 index 2aa9ca7..0000000 --- a/product_price_category/i18n/pl.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " -"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " -"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Utworzone przez" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Utworzono" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Wyświetlana nazwa " - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Ostatnio modyfikowano" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Ostatnio modyfikowane przez" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ostatnia zmiana" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nazwa" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/product_price_category.pot b/product_price_category/i18n/product_price_category.pot deleted file mode 100644 index f41a891..0000000 --- a/product_price_category/i18n/product_price_category.pot +++ /dev/null @@ -1,107 +0,0 @@ -# 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 "" diff --git a/product_price_category/i18n/pt.po b/product_price_category/i18n/pt.po deleted file mode 100644 index 1862ee5..0000000 --- a/product_price_category/i18n/pt.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Criado em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nome a Apresentar" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última Modificação Em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Atualizado pela última vez por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Atualizado pela última vez em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nome" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/pt_BR.po b/product_price_category/i18n/pt_BR.po deleted file mode 100644 index 431e604..0000000 --- a/product_price_category/i18n/pt_BR.po +++ /dev/null @@ -1,116 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2024-09-20 20:06+0000\n" -"Last-Translator: Rodrigo Sottomaior Macedo " -"\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" -"23907/pt_BR/)\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.6.2\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "Aplicar em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Criado em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nome para Mostrar" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "Identificação" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última atualização em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Última atualização por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Última atualização em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nome" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "Categoria de Preço" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "Categoria de Preço: %s" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "Lista de Preço" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "Item da lista de preços aplicável na opção selecionada" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "Regra da lista de preços" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "Produto" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "Categoria de Preço do Produto" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" -"Especifique uma categoria de preço de produto se esta regra se aplicar " -"somente a uma categoria de preço. Mantenha em branco caso contrário." diff --git a/product_price_category/i18n/pt_PT.po b/product_price_category/i18n/pt_PT.po deleted file mode 100644 index 0b8afe2..0000000 --- a/product_price_category/i18n/pt_PT.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" -"teams/23907/pt_PT/)\n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Criado por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Criado em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nome a Apresentar" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Última Modificação em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Atualizado pela última vez por" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Atualizado pela última vez em" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nome" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/ro.po b/product_price_category/i18n/ro.po deleted file mode 100644 index e019ccc..0000000 --- a/product_price_category/i18n/ro.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Creat de" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Creat la" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Nume Afişat" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Ultima actualizare în" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Ultima actualizare făcută de" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Ultima actualizare la" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Nume" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/ru.po b/product_price_category/i18n/ru.po deleted file mode 100644 index 48ad92b..0000000 --- a/product_price_category/i18n/ru.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " -"(n%100>=11 && n%100<=14)? 2 : 3);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Создано" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Создан" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Последний раз обновлено" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Последний раз обновлено" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Название" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/sk.po b/product_price_category/i18n/sk.po deleted file mode 100644 index 4c32984..0000000 --- a/product_price_category/i18n/sk.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" -"Language: sk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Vytvoril" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Vytvorené" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Zobraziť meno" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Posledná modifikácia" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Naposledy upravoval" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Naposledy upravované" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Meno" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/sl.po b/product_price_category/i18n/sl.po deleted file mode 100644 index 9120b91..0000000 --- a/product_price_category/i18n/sl.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2026-01-22 17:04+0000\n" -"Last-Translator: Matjaz Mozetic \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 "" diff --git a/product_price_category/i18n/sr.po b/product_price_category/i18n/sr.po deleted file mode 100644 index 8155a3e..0000000 --- a/product_price_category/i18n/sr.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" -"Language: sr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Kreiran" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Ime" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/sr@latin.po b/product_price_category/i18n/sr@latin.po deleted file mode 100644 index be8b312..0000000 --- a/product_price_category/i18n/sr@latin.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" -"sr%40latin/)\n" -"Language: sr@latin\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Kreirao" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Kreiran" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Ime za prikaz" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Zadnja izmjena" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Zadnja izmjena" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Zadnja izmjena" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Ime:" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/sv.po b/product_price_category/i18n/sv.po deleted file mode 100644 index 5333543..0000000 --- a/product_price_category/i18n/sv.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Skapad av" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Skapad den" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Visa namn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Senast redigerad" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Senast uppdaterad av" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Senast uppdaterad" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Namn" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/th.po b/product_price_category/i18n/th.po deleted file mode 100644 index 41311d9..0000000 --- a/product_price_category/i18n/th.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" -"Language: th\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "สร้างโดย" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "สร้างเมื่อ" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "ชื่อที่ใช้แสดง" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "รหัส" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "แก้ไขครั้งสุดท้ายเมื่อ" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "อัพเดทครั้งสุดท้ายโดย" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "อัพเดทครั้งสุดท้ายเมื่อ" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "ชื่อ" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/tr.po b/product_price_category/i18n/tr.po deleted file mode 100644 index e33f4df..0000000 --- a/product_price_category/i18n/tr.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Oluşturan" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Oluşturuldu" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Görünen İsim" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Son değişiklik" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Son güncelleyen" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Son güncellenme" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Adı" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/tr_TR.po b/product_price_category/i18n/tr_TR.po deleted file mode 100644 index 1677a8d..0000000 --- a/product_price_category/i18n/tr_TR.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" -"tr_TR/)\n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Oluşturan" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Oluşturulma tarihi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Görünen ad" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "Kimlik" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "En son güncelleme tarihi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "En son güncelleyen " - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "En son güncelleme tarihi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Ad" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/uk.po b/product_price_category/i18n/uk.po deleted file mode 100644 index 8716d64..0000000 --- a/product_price_category/i18n/uk.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Створив" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Дата створення" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Назва для відображення" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Остання модифікація" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Востаннє оновив" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Останнє оновлення" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Name" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/vi.po b/product_price_category/i18n/vi.po deleted file mode 100644 index cf8cc76..0000000 --- a/product_price_category/i18n/vi.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" -"Language: vi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Được tạo bởi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Được tạo vào" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Tên hiển thị" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Sửa lần cuối vào" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Cập nhật lần cuối vào" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Tên" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/vi_VN.po b/product_price_category/i18n/vi_VN.po deleted file mode 100644 index f2f7413..0000000 --- a/product_price_category/i18n/vi_VN.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" -"teams/23907/vi_VN/)\n" -"Language: vi_VN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "Tạo bởi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "Tạo vào" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "Cập nhật lần cuối bởi" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "Cập nhật lần cuối vào" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "Tên" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/zh_CN.po b/product_price_category/i18n/zh_CN.po deleted file mode 100644 index c6c3020..0000000 --- a/product_price_category/i18n/zh_CN.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" -"zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "创建者" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "创建时间" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "Display Name" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "ID" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "最后更新者" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "上次更新日期" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "名称" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/i18n/zh_TW.po b/product_price_category/i18n/zh_TW.po deleted file mode 100644 index c56e46c..0000000 --- a/product_price_category/i18n/zh_TW.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * product_price_category -# -# Translators: -# OCA Transbot , 2018 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-27 03:52+0000\n" -"PO-Revision-Date: 2018-01-27 03:52+0000\n" -"Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" -"zh_TW/)\n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on -msgid "Apply On" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid -msgid "Created by" -msgstr "建立者" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date -msgid "Created on" -msgstr "建立於" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name -msgid "Display Name" -msgstr "顯示名稱" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id -msgid "ID" -msgstr "編號" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update -msgid "Last Modified on" -msgstr "最後修改:" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid -msgid "Last Updated by" -msgstr "最後更新:" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date -msgid "Last Updated on" -msgstr "最後更新於" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name -msgid "Name" -msgstr "名稱" - -#. module: product_price_category -#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id -#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id -#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category -msgid "Price Category" -msgstr "" - -#. module: product_price_category -#. odoo-python -#: code:addons/product_price_category/models/product_pricelist_item.py:0 -#, python-format -msgid "Price Category: %s" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist -msgid "Pricelist" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on -msgid "Pricelist Item applicable on selected option" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_pricelist_item -msgid "Pricelist Rule" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_template -msgid "Product" -msgstr "" - -#. module: product_price_category -#: model:ir.model,name:product_price_category.model_product_price_category -msgid "Product Price Category" -msgstr "" - -#. module: product_price_category -#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id -msgid "" -"Specify a product price category if this rule only applies to one price " -"category. Keep empty otherwise." -msgstr "" diff --git a/product_price_category/migrations/18.0.1.0.0/post-migration.py b/product_price_category/migrations/18.0.1.0.0/post-migration.py deleted file mode 100644 index eccf8cf..0000000 --- a/product_price_category/migrations/18.0.1.0.0/post-migration.py +++ /dev/null @@ -1,15 +0,0 @@ -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -import logging - -_logger = logging.getLogger(__name__) - - -def migrate(cr, version): - if not version: - return - cr.execute(""" - UPDATE product_pricelist_item - SET display_applied_on = '2b_product_price_category' - WHERE applied_on = '2b_product_price_category' - """) diff --git a/product_price_category/models/__init__.py b/product_price_category/models/__init__.py deleted file mode 100644 index e13fbdf..0000000 --- a/product_price_category/models/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -from . import product_price_category -from . import product_template -from . import product_pricelist -from . import product_pricelist_item diff --git a/product_price_category/models/product_price_category.py b/product_price_category/models/product_price_category.py deleted file mode 100644 index 4c129ad..0000000 --- a/product_price_category/models/product_price_category.py +++ /dev/null @@ -1,13 +0,0 @@ -# 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) diff --git a/product_price_category/models/product_pricelist.py b/product_price_category/models/product_pricelist.py deleted file mode 100644 index c8c4517..0000000 --- a/product_price_category/models/product_pricelist.py +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2017 Camptocamp SA -# Copyright 2023 ACSONE SA/NV -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - - -from odoo import models - - -class ProductPricelist(models.Model): - _inherit = "product.pricelist" - - def _get_applicable_rules_domain(self, products, date, **kwargs): - price_categ_ids = [ - p.price_category_id.id for p in products if p.price_category_id - ] - domain = super()._get_applicable_rules_domain(products, date, **kwargs) - if price_categ_ids: - domain.extend( - [ - "|", - ("price_category_id", "=", False), - ("price_category_id", "in", price_categ_ids), - ] - ) - return domain diff --git a/product_price_category/models/product_pricelist_item.py b/product_price_category/models/product_pricelist_item.py deleted file mode 100644 index 5e9910f..0000000 --- a/product_price_category/models/product_pricelist_item.py +++ /dev/null @@ -1,74 +0,0 @@ -# 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 diff --git a/product_price_category/models/product_template.py b/product_price_category/models/product_template.py deleted file mode 100644 index 1791078..0000000 --- a/product_price_category/models/product_template.py +++ /dev/null @@ -1,14 +0,0 @@ -# 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" - ) diff --git a/product_price_category/pyproject.toml b/product_price_category/pyproject.toml deleted file mode 100644 index 4231d0c..0000000 --- a/product_price_category/pyproject.toml +++ /dev/null @@ -1,3 +0,0 @@ -[build-system] -requires = ["whool"] -build-backend = "whool.buildapi" diff --git a/product_price_category/security/ir.model.access.csv b/product_price_category/security/ir.model.access.csv deleted file mode 100644 index 5afd0ec..0000000 --- a/product_price_category/security/ir.model.access.csv +++ /dev/null @@ -1,3 +0,0 @@ -id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -access_product_price_category_user,access_product_price_category_user,model_product_price_category,product.group_product_pricelist,1,0,0,0 -access_product_price_category_manager,access_product_price_category_manager,model_product_price_category,sales_team.group_sale_manager,1,1,1,1 diff --git a/product_price_category/static/description/icon.png b/product_price_category/static/description/icon.png deleted file mode 100644 index 3a0328b..0000000 Binary files a/product_price_category/static/description/icon.png and /dev/null differ diff --git a/product_price_category/static/pricelist_price_category.png b/product_price_category/static/pricelist_price_category.png deleted file mode 100644 index 5356cad..0000000 Binary files a/product_price_category/static/pricelist_price_category.png and /dev/null differ diff --git a/product_price_category/static/product_price_category.png b/product_price_category/static/product_price_category.png deleted file mode 100644 index 9f7ce0e..0000000 Binary files a/product_price_category/static/product_price_category.png and /dev/null differ diff --git a/product_price_category/tests/__init__.py b/product_price_category/tests/__init__.py deleted file mode 100644 index e95d204..0000000 --- a/product_price_category/tests/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright 2016 Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from . import test_sale diff --git a/product_price_category/tests/test_sale.py b/product_price_category/tests/test_sale.py deleted file mode 100644 index f26f8ae..0000000 --- a/product_price_category/tests/test_sale.py +++ /dev/null @@ -1,146 +0,0 @@ -# Copyright 2016 Camptocamp SA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo import Command -from odoo.tests import Form -from odoo.tests.common import TransactionCase - - -class TestSale(TransactionCase): - @classmethod - def setUpClass(cls): - super().setUpClass() - # activate advanced pricelist - cls.env.user.write( - { - "groups_id": [ - Command.link(cls.env.ref("product.group_product_pricelist").id) - ] - } - ) - cls.tax = cls.env["account.tax"].create( - {"name": "Unittest tax", "amount_type": "percent", "amount": "0"} - ) - - price_category_1 = cls.env["product.price.category"].create( - {"name": "TEST_CAT"} - ) - price_category_2 = cls.env["product.price.category"].create( - {"name": "TEST_CAT_2"} - ) - - cls.pricelist = cls.env["product.pricelist"].create( - { - "name": "Unittest Pricelist", - "item_ids": [ - Command.create( - { - "applied_on": "2b_product_price_category", - "price_category_id": price_category_2.id, - "compute_price": "percentage", - "percent_price": 5, - } - ), - ], - } - ) - - # P1 with price_category_1 - cls.p1 = cls.env["product.product"].create( - { - "name": "Unittest P1", - "price_category_id": price_category_1.id, - "list_price": 10, - "taxes_id": [Command.set(cls.tax.ids)], - } - ) - - # P2 with price_category_2 - cls.p2 = cls.env["product.product"].create( - { - "name": "Unittest P2", - "price_category_id": price_category_2.id, - "list_price": 20, - "taxes_id": [Command.set(cls.tax.ids)], - } - ) - - # P3 without price category - cls.p3 = cls.env["product.product"].create( - { - "name": "Unittest P3", - "list_price": 30, - "taxes_id": [Command.set(cls.tax.ids)], - } - ) - - cls.partner = cls.env["res.partner"].create({"name": "Unittest partner"}) - - cls.sale = cls.env["sale.order"].create( - { - "partner_id": cls.partner.id, - "order_line": [ - Command.create( - { - "name": cls.p1.name, - "product_id": cls.p1.id, - "product_uom_qty": 1, - "product_uom": cls.env.ref("uom.product_uom_unit").id, - }, - ), - Command.create( - { - "name": cls.p1.name, - "product_id": cls.p2.id, - "product_uom_qty": 1, - "product_uom": cls.env.ref("uom.product_uom_unit").id, - }, - ), - Command.create( - { - "name": cls.p1.name, - "product_id": cls.p3.id, - "product_uom_qty": 1, - "product_uom": cls.env.ref("uom.product_uom_unit").id, - }, - ), - ], - } - ) - - def test_sale_without_pricelist(self): - self.sale._recompute_prices() - self.assertEqual(10, self.sale.order_line[0].price_total) - self.assertEqual(20, self.sale.order_line[1].price_total) - self.assertEqual(30, self.sale.order_line[2].price_total) - self.assertEqual(60, self.sale.amount_total) - - def test_sale_with_pricelist(self): - """Pricelist should be applied only on product with price_category_2""" - self.sale.pricelist_id = self.pricelist - self.sale._recompute_prices() - self.assertEqual(10, self.sale.order_line[0].price_total) - self.assertEqual(19, self.sale.order_line[1].price_total) - self.assertEqual(30, self.sale.order_line[2].price_total) - self.assertEqual(59, self.sale.amount_total) - - def test_sale_with_pricelist_and_tax(self): - self.tax.amount = 20 - self.sale.pricelist_id = self.pricelist - self.sale._recompute_prices() - self.assertEqual(12, self.sale.order_line[0].price_total) - self.assertEqual(22.8, self.sale.order_line[1].price_total) - self.assertEqual(36, self.sale.order_line[2].price_total) - self.assertEqual(70.8, self.sale.amount_total) - - def test_onchange_applied_on_price_category(self): - pricelist_form = Form(self.pricelist) - with pricelist_form.item_ids.edit(0) as item_form: - self.assertTrue(item_form.price_category_id) - item_form.display_applied_on = "1_product" - self.assertFalse(item_form.price_category_id) - - def test_name(self): - item = self.pricelist.item_ids[0] - expected_name = f"Price Category: {item.price_category_id.display_name}" - self.assertEqual(expected_name, item.name) diff --git a/product_price_category/views/product_pricelist.xml b/product_price_category/views/product_pricelist.xml deleted file mode 100644 index 9c8c40a..0000000 --- a/product_price_category/views/product_pricelist.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - product.pricelist.item - - - - - - - - diff --git a/product_price_category/views/product_template.xml b/product_price_category/views/product_template.xml deleted file mode 100644 index 2d2216c..0000000 --- a/product_price_category/views/product_template.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - product.template - - -
- -
-
-
- - - - product.template - - - - - - - -
diff --git a/purchase_triple_discount/README.rst b/purchase_triple_discount/README.rst deleted file mode 100644 index 4166895..0000000 --- a/purchase_triple_discount/README.rst +++ /dev/null @@ -1,119 +0,0 @@ -.. image:: https://odoo-community.org/readme-banner-image - :target: https://odoo-community.org/get-involved?utm_source=readme - :alt: Odoo Community Association - -============================== -Purchase Order Triple Discount -============================== - -.. - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! This file is generated by oca-gen-addon-readme !! - !! changes will be overwritten. !! - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:fb4779564a8b987350b0ed4d4e6d8035eddc9a8fd341f3e32703640e8e8bd359 - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - -.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png - :target: https://odoo-community.org/page/development-status - :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 -.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github - :target: https://github.com/OCA/purchase-workflow/tree/18.0/purchase_triple_discount - :alt: OCA/purchase-workflow -.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-purchase_triple_discount - :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png - :target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=18.0 - :alt: Try me on Runboat - -|badge1| |badge2| |badge3| |badge4| |badge5| - -This module allows to have three successive discounts on every purchase -order line. - -**Table of contents** - -.. contents:: - :local: - -Usage -===== - -Create a new purchase order and add discounts in any of the three -discount fields given. They go in order of precedence so discount 2 will -be calculated over discount 1 and discount 3 over the result of discount -2. For example, let's divide by two on every discount: - -Unit price: 600.00 -> - - - Disc. 1 = 50% -> Amount = 300.00 - - Disc. 2 = 50% -> Amount = 150.00 - - Disc. 3 = 50% -> Amount = 75.00 - -You can also use negative values to charge instead of discount: - -Unit price: 600.00 -> - - - Disc. 1 = 50% -> Amount = 300.00 - - Disc. 2 = -5% -> Amount = 315.00 - -- When the purchase order is validated, the discounts will be added to - the corresponding vendor pricelist. -- Vendor pricelists can be edited as well with their corresponding new - second and third discounts. -- A default second or third discount can be set in every vendor *Sale & - Purchases* tab. - -Bug Tracker -=========== - -Bugs are tracked on `GitHub Issues `_. -In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us to smash it by providing a detailed and welcomed -`feedback `_. - -Do not contact contributors directly about support or help with technical issues. - -Credits -======= - -Authors -------- - -* Tecnativa -* GRAP - -Contributors ------------- - -- `Tecnativa `__: - - - David Vidal - - Pedro M. Baeza - -- Sylvain LE GAL (https://twitter.com/legalsylvain) - -- `ForgeFlow S.L. `__: - - - Christopher Ormaza - -Maintainers ------------ - -This module is maintained by the OCA. - -.. image:: https://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: https://odoo-community.org - -OCA, or the Odoo Community Association, is a nonprofit organization whose -mission is to support the collaborative development of Odoo features and -promote its widespread use. - -This module is part of the `OCA/purchase-workflow `_ project on GitHub. - -You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/purchase_triple_discount/__init__.py b/purchase_triple_discount/__init__.py deleted file mode 100644 index cc6b635..0000000 --- a/purchase_triple_discount/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from . import models -from .hooks import post_init_hook diff --git a/purchase_triple_discount/__manifest__.py b/purchase_triple_discount/__manifest__.py deleted file mode 100644 index c9e6bd1..0000000 --- a/purchase_triple_discount/__manifest__.py +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 2017 Tecnativa - David Vidal -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -{ - "name": "Purchase Order Triple Discount", - "version": "18.0.1.0.0", - "category": "Purchase Management", - "author": "Tecnativa," "GRAP," "Odoo Community Association (OCA)", - "website": "https://github.com/OCA/purchase-workflow", - "license": "AGPL-3", - "summary": "Manage triple discount on purchase order lines", - "depends": [ - "purchase", - "account_invoice_triple_discount", - ], - "data": [ - "views/product_supplierinfo_view.xml", - "views/purchase_view.xml", - "views/res_partner_view.xml", - ], - "post_init_hook": "post_init_hook", -} diff --git a/purchase_triple_discount/hooks.py b/purchase_triple_discount/hooks.py deleted file mode 100644 index 047e072..0000000 --- a/purchase_triple_discount/hooks.py +++ /dev/null @@ -1,24 +0,0 @@ -def post_init_hook(env): - env.cr.execute(""" - UPDATE purchase_order_line upd - SET discount1=pol.discount - FROM (SELECT * - FROM purchase_order_line - WHERE discount IS NOT NULL - AND discount1 IS NULL - AND discount2 IS NULL - AND discount3 IS NULL) as pol - WHERE upd.id = pol.id - """) - - env.cr.execute(""" - UPDATE product_supplierinfo upd - SET discount1=psi.discount - FROM (SELECT * - FROM product_supplierinfo - WHERE discount IS NOT NULL - AND discount1 IS NULL - AND discount2 IS NULL - AND discount3 IS NULL) as psi - WHERE upd.id = psi.id - """) diff --git a/purchase_triple_discount/i18n/de.po b/purchase_triple_discount/i18n/de.po deleted file mode 100644 index 792ee3f..0000000 --- a/purchase_triple_discount/i18n/de.po +++ /dev/null @@ -1,104 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Bestellposition" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Bestellposition" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" diff --git a/purchase_triple_discount/i18n/es.po b/purchase_triple_discount/i18n/es.po deleted file mode 100644 index 68eddc4..0000000 --- a/purchase_triple_discount/i18n/es.po +++ /dev/null @@ -1,106 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2023-07-17 20:10+0000\n" -"Last-Translator: Ivorra78 \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.17\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "Descuento. 2 (%)" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "Descuento. 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "Contacto" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "Descuento por defecto al proveedor 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "Descuento por defecto al proveedor 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "Descuento. 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "Descuento. 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "Descuento 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "El descuento 2 debe ser inferior al 100%." - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "Descuento 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "El descuento 3 debe ser inferior al 100%." - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Línea orden de compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -msgid "Purchase Report" -msgstr "Informe de compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "Lista de precios para proveedores" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" -"Este valor se utilizará como valor por defecto, para cada nueva línea de " -"información del proveedor que dependa de ese proveedor." diff --git a/purchase_triple_discount/i18n/es_MX.po b/purchase_triple_discount/i18n/es_MX.po deleted file mode 100644 index 84e4ed2..0000000 --- a/purchase_triple_discount/i18n/es_MX.po +++ /dev/null @@ -1,105 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" -"es_MX/)\n" -"Language: es_MX\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Línea de orden de compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Línea de orden de compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" diff --git a/purchase_triple_discount/i18n/es_PE.po b/purchase_triple_discount/i18n/es_PE.po deleted file mode 100644 index 1703678..0000000 --- a/purchase_triple_discount/i18n/es_PE.po +++ /dev/null @@ -1,108 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# Henry Garcia , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: Henry Garcia , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" -"es_PE/)\n" -"Language: es_PE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Linea de orden de compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Linea de orden de compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" - -#~ msgid "Invoice" -#~ msgstr "Factura" diff --git a/purchase_triple_discount/i18n/fi.po b/purchase_triple_discount/i18n/fi.po deleted file mode 100644 index ccd05b3..0000000 --- a/purchase_triple_discount/i18n/fi.po +++ /dev/null @@ -1,104 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Ostotilausrivi" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Ostotilausrivi" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" diff --git a/purchase_triple_discount/i18n/fr.po b/purchase_triple_discount/i18n/fr.po deleted file mode 100644 index eec3e05..0000000 --- a/purchase_triple_discount/i18n/fr.po +++ /dev/null @@ -1,108 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-08-08 08:11+0000\n" -"PO-Revision-Date: 2019-08-08 08:11+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "Remise par défaut n°2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "Remise par défaut n°3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "Rem. 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "Rem. 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "Remise 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "La remise 2 doit être inférieure à 100%." - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "Remise 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "La remise 3 doit être inférieure à 100%." - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Ligne de commande d'achat" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Commande fournisseur" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "Liste de prix du fournisseur" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" - -#~ msgid "Invoice" -#~ msgstr "Facture" - -#~ msgid "Stock Rule" -#~ msgstr "Règle de stock minimum" diff --git a/purchase_triple_discount/i18n/hr.po b/purchase_triple_discount/i18n/hr.po deleted file mode 100644 index 00c3e81..0000000 --- a/purchase_triple_discount/i18n/hr.po +++ /dev/null @@ -1,110 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# Bole , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-03-03 03:48+0000\n" -"PO-Revision-Date: 2018-03-03 03:48+0000\n" -"Last-Translator: Bole , 2017\n" -"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "Pop. 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "Pop. 3(%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -#, fuzzy -msgid "Discount 2 (%)" -msgstr "Pop. 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "Popust 2 mora biti manje od 100%." - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -#, fuzzy -msgid "Discount 3 (%)" -msgstr "Pop. 3(%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "Popust 3 mora biti manje od 100%." - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Stavka naloga za nabavu" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Stavka naloga za nabavu" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" - -#~ msgid "Invoice" -#~ msgstr "Račun" diff --git a/purchase_triple_discount/i18n/it.po b/purchase_triple_discount/i18n/it.po deleted file mode 100644 index 6eefa37..0000000 --- a/purchase_triple_discount/i18n/it.po +++ /dev/null @@ -1,112 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2023-12-20 18:34+0000\n" -"Last-Translator: mymage \n" -"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "Sc. 2 (%)" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "Sc. 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "Contatto" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "Sconto Fornitore Predefinito 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "Sconto Fornitore Predefinito 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "Sconto 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "Sconto 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "Sconto 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "Sconto 2 deve essere inferiore di 100%." - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "Sconto 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "Sconto 3 deve essere inferiore di 100%." - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Riga ordine di acquisto" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -msgid "Purchase Report" -msgstr "Resoconto di acquisto" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "Listino Fornitore" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" -"Questo valore verrà usato come predefinito per ogni nuova riga d'ordine di " -"acquisto che dipende da questo fornitore." - -#~ msgid "Invoice" -#~ msgstr "Fattura" - -#~ msgid "Stock Rule" -#~ msgstr "Regola Stock" diff --git a/purchase_triple_discount/i18n/nl_NL.po b/purchase_triple_discount/i18n/nl_NL.po deleted file mode 100644 index 6dc750b..0000000 --- a/purchase_triple_discount/i18n/nl_NL.po +++ /dev/null @@ -1,108 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# Peter Hageman , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" -"teams/23907/nl_NL/)\n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Inkooporderregel" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Inkooporderregel" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" - -#~ msgid "Invoice" -#~ msgstr "Factuur" diff --git a/purchase_triple_discount/i18n/pt_BR.po b/purchase_triple_discount/i18n/pt_BR.po deleted file mode 100644 index 6324109..0000000 --- a/purchase_triple_discount/i18n/pt_BR.po +++ /dev/null @@ -1,111 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2024-05-29 18:36+0000\n" -"Last-Translator: Rodrigo Macedo \n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" -"23907/pt_BR/)\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.17\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "Desc. 2 (%)" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "Desc. 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "Contato" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "Desconto padrão do fornecedor 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "Desconto padrão do fornecedor 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "Desc. 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "Desc. 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "Desconto 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "O desconto 2 deve ser inferior a 100%." - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "Desconto 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "O desconto 3 deve ser inferior a 100%." - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Linha da Ordem de Compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -msgid "Purchase Report" -msgstr "Relatório de Compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "Lista de preços do fornecedor" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" -"Este valor será usado como padrão, para cada nova linha de informações do " -"fornecedor dependendo desse fornecedor." - -#~ msgid "Invoice" -#~ msgstr "Fatura" diff --git a/purchase_triple_discount/i18n/pt_PT.po b/purchase_triple_discount/i18n/pt_PT.po deleted file mode 100644 index ffddce5..0000000 --- a/purchase_triple_discount/i18n/pt_PT.po +++ /dev/null @@ -1,105 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" -"teams/23907/pt_PT/)\n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Linha de Encomenda de Compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Linha de Encomenda de Compra" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" diff --git a/purchase_triple_discount/i18n/purchase_triple_discount.pot b/purchase_triple_discount/i18n/purchase_triple_discount.pot deleted file mode 100644 index 3627409..0000000 --- a/purchase_triple_discount/i18n/purchase_triple_discount.pot +++ /dev/null @@ -1,122 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -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: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount1 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount1 -msgid "Default Supplier Discount 1 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount1 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount1 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount1 -msgid "Disc. 1 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_triple_discount_mixin__discount -msgid "Discount" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount -msgid "Discount (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_product_supplierinfo_discount1_limit -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount1_limit -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_triple_discount_mixin_discount1_limit -msgid "Discount 1 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_product_supplierinfo_discount2_limit -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_triple_discount_mixin_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_product_supplierinfo_discount3_limit -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_triple_discount_mixin_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order -msgid "Purchase Order" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_triple_discount_mixin -msgid "Purchase Triple Discount Mixin" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount1 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount1 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" diff --git a/purchase_triple_discount/i18n/ro.po b/purchase_triple_discount/i18n/ro.po deleted file mode 100644 index 99cc235..0000000 --- a/purchase_triple_discount/i18n/ro.po +++ /dev/null @@ -1,105 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2017-11-24 07:53+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Linie comandă achiziție" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -#, fuzzy -msgid "Purchase Report" -msgstr "Linie comandă achiziție" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" diff --git a/purchase_triple_discount/i18n/sl.po b/purchase_triple_discount/i18n/sl.po deleted file mode 100644 index 04ad841..0000000 --- a/purchase_triple_discount/i18n/sl.po +++ /dev/null @@ -1,113 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-24 07:53+0000\n" -"PO-Revision-Date: 2021-02-24 11:45+0000\n" -"Last-Translator: Matjaz Mozetic \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 4.3.2\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "Stik" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "Privzeti popust dobavitelja 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "Privzeti popust dobavitelja 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "Pop. 2(%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "Pop. 3(%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "Popust 2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "Popust 2 ne sme presegati 100%." - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "Popust 3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "Popust 3 ne sme presegati 100%." - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "Postavka nabavnega naloga" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -msgid "Purchase Report" -msgstr "Poročilo o nabavi" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "Cenik dobavitelja" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "" -"Ta vrednost se bo uporabljala kot privzeta za vsako novo postavko " -"\"supplierinfo\" vezano na tega dobavitelja." - -#~ msgid "Invoice" -#~ msgstr "Račun" - -#~ msgid "Stock Rule" -#~ msgstr "Pravilo zaloge" diff --git a/purchase_triple_discount/i18n/zh_CN.po b/purchase_triple_discount/i18n/zh_CN.po deleted file mode 100644 index e7eb1a5..0000000 --- a/purchase_triple_discount/i18n/zh_CN.po +++ /dev/null @@ -1,107 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * purchase_triple_discount -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 12.0\n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2019-09-02 14:40+0000\n" -"Last-Translator: 黎伟杰 <674416404@qq.com>\n" -"Language-Team: none\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" -"X-Generator: Weblate 3.8\n" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 2 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model_terms:ir.ui.view,arch_db:purchase_triple_discount.report_purchaseorder_document_triple_discount -msgid "Disc. 3 (%)" -msgstr "" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_res_partner -msgid "Contact" -msgstr "联系人" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -msgid "Default Supplier Discount 2 (%)" -msgstr "默认供应商折扣2 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "Default Supplier Discount 3 (%)" -msgstr "默认供应商折扣3(%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount2 -msgid "Disc. 2 (%)" -msgstr "折扣2(%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_order_line__discount3 -msgid "Disc. 3 (%)" -msgstr "折扣3 (%)" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount2 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount2 -msgid "Discount 2 (%)" -msgstr "折扣2(%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount2_limit -msgid "Discount 2 must be lower than 100%." -msgstr "折扣2必须低于100%。" - -#. module: purchase_triple_discount -#: model:ir.model.fields,field_description:purchase_triple_discount.field_product_supplierinfo__discount3 -#: model:ir.model.fields,field_description:purchase_triple_discount.field_purchase_report__discount3 -msgid "Discount 3 (%)" -msgstr "折扣3(%)" - -#. module: purchase_triple_discount -#: model:ir.model.constraint,message:purchase_triple_discount.constraint_purchase_order_line_discount3_limit -msgid "Discount 3 must be lower than 100%." -msgstr "折扣3必须低于100%。" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_order_line -msgid "Purchase Order Line" -msgstr "采购订单行" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_purchase_report -msgid "Purchase Report" -msgstr "采购报告" - -#. module: purchase_triple_discount -#: model:ir.model,name:purchase_triple_discount.model_product_supplierinfo -msgid "Supplier Pricelist" -msgstr "供应商价格表" - -#. module: purchase_triple_discount -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_partner__default_supplierinfo_discount3 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount2 -#: model:ir.model.fields,help:purchase_triple_discount.field_res_users__default_supplierinfo_discount3 -msgid "" -"This value will be used as the default one, for each new supplierinfo line " -"depending on that supplier." -msgstr "根据供应商的不同,此值将用作每个新供应商信息行的默认值。" - -#~ msgid "Invoice" -#~ msgstr "发票" - -#~ msgid "Stock Rule" -#~ msgstr "库存规则" diff --git a/purchase_triple_discount/models/__init__.py b/purchase_triple_discount/models/__init__.py deleted file mode 100644 index 2966b7b..0000000 --- a/purchase_triple_discount/models/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from . import purchase_triple_discount_mixin -from . import product_supplierinfo -from . import purchase_order_line -from . import purchase_order -from . import res_partner diff --git a/purchase_triple_discount/models/product_supplierinfo.py b/purchase_triple_discount/models/product_supplierinfo.py deleted file mode 100644 index c1485ff..0000000 --- a/purchase_triple_discount/models/product_supplierinfo.py +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2019 Tecnativa - David Vidal -# Copyright 2019 Tecnativa - Pedro M. Baeza -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import api -from odoo import models - - -class ProductSupplierInfo(models.Model): - _name = "product.supplierinfo" - _inherit = ["purchase.triple.discount.mixin", "product.supplierinfo"] - - @api.onchange("partner_id") - def _onchange_partner_id(self): - self.update( - { - field: self.partner_id[f"default_supplierinfo_{field}"] - for field in self._get_multiple_discount_field_names() - } - ) - - def default_get(self, fields_list): - res = super().default_get(fields_list) - res.update( - { - field: self.partner_id[f"default_supplierinfo_{field}"] - for field in self._get_multiple_discount_field_names() - } - ) - return res - - @api.model - def _get_po_to_supplierinfo_synced_fields(self): - res = super()._get_po_to_supplierinfo_synced_fields() - res += self._get_multiple_discount_field_names() - return res diff --git a/purchase_triple_discount/models/purchase_order.py b/purchase_triple_discount/models/purchase_order.py deleted file mode 100644 index 5ddc2cb..0000000 --- a/purchase_triple_discount/models/purchase_order.py +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 2017-19 Tecnativa - David Vidal -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo import models - - -class PurchaseOrder(models.Model): - _inherit = "purchase.order" - - def _prepare_supplier_info(self, partner, line, price, currency): - res = super()._prepare_supplier_info(partner, line, price, currency) - res.update( - {fname: line[fname] for fname in line._get_multiple_discount_field_names()} - ) - return res diff --git a/purchase_triple_discount/models/purchase_order_line.py b/purchase_triple_discount/models/purchase_order_line.py deleted file mode 100644 index 5a48af5..0000000 --- a/purchase_triple_discount/models/purchase_order_line.py +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 2017-19 Tecnativa - David Vidal -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo import api -from odoo import fields -from odoo import models - - -class PurchaseOrderLine(models.Model): - _name = "purchase.order.line" - _inherit = ["purchase.triple.discount.mixin", "purchase.order.line"] - - @api.depends("product_qty", "product_uom", "company_id") - def _compute_price_unit_and_date_planned_and_name(self): - res = super()._compute_price_unit_and_date_planned_and_name() - self._compute_discounts() - return res - - def _compute_discounts(self): - for line in self: - if not line.company_id or not line.product_id or line.invoice_lines: - continue - params = {"order_id": line.order_id} - seller = line.product_id._select_seller( - partner_id=line.partner_id, - quantity=line.product_qty, - date=line.order_id.date_order - and line.order_id.date_order.date() - or fields.Date.context_today(line), - uom_id=line.product_uom, - params=params, - ) - if not seller: - continue - line.update( - { - fname: seller[fname] or 0.0 - for fname in self._get_multiple_discount_field_names() - } - ) - - def _prepare_account_move_line(self, move=False): - self.ensure_one() - res = super()._prepare_account_move_line(move) - res.update( - {fname: self[fname] for fname in self._get_multiple_discount_field_names()} - ) - return res - - @api.model - def _prepare_purchase_order_line( - self, product_id, product_qty, product_uom, company_id, supplier, po - ): - res = super()._prepare_purchase_order_line( - product_id, product_qty, product_uom, company_id, supplier, po - ) - today = fields.Date.today() - partner = supplier.partner_id - uom_po_qty = product_uom._compute_quantity( - product_qty, product_id.uom_po_id, rounding_method="HALF-UP" - ) - seller = product_id.with_company(company_id)._select_seller( - partner_id=partner, - quantity=uom_po_qty, - date=po.date_order and max(po.date_order.date(), today) or today, - uom_id=product_id.uom_po_id, - ) - res.update( - { - fname: seller[fname] or 0.0 - for fname in self._get_multiple_discount_field_names() - } - ) - return res diff --git a/purchase_triple_discount/models/purchase_triple_discount_mixin.py b/purchase_triple_discount/models/purchase_triple_discount_mixin.py deleted file mode 100644 index d6df615..0000000 --- a/purchase_triple_discount/models/purchase_triple_discount_mixin.py +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 2017-19 Tecnativa - David Vidal -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -import functools - -from odoo import api -from odoo import fields -from odoo import models - - -class TripleDiscountMixin(models.AbstractModel): - _name = "purchase.triple.discount.mixin" - _description = "Purchase Triple Discount Mixin" - - discount = fields.Float( - compute="_compute_discount", - store=True, - ) - discount1 = fields.Float( - string="Disc. 1 (%)", - digits="Discount", - readonly=False, - ) - - discount2 = fields.Float( - string="Disc. 2 (%)", - digits="Discount", - readonly=False, - ) - discount3 = fields.Float( - string="Disc. 3 (%)", - digits="Discount", - readonly=False, - ) - - _sql_constraints = [ - ( - "discount1_limit", - "CHECK (discount1 <= 100.0)", - "Discount 1 must be lower than 100%.", - ), - ( - "discount2_limit", - "CHECK (discount2 <= 100.0)", - "Discount 2 must be lower than 100%.", - ), - ( - "discount3_limit", - "CHECK (discount3 <= 100.0)", - "Discount 3 must be lower than 100%.", - ), - ] - - @api.depends(lambda self: self._get_multiple_discount_field_names()) - def _compute_discount(self): - for record in self: - record.discount = record._get_aggregated_discount_from_values( - { - fname: record[fname] - for fname in record._get_multiple_discount_field_names() - } - ) - - def _get_aggregated_discount_from_values(self, values): - discount_fnames = self._get_multiple_discount_field_names() - discounts = [] - for discount_fname in discount_fnames: - discounts.append(values.get(discount_fname) or 0.0) - return self._get_aggregated_multiple_discounts(discounts) - - @staticmethod - def _get_multiple_discount_field_names(): - return ["discount1", "discount2", "discount3"] - - @staticmethod - def _get_aggregated_multiple_discounts(discounts): - discount_values = [] - for discount in discounts: - discount_values.append(1 - (discount or 0.0) / 100.0) - aggregated_discount = ( - 1 - functools.reduce((lambda x, y: x * y), discount_values) - ) * 100 - return aggregated_discount diff --git a/purchase_triple_discount/models/res_partner.py b/purchase_triple_discount/models/res_partner.py deleted file mode 100644 index 2deb94e..0000000 --- a/purchase_triple_discount/models/res_partner.py +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2019 Tecnativa - David Vidal -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import fields -from odoo import models - - -class ResPartner(models.Model): - _inherit = "res.partner" - - default_supplierinfo_discount1 = fields.Float( - string="Default Supplier Discount 1 (%)", - digits="Discount", - help="This value will be used as the default one, for each new " - "supplierinfo line depending on that supplier.", - ) - - default_supplierinfo_discount2 = fields.Float( - string="Default Supplier Discount 2 (%)", - digits="Discount", - help="This value will be used as the default one, for each new " - "supplierinfo line depending on that supplier.", - ) - default_supplierinfo_discount3 = fields.Float( - string="Default Supplier Discount 3 (%)", - digits="Discount", - help="This value will be used as the default one, for each new " - "supplierinfo line depending on that supplier.", - ) diff --git a/purchase_triple_discount/pyproject.toml b/purchase_triple_discount/pyproject.toml deleted file mode 100644 index 4231d0c..0000000 --- a/purchase_triple_discount/pyproject.toml +++ /dev/null @@ -1,3 +0,0 @@ -[build-system] -requires = ["whool"] -build-backend = "whool.buildapi" diff --git a/purchase_triple_discount/readme/CONTRIBUTORS.md b/purchase_triple_discount/readme/CONTRIBUTORS.md deleted file mode 100644 index e2a040a..0000000 --- a/purchase_triple_discount/readme/CONTRIBUTORS.md +++ /dev/null @@ -1,9 +0,0 @@ -- [Tecnativa](https://www.tecnativa.com): - - > - David Vidal - > - Pedro M. Baeza - -- Sylvain LE GAL () - -- [ForgeFlow S.L.](https://www.forgeflow.com): - - Christopher Ormaza \<\> diff --git a/purchase_triple_discount/readme/DESCRIPTION.md b/purchase_triple_discount/readme/DESCRIPTION.md deleted file mode 100644 index 737cc29..0000000 --- a/purchase_triple_discount/readme/DESCRIPTION.md +++ /dev/null @@ -1,2 +0,0 @@ -This module allows to have three successive discounts on every purchase -order line. diff --git a/purchase_triple_discount/readme/USAGE.md b/purchase_triple_discount/readme/USAGE.md deleted file mode 100644 index 0ee72b9..0000000 --- a/purchase_triple_discount/readme/USAGE.md +++ /dev/null @@ -1,24 +0,0 @@ -Create a new purchase order and add discounts in any of the three -discount fields given. They go in order of precedence so discount 2 will -be calculated over discount 1 and discount 3 over the result of discount -2. For example, let's divide by two on every discount: - -Unit price: 600.00 -\> - -> - Disc. 1 = 50% -\> Amount = 300.00 -> - Disc. 2 = 50% -\> Amount = 150.00 -> - Disc. 3 = 50% -\> Amount = 75.00 - -You can also use negative values to charge instead of discount: - -Unit price: 600.00 -\> - -> - Disc. 1 = 50% -\> Amount = 300.00 -> - Disc. 2 = -5% -\> Amount = 315.00 - -- When the purchase order is validated, the discounts will be added to - the corresponding vendor pricelist. -- Vendor pricelists can be edited as well with their corresponding new - second and third discounts. -- A default second or third discount can be set in every vendor *Sale & - Purchases* tab. diff --git a/purchase_triple_discount/static/description/icon.png b/purchase_triple_discount/static/description/icon.png deleted file mode 100644 index 3a0328b..0000000 Binary files a/purchase_triple_discount/static/description/icon.png and /dev/null differ diff --git a/purchase_triple_discount/static/description/index.html b/purchase_triple_discount/static/description/index.html deleted file mode 100644 index 8b725af..0000000 --- a/purchase_triple_discount/static/description/index.html +++ /dev/null @@ -1,477 +0,0 @@ - - - - - -README.rst - - - -
- - - -Odoo Community Association - -
-

Purchase Order Triple Discount

- -

Beta License: AGPL-3 OCA/purchase-workflow Translate me on Weblate Try me on Runboat

-

This module allows to have three successive discounts on every purchase -order line.

-

Table of contents

- -
-

Usage

-

Create a new purchase order and add discounts in any of the three -discount fields given. They go in order of precedence so discount 2 will -be calculated over discount 1 and discount 3 over the result of discount -2. For example, let’s divide by two on every discount:

-

Unit price: 600.00 ->

-
-
    -
  • Disc. 1 = 50% -> Amount = 300.00
  • -
  • Disc. 2 = 50% -> Amount = 150.00
  • -
  • Disc. 3 = 50% -> Amount = 75.00
  • -
-
-

You can also use negative values to charge instead of discount:

-

Unit price: 600.00 ->

-
-
    -
  • Disc. 1 = 50% -> Amount = 300.00
  • -
  • Disc. 2 = -5% -> Amount = 315.00
  • -
-
-
    -
  • When the purchase order is validated, the discounts will be added to -the corresponding vendor pricelist.
  • -
  • Vendor pricelists can be edited as well with their corresponding new -second and third discounts.
  • -
  • A default second or third discount can be set in every vendor Sale & -Purchases tab.
  • -
-
-
-

Bug Tracker

-

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

-

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

-
-
-

Credits

-
-

Authors

-
    -
  • Tecnativa
  • -
  • GRAP
  • -
-
-
-

Contributors

- -
-
-

Maintainers

-

This module is maintained by the OCA.

- -Odoo Community Association - -

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

-

This module is part of the OCA/purchase-workflow project on GitHub.

-

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

-
-
-
-
- - diff --git a/purchase_triple_discount/tests/__init__.py b/purchase_triple_discount/tests/__init__.py deleted file mode 100644 index 19588b8..0000000 --- a/purchase_triple_discount/tests/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import test_purchase_discount diff --git a/purchase_triple_discount/tests/test_purchase_discount.py b/purchase_triple_discount/tests/test_purchase_discount.py deleted file mode 100644 index f01e603..0000000 --- a/purchase_triple_discount/tests/test_purchase_discount.py +++ /dev/null @@ -1,227 +0,0 @@ -# Copyright 2017-19 Tecnativa - David Vidal -# Copyright 2019 Tecnativa - Pedro M. Baeza -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo.tests import Form -from odoo.tests import common - - -class TestPurchaseOrder(common.TransactionCase): - @classmethod - def setUpClass(cls): - super().setUpClass() - cls.supplierinfo_obj = cls.env["product.supplierinfo"] - cls.account_move_model = cls.env["account.move"] - cls.partner = cls.env["res.partner"].create( - { - "name": "Mr. Odoo", - } - ) - cls.partner2 = cls.env["res.partner"].create( - { - "name": "Mrs. Odoo", - } - ) - cls.product1 = cls.env["product.product"].create( - { - "name": "Test Product 1", - "purchase_method": "purchase", - } - ) - cls.product2 = cls.env["product.product"].create( - { - "name": "Test Product 2", - "purchase_method": "purchase", - } - ) - cls.supplierinfo = cls.supplierinfo_obj.create( - { - "min_qty": 0.0, - "partner_id": cls.partner2.id, - "product_tmpl_id": cls.product1.product_tmpl_id.id, - "price": 100, - "discount1": 10, - "discount2": 20, - "discount3": 30, - } - ) - cls.supplierinfo2 = cls.supplierinfo_obj.create( - { - "min_qty": 10.0, - "partner_id": cls.partner2.id, - "product_tmpl_id": cls.product1.product_tmpl_id.id, - "price": 100, - "discount3": 50, - } - ) - cls.tax = cls.env["account.tax"].create( - { - "name": "TAX 15%", - "amount_type": "percent", - "type_tax_use": "purchase", - "amount": 15.0, - } - ) - cls.order = cls.env["purchase.order"].create( - { - "partner_id": cls.partner.id, - } - ) - cls.order2 = cls.env["purchase.order"].create( - { - "partner_id": cls.partner2.id, - } - ) - po_line = cls.env["purchase.order.line"] - cls.po_line1 = po_line.create( - { - "order_id": cls.order.id, - "product_id": cls.product1.id, - "date_planned": "2018-01-19 00:00:00", - "name": "Line 1", - "product_qty": 1.0, - "product_uom": cls.product1.uom_id.id, - "taxes_id": [(6, 0, [cls.tax.id])], - "price_unit": 600.0, - } - ) - cls.po_line2 = po_line.create( - { - "order_id": cls.order.id, - "product_id": cls.product2.id, - "date_planned": "2018-01-19 00:00:00", - "name": "Line 2", - "product_qty": 10.0, - "product_uom": cls.product2.uom_id.id, - "taxes_id": [(6, 0, [cls.tax.id])], - "price_unit": 60.0, - } - ) - cls.po_line3 = po_line.create( - { - "order_id": cls.order2.id, - "product_id": cls.product1.id, - "date_planned": "2020-01-01 00:00:00", - "name": "Line 1", - "product_qty": 1.0, - "product_uom": cls.product1.uom_id.id, - "taxes_id": [(6, 0, [cls.tax.id])], - "price_unit": 600.0, - } - ) - - def test_01_purchase_order_classic_discount(self): - """Tests with single discount""" - self.po_line1.discount1 = 50.0 - self.po_line2.discount1 = 75.0 - self.assertEqual(self.po_line1.price_subtotal, 300.0) - self.assertEqual(self.po_line2.price_subtotal, 150.0) - self.assertEqual(self.order.amount_untaxed, 450.0) - self.assertEqual(self.order.amount_tax, 67.5) - # Mix taxed and untaxed: - self.po_line1.taxes_id = False - self.assertEqual(self.order.amount_tax, 22.5) - - def test_02_purchase_order_simple_triple_discount(self): - """Tests on a single line""" - self.po_line2.unlink() - # Divide by two on every discount: - self.po_line1.discount1 = 50.0 - self.po_line1.discount2 = 50.0 - self.po_line1.discount3 = 50.0 - self.assertEqual(self.po_line1.price_subtotal, 75.0) - self.assertEqual(self.order.amount_untaxed, 75.0) - self.assertEqual(self.order.amount_tax, 11.25) - # Unset first discount: - self.po_line1.discount1 = 0.0 - self.assertEqual(self.po_line1.price_subtotal, 150.0) - self.assertEqual(self.order.amount_untaxed, 150.0) - self.assertEqual(self.order.amount_tax, 22.5) - # Set a charge instead: - self.po_line1.discount2 = -50.0 - self.assertEqual(self.po_line1.price_subtotal, 450.0) - self.assertEqual(self.order.amount_untaxed, 450.0) - self.assertEqual(self.order.amount_tax, 67.5) - - def test_03_purchase_order_complex_triple_discount(self): - """Tests on multiple lines""" - self.po_line1.discount1 = 50.0 - self.po_line1.discount2 = 50.0 - self.po_line1.discount3 = 50.0 - self.assertEqual(self.po_line1.price_subtotal, 75.0) - self.assertEqual(self.order.amount_untaxed, 675.0) - self.assertEqual(self.order.amount_tax, 101.25) - self.po_line2.discount3 = 50.0 - self.assertEqual(self.po_line2.price_subtotal, 300.0) - self.assertEqual(self.order.amount_untaxed, 375.0) - self.assertEqual(self.order.amount_tax, 56.25) - - def test_04_purchase_order_triple_discount_invoicing(self): - """When a confirmed order is invoiced, the resultant invoice - should inherit the discounts""" - self.po_line1.discount1 = 50.0 - self.po_line1.discount2 = 50.0 - self.po_line1.discount3 = 50.0 - self.po_line2.discount3 = 50.0 - self.order.button_confirm() - invoice_form = Form( - self.account_move_model.with_context(default_move_type="in_invoice") - ) - invoice_form.partner_id = self.order.partner_id - - self.invoice = invoice_form.save() - self.invoice.purchase_id = self.order.id - self.invoice._onchange_purchase_auto_complete() - - self.assertEqual( - self.po_line1.discount1, self.invoice.invoice_line_ids[0].discount1 - ) - self.assertEqual( - self.po_line1.discount2, self.invoice.invoice_line_ids[0].discount2 - ) - self.assertEqual( - self.po_line1.discount3, self.invoice.invoice_line_ids[0].discount3 - ) - self.assertEqual( - self.po_line2.discount3, self.invoice.invoice_line_ids[1].discount3 - ) - self.assertEqual(self.order.amount_total, self.invoice.amount_total) - - def test_05_purchase_order_default_discounts(self): - with Form(self.order2).order_line.edit(0) as line: - line.product_qty = 1.0 - self.assertEqual(line.discount1, 10) - self.assertEqual(line.discount2, 20) - self.assertEqual(line.discount3, 30) - line.product_qty = 10 - self.assertFalse(line.discount1) - self.assertFalse(line.discount2) - self.assertEqual(line.discount3, 50) - - def test_06_supplierinfo_from_purchaseorder(self): - self.order2.order_line.create( - { - "order_id": self.order2.id, - "product_id": self.product2.id, - "date_planned": "2020-01-01 00:00:00", - "name": "Line 2", - "product_qty": 1.0, - "product_uom": self.product2.uom_id.id, - "taxes_id": [(6, 0, [self.tax.id])], - "price_unit": 999.0, - "discount1": 11.11, - "discount2": 22.22, - "discount3": 33.33, - } - ) - self.order2.button_confirm() - seller = self.supplierinfo_obj.search( - [ - ("partner_id", "=", self.partner2.id), - ("product_tmpl_id", "=", self.product2.product_tmpl_id.id), - ] - ) - self.assertTrue(seller) - self.assertEqual(seller.discount1, 11.11) - self.assertEqual(seller.discount2, 22.22) - self.assertEqual(seller.discount3, 33.33) diff --git a/purchase_triple_discount/views/product_supplierinfo_view.xml b/purchase_triple_discount/views/product_supplierinfo_view.xml deleted file mode 100644 index c5c5f3d..0000000 --- a/purchase_triple_discount/views/product_supplierinfo_view.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - product.supplierinfo - - - - 1 - - - - - - - - - - - product.supplierinfo - - - - 1 - - - - - - - - - diff --git a/purchase_triple_discount/views/purchase_view.xml b/purchase_triple_discount/views/purchase_view.xml deleted file mode 100644 index a1dc1d3..0000000 --- a/purchase_triple_discount/views/purchase_view.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - purchase.order.triple.discount.form - purchase.order - - - - 1 - - - - - - - - - diff --git a/purchase_triple_discount/views/res_partner_view.xml b/purchase_triple_discount/views/res_partner_view.xml deleted file mode 100644 index bf22756..0000000 --- a/purchase_triple_discount/views/res_partner_view.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - res.partner - - - - - - - - - -