limpieza addons OCA
This commit is contained in:
parent
42da5ed3db
commit
0ef0c9951c
145 changed files with 0 additions and 12044 deletions
1
ocb
1
ocb
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 6fb141fc7547f9de55c9ac702515f1e3a27406d0
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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 <https://github.com/OCA/purchase-workflow/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 <https://github.com/OCA/purchase-workflow/issues/new?body=module:%20product_main_seller%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
||||||
|
|
||||||
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 <https://odoo-community.org/page/maintainer-role>`__:
|
|
||||||
|
|
||||||
|maintainer-legalsylvain| |maintainer-quentinDupont|
|
|
||||||
|
|
||||||
This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/18.0/product_main_seller>`_ project on GitHub.
|
|
||||||
|
|
||||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
from . import models
|
|
||||||
from .hooks import pre_init_hook
|
|
||||||
|
|
@ -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",
|
|
||||||
}
|
|
||||||
|
|
@ -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;
|
|
||||||
""")
|
|
||||||
|
|
@ -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"
|
|
||||||
|
|
@ -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 <stefano.consolaro@mymage.it>\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"
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_main_seller
|
|
||||||
# bosd <c5e2fd43-d292-4c90-9d1f-74ff3436329a@anonaddy.me>, 2025.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 16.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"Last-Translator: bosd <c5e2fd43-d292-4c90-9d1f-74ff3436329a@anonaddy.me>\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"
|
|
||||||
|
|
@ -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 ""
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
from . import product_template
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
[build-system]
|
|
||||||
requires = ["whool"]
|
|
||||||
build-backend = "whool.buildapi"
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
- Quentin Dupont (<quentin.dupont@grap.coop>)
|
|
||||||
|
|
@ -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.
|
|
||||||
|
|
||||||

|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 68 KiB |
|
|
@ -1,434 +0,0 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
||||||
<title>README.rst</title>
|
|
||||||
<style type="text/css">
|
|
||||||
|
|
||||||
/*
|
|
||||||
:Author: David Goodger (goodger@python.org)
|
|
||||||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
|
||||||
:Copyright: This stylesheet has been placed in the public domain.
|
|
||||||
|
|
||||||
Default cascading style sheet for the HTML output of Docutils.
|
|
||||||
Despite the name, some widely supported CSS2 features are used.
|
|
||||||
|
|
||||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
|
||||||
customize this style sheet.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* used to remove borders from tables and images */
|
|
||||||
.borderless, table.borderless td, table.borderless th {
|
|
||||||
border: 0 }
|
|
||||||
|
|
||||||
table.borderless td, table.borderless th {
|
|
||||||
/* Override padding for "table.docutils td" with "! important".
|
|
||||||
The right padding separates the table cells. */
|
|
||||||
padding: 0 0.5em 0 0 ! important }
|
|
||||||
|
|
||||||
.first {
|
|
||||||
/* Override more specific margin styles with "! important". */
|
|
||||||
margin-top: 0 ! important }
|
|
||||||
|
|
||||||
.last, .with-subtitle {
|
|
||||||
margin-bottom: 0 ! important }
|
|
||||||
|
|
||||||
.hidden {
|
|
||||||
display: none }
|
|
||||||
|
|
||||||
.subscript {
|
|
||||||
vertical-align: sub;
|
|
||||||
font-size: smaller }
|
|
||||||
|
|
||||||
.superscript {
|
|
||||||
vertical-align: super;
|
|
||||||
font-size: smaller }
|
|
||||||
|
|
||||||
a.toc-backref {
|
|
||||||
text-decoration: none ;
|
|
||||||
color: black }
|
|
||||||
|
|
||||||
blockquote.epigraph {
|
|
||||||
margin: 2em 5em ; }
|
|
||||||
|
|
||||||
dl.docutils dd {
|
|
||||||
margin-bottom: 0.5em }
|
|
||||||
|
|
||||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
|
||||||
dl.docutils dt {
|
|
||||||
font-weight: bold }
|
|
||||||
*/
|
|
||||||
|
|
||||||
div.abstract {
|
|
||||||
margin: 2em 5em }
|
|
||||||
|
|
||||||
div.abstract p.topic-title {
|
|
||||||
font-weight: bold ;
|
|
||||||
text-align: center }
|
|
||||||
|
|
||||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
|
||||||
div.hint, div.important, div.note, div.tip, div.warning {
|
|
||||||
margin: 2em ;
|
|
||||||
border: medium outset ;
|
|
||||||
padding: 1em }
|
|
||||||
|
|
||||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
|
||||||
div.important p.admonition-title, div.note p.admonition-title,
|
|
||||||
div.tip p.admonition-title {
|
|
||||||
font-weight: bold ;
|
|
||||||
font-family: sans-serif }
|
|
||||||
|
|
||||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
|
||||||
div.danger p.admonition-title, div.error p.admonition-title,
|
|
||||||
div.warning p.admonition-title, .code .error {
|
|
||||||
color: red ;
|
|
||||||
font-weight: bold ;
|
|
||||||
font-family: sans-serif }
|
|
||||||
|
|
||||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
|
||||||
compound paragraphs.
|
|
||||||
div.compound .compound-first, div.compound .compound-middle {
|
|
||||||
margin-bottom: 0.5em }
|
|
||||||
|
|
||||||
div.compound .compound-last, div.compound .compound-middle {
|
|
||||||
margin-top: 0.5em }
|
|
||||||
*/
|
|
||||||
|
|
||||||
div.dedication {
|
|
||||||
margin: 2em 5em ;
|
|
||||||
text-align: center ;
|
|
||||||
font-style: italic }
|
|
||||||
|
|
||||||
div.dedication p.topic-title {
|
|
||||||
font-weight: bold ;
|
|
||||||
font-style: normal }
|
|
||||||
|
|
||||||
div.figure {
|
|
||||||
margin-left: 2em ;
|
|
||||||
margin-right: 2em }
|
|
||||||
|
|
||||||
div.footer, div.header {
|
|
||||||
clear: both;
|
|
||||||
font-size: smaller }
|
|
||||||
|
|
||||||
div.line-block {
|
|
||||||
display: block ;
|
|
||||||
margin-top: 1em ;
|
|
||||||
margin-bottom: 1em }
|
|
||||||
|
|
||||||
div.line-block div.line-block {
|
|
||||||
margin-top: 0 ;
|
|
||||||
margin-bottom: 0 ;
|
|
||||||
margin-left: 1.5em }
|
|
||||||
|
|
||||||
div.sidebar {
|
|
||||||
margin: 0 0 0.5em 1em ;
|
|
||||||
border: medium outset ;
|
|
||||||
padding: 1em ;
|
|
||||||
background-color: #ffffee ;
|
|
||||||
width: 40% ;
|
|
||||||
float: right ;
|
|
||||||
clear: right }
|
|
||||||
|
|
||||||
div.sidebar p.rubric {
|
|
||||||
font-family: sans-serif ;
|
|
||||||
font-size: medium }
|
|
||||||
|
|
||||||
div.system-messages {
|
|
||||||
margin: 5em }
|
|
||||||
|
|
||||||
div.system-messages h1 {
|
|
||||||
color: red }
|
|
||||||
|
|
||||||
div.system-message {
|
|
||||||
border: medium outset ;
|
|
||||||
padding: 1em }
|
|
||||||
|
|
||||||
div.system-message p.system-message-title {
|
|
||||||
color: red ;
|
|
||||||
font-weight: bold }
|
|
||||||
|
|
||||||
div.topic {
|
|
||||||
margin: 2em }
|
|
||||||
|
|
||||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
|
||||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
|
||||||
margin-top: 0.4em }
|
|
||||||
|
|
||||||
h1.title {
|
|
||||||
text-align: center }
|
|
||||||
|
|
||||||
h2.subtitle {
|
|
||||||
text-align: center }
|
|
||||||
|
|
||||||
hr.docutils {
|
|
||||||
width: 75% }
|
|
||||||
|
|
||||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
|
||||||
clear: left ;
|
|
||||||
float: left ;
|
|
||||||
margin-right: 1em }
|
|
||||||
|
|
||||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
|
||||||
clear: right ;
|
|
||||||
float: right ;
|
|
||||||
margin-left: 1em }
|
|
||||||
|
|
||||||
img.align-center, .figure.align-center, object.align-center {
|
|
||||||
display: block;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.align-center {
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.align-left {
|
|
||||||
text-align: left }
|
|
||||||
|
|
||||||
.align-center {
|
|
||||||
clear: both ;
|
|
||||||
text-align: center }
|
|
||||||
|
|
||||||
.align-right {
|
|
||||||
text-align: right }
|
|
||||||
|
|
||||||
/* reset inner alignment in figures */
|
|
||||||
div.align-right {
|
|
||||||
text-align: inherit }
|
|
||||||
|
|
||||||
/* div.align-center * { */
|
|
||||||
/* text-align: left } */
|
|
||||||
|
|
||||||
.align-top {
|
|
||||||
vertical-align: top }
|
|
||||||
|
|
||||||
.align-middle {
|
|
||||||
vertical-align: middle }
|
|
||||||
|
|
||||||
.align-bottom {
|
|
||||||
vertical-align: bottom }
|
|
||||||
|
|
||||||
ol.simple, ul.simple {
|
|
||||||
margin-bottom: 1em }
|
|
||||||
|
|
||||||
ol.arabic {
|
|
||||||
list-style: decimal }
|
|
||||||
|
|
||||||
ol.loweralpha {
|
|
||||||
list-style: lower-alpha }
|
|
||||||
|
|
||||||
ol.upperalpha {
|
|
||||||
list-style: upper-alpha }
|
|
||||||
|
|
||||||
ol.lowerroman {
|
|
||||||
list-style: lower-roman }
|
|
||||||
|
|
||||||
ol.upperroman {
|
|
||||||
list-style: upper-roman }
|
|
||||||
|
|
||||||
p.attribution {
|
|
||||||
text-align: right ;
|
|
||||||
margin-left: 50% }
|
|
||||||
|
|
||||||
p.caption {
|
|
||||||
font-style: italic }
|
|
||||||
|
|
||||||
p.credits {
|
|
||||||
font-style: italic ;
|
|
||||||
font-size: smaller }
|
|
||||||
|
|
||||||
p.label {
|
|
||||||
white-space: nowrap }
|
|
||||||
|
|
||||||
p.rubric {
|
|
||||||
font-weight: bold ;
|
|
||||||
font-size: larger ;
|
|
||||||
color: maroon ;
|
|
||||||
text-align: center }
|
|
||||||
|
|
||||||
p.sidebar-title {
|
|
||||||
font-family: sans-serif ;
|
|
||||||
font-weight: bold ;
|
|
||||||
font-size: larger }
|
|
||||||
|
|
||||||
p.sidebar-subtitle {
|
|
||||||
font-family: sans-serif ;
|
|
||||||
font-weight: bold }
|
|
||||||
|
|
||||||
p.topic-title {
|
|
||||||
font-weight: bold }
|
|
||||||
|
|
||||||
pre.address {
|
|
||||||
margin-bottom: 0 ;
|
|
||||||
margin-top: 0 ;
|
|
||||||
font: inherit }
|
|
||||||
|
|
||||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|
||||||
margin-left: 2em ;
|
|
||||||
margin-right: 2em }
|
|
||||||
|
|
||||||
pre.code .ln { color: gray; } /* line numbers */
|
|
||||||
pre.code, code { background-color: #eeeeee }
|
|
||||||
pre.code .comment, code .comment { color: #5C6576 }
|
|
||||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
|
||||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
|
||||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
|
||||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
|
||||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
|
||||||
|
|
||||||
span.classifier {
|
|
||||||
font-family: sans-serif ;
|
|
||||||
font-style: oblique }
|
|
||||||
|
|
||||||
span.classifier-delimiter {
|
|
||||||
font-family: sans-serif ;
|
|
||||||
font-weight: bold }
|
|
||||||
|
|
||||||
span.interpreted {
|
|
||||||
font-family: sans-serif }
|
|
||||||
|
|
||||||
span.option {
|
|
||||||
white-space: nowrap }
|
|
||||||
|
|
||||||
span.pre {
|
|
||||||
white-space: pre }
|
|
||||||
|
|
||||||
span.problematic, pre.problematic {
|
|
||||||
color: red }
|
|
||||||
|
|
||||||
span.section-subtitle {
|
|
||||||
/* font-size relative to parent (h1..h6 element) */
|
|
||||||
font-size: 80% }
|
|
||||||
|
|
||||||
table.citation {
|
|
||||||
border-left: solid 1px gray;
|
|
||||||
margin-left: 1px }
|
|
||||||
|
|
||||||
table.docinfo {
|
|
||||||
margin: 2em 4em }
|
|
||||||
|
|
||||||
table.docutils {
|
|
||||||
margin-top: 0.5em ;
|
|
||||||
margin-bottom: 0.5em }
|
|
||||||
|
|
||||||
table.footnote {
|
|
||||||
border-left: solid 1px black;
|
|
||||||
margin-left: 1px }
|
|
||||||
|
|
||||||
table.docutils td, table.docutils th,
|
|
||||||
table.docinfo td, table.docinfo th {
|
|
||||||
padding-left: 0.5em ;
|
|
||||||
padding-right: 0.5em ;
|
|
||||||
vertical-align: top }
|
|
||||||
|
|
||||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
|
||||||
font-weight: bold ;
|
|
||||||
text-align: left ;
|
|
||||||
white-space: nowrap ;
|
|
||||||
padding-left: 0 }
|
|
||||||
|
|
||||||
/* "booktabs" style (no vertical lines) */
|
|
||||||
table.docutils.booktabs {
|
|
||||||
border: 0px;
|
|
||||||
border-top: 2px solid;
|
|
||||||
border-bottom: 2px solid;
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
table.docutils.booktabs * {
|
|
||||||
border: 0px;
|
|
||||||
}
|
|
||||||
table.docutils.booktabs th {
|
|
||||||
border-bottom: thin solid;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
|
||||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
|
||||||
font-size: 100% }
|
|
||||||
|
|
||||||
ul.auto-toc {
|
|
||||||
list-style-type: none }
|
|
||||||
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="document">
|
|
||||||
|
|
||||||
|
|
||||||
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
||||||
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
||||||
</a>
|
|
||||||
<div class="section" id="product-main-vendor">
|
|
||||||
<h1>Product Main Vendor</h1>
|
|
||||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
||||||
!! This file is generated by oca-gen-addon-readme !!
|
|
||||||
!! changes will be overwritten. !!
|
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
||||||
!! source digest: sha256:c353b8931ca2140d6d80974f00d4e5e073b737283dc2770fe718a8842cd6bd4e
|
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
||||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/purchase-workflow/tree/18.0/product_main_seller"><img alt="OCA/purchase-workflow" src="https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/purchase-workflow-18-0/purchase-workflow-18-0-product_main_seller"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
||||||
<p>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.</p>
|
|
||||||
<p><img alt="image1" src="https://raw.githubusercontent.com/OCA/purchase-workflow/18.0/product_main_seller/static/description/product_tree_view.png" /></p>
|
|
||||||
<p><strong>Table of contents</strong></p>
|
|
||||||
<div class="contents local topic" id="contents">
|
|
||||||
<ul class="simple">
|
|
||||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-1">Bug Tracker</a></li>
|
|
||||||
<li><a class="reference internal" href="#credits" id="toc-entry-2">Credits</a><ul>
|
|
||||||
<li><a class="reference internal" href="#authors" id="toc-entry-3">Authors</a></li>
|
|
||||||
<li><a class="reference internal" href="#contributors" id="toc-entry-4">Contributors</a></li>
|
|
||||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-5">Maintainers</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="section" id="bug-tracker">
|
|
||||||
<h2><a class="toc-backref" href="#toc-entry-1">Bug Tracker</a></h2>
|
|
||||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/purchase-workflow/issues">GitHub Issues</a>.
|
|
||||||
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
|
|
||||||
<a class="reference external" href="https://github.com/OCA/purchase-workflow/issues/new?body=module:%20product_main_seller%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
|
||||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
||||||
</div>
|
|
||||||
<div class="section" id="credits">
|
|
||||||
<h2><a class="toc-backref" href="#toc-entry-2">Credits</a></h2>
|
|
||||||
<div class="section" id="authors">
|
|
||||||
<h3><a class="toc-backref" href="#toc-entry-3">Authors</a></h3>
|
|
||||||
<ul class="simple">
|
|
||||||
<li>GRAP</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="section" id="contributors">
|
|
||||||
<h3><a class="toc-backref" href="#toc-entry-4">Contributors</a></h3>
|
|
||||||
<ul class="simple">
|
|
||||||
<li>Quentin Dupont (<a class="reference external" href="mailto:quentin.dupont@grap.coop">quentin.dupont@grap.coop</a>)</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="section" id="maintainers">
|
|
||||||
<h3><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h3>
|
|
||||||
<p>This module is maintained by the OCA.</p>
|
|
||||||
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
||||||
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
||||||
</a>
|
|
||||||
<p>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.</p>
|
|
||||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainers</a>:</p>
|
|
||||||
<p><a class="reference external image-reference" href="https://github.com/legalsylvain"><img alt="legalsylvain" src="https://github.com/legalsylvain.png?size=40px" /></a> <a class="reference external image-reference" href="https://github.com/quentinDupont"><img alt="quentinDupont" src="https://github.com/quentinDupont.png?size=40px" /></a></p>
|
|
||||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/purchase-workflow/tree/18.0/product_main_seller">OCA/purchase-workflow</a> project on GitHub.</p>
|
|
||||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 44 KiB |
|
|
@ -1 +0,0 @@
|
||||||
from . import test_seller
|
|
||||||
|
|
@ -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)
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
<!--
|
|
||||||
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).
|
|
||||||
-->
|
|
||||||
<odoo>
|
|
||||||
<record id="view_product_product_tree" model="ir.ui.view">
|
|
||||||
<field name="model">product.product</field>
|
|
||||||
<field name="inherit_id" ref="product.product_product_tree_view" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<field name="lst_price" position="before">
|
|
||||||
<field name="main_seller_id" optional="show" />
|
|
||||||
</field>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
</odoo>
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
<!--
|
|
||||||
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).
|
|
||||||
-->
|
|
||||||
<odoo>
|
|
||||||
<record id="view_product_template_search" model="ir.ui.view">
|
|
||||||
<field name="model">product.template</field>
|
|
||||||
<field name="inherit_id" ref="product.product_template_search_view" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<field name="categ_id" position="after">
|
|
||||||
<field name="main_seller_id" />
|
|
||||||
</field>
|
|
||||||
<filter name="categ_id" position="after">
|
|
||||||
<filter
|
|
||||||
string="Main Vendor"
|
|
||||||
name="main_seller_id"
|
|
||||||
context="{'group_by':'main_seller_id'}"
|
|
||||||
/>
|
|
||||||
</filter>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="view_product_template_tree" model="ir.ui.view">
|
|
||||||
<field name="model">product.template</field>
|
|
||||||
<field name="inherit_id" ref="product.product_template_tree_view" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<field name="list_price" position="before">
|
|
||||||
<field name="main_seller_id" optional="show" />
|
|
||||||
</field>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
</odoo>
|
|
||||||
|
|
@ -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
|
|
||||||
<https://github.com/OCA/sale-workflow/issues>`_. In case of trouble, please
|
|
||||||
check there if your issue has already been reported. If you spotted it first,
|
|
||||||
help us smash it by providing detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
|
|
||||||
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
|
|
||||||
* Cyril Gaudin <cyril.gaudin@camptocamp.com>
|
|
||||||
* Akim Juillerat <akim.juillerat@camptocamp.com>
|
|
||||||
|
|
||||||
Do not contact contributors directly about support or help with technical issues.
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
|
|
||||||
.. image:: https://odoo-community.org/logo.png
|
|
||||||
:alt: Odoo Community Association
|
|
||||||
:target: https://odoo-community.org
|
|
||||||
|
|
||||||
This module is maintained by the OCA.
|
|
||||||
|
|
||||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
||||||
mission is to support the collaborative development of Odoo features and
|
|
||||||
promote its widespread use.
|
|
||||||
|
|
||||||
To contribute to this module, please visit https://odoo-community.org.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
from . import models
|
|
||||||
|
|
@ -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"],
|
|
||||||
}
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
|
||||||
"Language: am\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
|
||||||
"Language: ar\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
|
||||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "أنشئ بواسطة"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "أنشئ في"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "اسم العرض"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "المعرف"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "آخر تعديل في"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "آخر تحديث بواسطة"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "آخر تحديث في"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "الاسم"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
|
||||||
"Language: bg\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Създадено от"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Създадено на"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Име за показване"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Последно променено на"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Последно обновено от"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Последно обновено на"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Име"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
|
|
||||||
"Language: bs\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Kreirao"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Kreirano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Prikaži naziv"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Zadnje mijenjano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Zadnji ažurirao"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Zadnje ažurirano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ime"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,123 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2021-03-26 10:46+0000\n"
|
|
||||||
"Last-Translator: Daniel Martinez Vila <daniel.martinez@qubiq.es>\n"
|
|
||||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
|
||||||
"Language: ca\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 4.3.2\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creat per"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creat el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nom visible"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Darrera modificació el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Darrera Actualització per"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Darrera Actualització el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr "Categoria de preus"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr "Categoria de preus: %s"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Tarifes de preus"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
"Especifiqueu una categoria de preu del producte si aquesta regla només "
|
|
||||||
"s'aplica a una categoria de preus. Mantingueu-lo buit en cas contrari."
|
|
||||||
|
|
||||||
#~ msgid "Pricelist item"
|
|
||||||
#~ msgstr "Article de la llista de preus"
|
|
||||||
|
|
||||||
#~ msgid "Product Template"
|
|
||||||
#~ msgstr "Plantilla de producte"
|
|
||||||
|
|
||||||
#~ msgid "product.price.category"
|
|
||||||
#~ msgstr "product.price.category"
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
|
||||||
"Language: cs\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Vytvořil(a)"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Vytvořeno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Zobrazovaný název"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Naposled upraveno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Naposled upraveno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Naposled upraveno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Název"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
|
||||||
"Language: da\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Oprettet af"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Oprettet den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Vist navn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "Id"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Sidst ændret den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Sidst opdateret af"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Sidst opdateret den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Navn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
|
||||||
"Language: de\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Angelegt durch"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Angelegt am"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Anzeigename"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Zuletzt geändert am"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Zuletzt akualisiert durch"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Zuletzt akualisiert am"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Bezeichnung"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Preisliste"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"el_GR/)\n"
|
|
||||||
"Language: el_GR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Δημιουργήθηκε από "
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Δημιουργήθηκε στις"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "Κωδικός"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Τελευταία ενημέρωση από"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Τελευταία ενημέρωση στις"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ονομασία"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/en_GB/)\n"
|
|
||||||
"Language: en_GB\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Created by"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Created on"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Display Name"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Last Modified on"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Last Updated by"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Last Updated on"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Name"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,123 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2021-03-26 10:46+0000\n"
|
|
||||||
"Last-Translator: Daniel Martinez Vila <daniel.martinez@qubiq.es>\n"
|
|
||||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
|
||||||
"Language: es\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 4.3.2\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre mostrado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última modificación en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr "Categoría de precio"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr "Categoría de precio: %s"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Tarifa"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
"Especifique una categoría de precio de producto si esta regla solo se aplica "
|
|
||||||
"a una categoría de precio. De lo contrario, manténgalo vacío."
|
|
||||||
|
|
||||||
#~ msgid "Pricelist item"
|
|
||||||
#~ msgstr "Artículo de lista de precios"
|
|
||||||
|
|
||||||
#~ msgid "Product Template"
|
|
||||||
#~ msgstr "Plantilla de producto"
|
|
||||||
|
|
||||||
#~ msgid "product.price.category"
|
|
||||||
#~ msgstr "product.price.category"
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/es_AR/)\n"
|
|
||||||
"Language: es_AR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Mostrar Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última modificación en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización realizada por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_CL/)\n"
|
|
||||||
"Language: es_CL\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre mostrado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID (identificación)"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última modificación en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización de"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_CO/)\n"
|
|
||||||
"Language: es_CO\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre Público"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última Modificación el"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Actualizado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Actualizado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/es_CR/)\n"
|
|
||||||
"Language: es_CR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Ultima actualización por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultima actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/es_DO/)\n"
|
|
||||||
"Language: es_DO\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre mostrado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última modificación en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización de"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_EC/)\n"
|
|
||||||
"Language: es_EC\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre mostrado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID (identificación)"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última modificación en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización de"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_ES/)\n"
|
|
||||||
"Language: es_ES\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_MX/)\n"
|
|
||||||
"Language: es_MX\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre desplegado"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Ultima modificacion realizada"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Ultima actualizacion por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultima actualización realizada"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_PE/)\n"
|
|
||||||
"Language: es_PE\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nombre a Mostrar"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Ultima Modificación en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Actualizado última vez por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultima Actualización"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"es_PY/)\n"
|
|
||||||
"Language: es_PY\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Ultima actualización por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultima actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/es_VE/)\n"
|
|
||||||
"Language: es_VE\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Mostrar nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Modificada por última vez"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última actualización realizada por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultima actualizacion en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nombre"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
|
|
||||||
"Language: et\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Loonud"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Loodud"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Näidatav nimi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Viimati muudetud"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Viimati uuendatud"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Viimati uuendatud"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nimi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
|
|
||||||
"Language: eu\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Nork sortua"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Created on"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Izena erakutsi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Last Updated by"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Last Updated on"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Izena"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
|
|
||||||
"Language: fa\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "ایجاد شده توسط"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "ایجاد شده در"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "نام نمایشی"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "شناسه"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "تاریخ آخرین بهروزرسانی"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "آخرین به روز رسانی توسط"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "آخرین به روز رسانی در"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "نام"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
|
||||||
"Language: fi\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Luonut"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Luotu"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nimi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Viimeksi muokattu"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Viimeksi päivittänyt"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Viimeksi päivitetty"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nimi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,124 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
# guillaume bauer <guillaume.bauer@syentys.com>, 2018
|
|
||||||
# Quentin THEURET <odoo@kerpeo.com>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-02-28 01:48+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-02-28 01:48+0000\n"
|
|
||||||
"Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2018\n"
|
|
||||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Créé par"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Créé le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Afficher le nom"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Dernière modification le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Modifié par"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Modifié le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr "Catégorie de prix"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr "Catégorie de prix : %s"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Tarif"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
"Définissez une catégorie de prix de produit si cette règle s'applique "
|
|
||||||
"uniquement à une catégorie de prix. Laisser vide dans l'autre cas."
|
|
||||||
|
|
||||||
#~ msgid "Pricelist item"
|
|
||||||
#~ msgstr "Élément de la liste de prix"
|
|
||||||
|
|
||||||
#~ msgid "Product Template"
|
|
||||||
#~ msgstr "Modèle de produit"
|
|
||||||
|
|
||||||
#~ msgid "product.price.category"
|
|
||||||
#~ msgstr "product.price.category"
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"fr_CA/)\n"
|
|
||||||
"Language: fr_CA\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Créé par"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Créé le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Afficher le nom"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "Identifiant"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Dernière mise à jour par"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Dernière mise à jour le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/fr_CH/)\n"
|
|
||||||
"Language: fr_CH\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Créé par"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Créé le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nom affiché"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Dernière modification le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Modifié par"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Modifié le"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
|
||||||
"Language: gl\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creado en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Modificado por última vez o"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "ültima actualización por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última actualización en"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"gl_ES/)\n"
|
|
||||||
"Language: gl_ES\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
|
|
||||||
"Language: he\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "נוצר על ידי"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "נוצר ב-"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "השם המוצג"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "מזהה"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "תאריך שינוי אחרון"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "עודכן לאחרונה על ידי"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "עודכן לאחרונה על"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "שם"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,124 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
# Bole <bole@dajmi5.com>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-02-28 01:48+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-02-28 01:48+0000\n"
|
|
||||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
|
||||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
|
||||||
"Language: hr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Kreirao"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Datum kreiranja"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Naziv za prikaz"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Zadnja promjena"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Promijenio"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Vrijeme promjene"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr "Kategorija cijena"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr "Kategorija cijena: %s"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Cjenik"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
"Odredite kategoriju cijena ako ovo je pravilo primjenjivo na jednu "
|
|
||||||
"kategoriju, inače ostavite prazno."
|
|
||||||
|
|
||||||
#~ msgid "Pricelist item"
|
|
||||||
#~ msgstr "Stavka cjenika"
|
|
||||||
|
|
||||||
#~ msgid "Product Template"
|
|
||||||
#~ msgstr "Predložak proizvoda"
|
|
||||||
|
|
||||||
#~ msgid "product.price.category"
|
|
||||||
#~ msgstr "product.price.category"
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"hr_HR/)\n"
|
|
||||||
"Language: hr_HR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Kreirao"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Kreirano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Zadnje modificirano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Zadnji ažurirao"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Zadnje ažurirano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Cjenik"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
|
||||||
"Language: hu\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Készítette"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Létrehozás dátuma"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Név megjelenítése"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Utolsó frissítés dátuma"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Utoljára frissítve, által"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Utoljára frissítve "
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Név"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
|
|
||||||
"Language: id\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Dibuat oleh"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Dibuat pada"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nama Tampilan"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Terakhir Dimodifikasi pada"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Diperbaharui oleh"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Diperbaharui pada"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nama"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2024-10-15 17:06+0000\n"
|
|
||||||
"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
|
|
||||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
|
||||||
"Language: it\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr "Applica a"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creato da"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creato il"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nome visualizzato"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Ultima modifica il"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Ultimo aggiornamento di"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultimo aggiornamento il"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr "Categoria di Prezzo"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr "Categoria di Prezzo: %s"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Listino prezzi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr "Riga listino applicabile all'opzione selezionata"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr "Regola listino prezzi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Prodotto"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr "Categoria prezzo prodotto"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
"Specificare una categoria di prezzo del prodotto se questa regola si applica "
|
|
||||||
"solo a una categoria di prezzo. In caso contrario, lasciare vuoto."
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
|
|
||||||
"Language: ja\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "作成者"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "作成日"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "表示名"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "最終更新日"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "最終更新者"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "最終更新日"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "名称"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
|
|
||||||
"Language: ko\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "작성자"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "작성일"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "표시 이름"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "최근 수정"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "최근 갱신한 사람"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "최근 갱신 날짜"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "이름"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
|
|
||||||
"Language: lt\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Sukūrė"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Sukurta"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Vaizduojamas pavadinimas"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Paskutinį kartą keista"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Paskutinį kartą atnaujino"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Paskutinį kartą atnaujinta"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Pavadinimas"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/lt_LT/)\n"
|
|
||||||
"Language: lt_LT\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Sukūrė"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Sukurta"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Paskutinį kartą atnaujino"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Paskutinį kartą atnaujinta"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
|
||||||
"Language: lv\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
|
||||||
"2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Izveidoja"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Izveidots"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Pēdējo reizi atjaunoja"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Pēdējās izmaiņas"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nosaukums"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
|
|
||||||
"Language: mk\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Креирано од"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Креирано на"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Прикажи име"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Последна промена на"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Последно ажурирање од"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Последно ажурирање на"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Име"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
|
|
||||||
"Language: mn\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Үүсгэгч"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Үүсгэсэн"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Дэлгэцийн Нэр"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Сүүлийн засвар хийсэн"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Нэр"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"nb/)\n"
|
|
||||||
"Language: nb\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Opprettet av"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Opprettet den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Visnings navn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Sist oppdatert "
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Sist oppdatert av"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Sist oppdatert"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Navn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/nb_NO/)\n"
|
|
||||||
"Language: nb_NO\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Laget av"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Laget den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Vis navn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Sist endret den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Sist oppdatert av"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Sist oppdatert den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
|
||||||
"Language: nl\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Aangemaakt door"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Aangemaakt op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Te tonen naam"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Laatst bijgewerkt op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Laatste bijgewerkt door"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Laatst bijgewerkt op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"nl_BE/)\n"
|
|
||||||
"Language: nl_BE\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Gemaakt door"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Gemaakt op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Schermnaam"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Laatst Aangepast op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Laatst bijgewerkt door"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Laatst bijgewerkt op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam:"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Peter Hageman <hageman.p@gmail.com>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2018\n"
|
|
||||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/nl_NL/)\n"
|
|
||||||
"Language: nl_NL\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Aangemaakt door"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Aangemaakt op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Weergavenaam"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Laatst gewijzigd op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Laatst aangepast door"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Laatst aangepast op"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naam"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
|
||||||
"Language: pl\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
|
|
||||||
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
|
||||||
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Utworzone przez"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Utworzono"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Wyświetlana nazwa "
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Ostatnio modyfikowano"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Ostatnio modyfikowane przez"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ostatnia zmiana"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nazwa"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -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 ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
|
||||||
"Language: pt\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Criado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Criado em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nome a Apresentar"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última Modificação Em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Atualizado pela última vez por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Atualizado pela última vez em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,116 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2024-09-20 20:06+0000\n"
|
|
||||||
"Last-Translator: Rodrigo Sottomaior Macedo "
|
|
||||||
"<sottomaiormacedotec@sottomaiormacedo.tech>\n"
|
|
||||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
|
|
||||||
"23907/pt_BR/)\n"
|
|
||||||
"Language: pt_BR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr "Aplicar em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Criado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Criado em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nome para Mostrar"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "Identificação"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última atualização em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Última atualização por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Última atualização em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr "Categoria de Preço"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr "Categoria de Preço: %s"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Lista de Preço"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr "Item da lista de preços aplicável na opção selecionada"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr "Regra da lista de preços"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr "Produto"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr "Categoria de Preço do Produto"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
"Especifique uma categoria de preço de produto se esta regra se aplicar "
|
|
||||||
"somente a uma categoria de preço. Mantenha em branco caso contrário."
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/pt_PT/)\n"
|
|
||||||
"Language: pt_PT\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Criado por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Criado em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nome a Apresentar"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Última Modificação em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Atualizado pela última vez por"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Atualizado pela última vez em"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nome"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
|
||||||
"Language: ro\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
|
||||||
"2:1));\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Creat de"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Creat la"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nume Afişat"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Ultima actualizare în"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Ultima actualizare făcută de"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Ultima actualizare la"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nume"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
|
||||||
"Language: ru\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
|
||||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Создано"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Создан"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Последний раз обновлено"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Последний раз обновлено"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Название"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
|
|
||||||
"Language: sk\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Vytvoril"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Vytvorené"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Zobraziť meno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Posledná modifikácia"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Naposledy upravoval"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Naposledy upravované"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Meno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2026-01-22 17:04+0000\n"
|
|
||||||
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\n"
|
|
||||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
|
||||||
"Language: sl\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
|
||||||
"n%100==4 ? 2 : 3;\n"
|
|
||||||
"X-Generator: Weblate 5.15.2\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Ustvaril"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Ustvarjeno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Prikazani naziv"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Zadnjič spremenjeno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Zadnji posodobil"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Zadnjič posodobljeno"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Naziv"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr "Cenik"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
|
||||||
"Language: sr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Kreiran"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ime"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"sr%40latin/)\n"
|
|
||||||
"Language: sr@latin\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Kreirao"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Kreiran"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Ime za prikaz"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Zadnja izmjena"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Zadnja izmjena"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Zadnja izmjena"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ime:"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
|
|
||||||
"Language: sv\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Skapad av"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Skapad den"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Visa namn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Senast redigerad"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Senast uppdaterad av"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Senast uppdaterad"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Namn"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
|
|
||||||
"Language: th\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "สร้างโดย"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "สร้างเมื่อ"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "ชื่อที่ใช้แสดง"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "รหัส"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "ชื่อ"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
|
||||||
"Language: tr\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Oluşturan"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Oluşturuldu"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Görünen İsim"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Son değişiklik"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Son güncelleyen"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Son güncellenme"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Adı"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"tr_TR/)\n"
|
|
||||||
"Language: tr_TR\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Oluşturan"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Oluşturulma tarihi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Görünen ad"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "Kimlik"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "En son güncelleme tarihi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "En son güncelleyen "
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "En son güncelleme tarihi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Ad"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
|
||||||
"Language: uk\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Створив"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Дата створення"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Назва для відображення"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Остання модифікація"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Востаннє оновив"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Останнє оновлення"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Name"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
|
|
||||||
"Language: vi\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Được tạo bởi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Được tạo vào"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Tên hiển thị"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Sửa lần cuối vào"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Last Updated by"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Cập nhật lần cuối vào"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Tên"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
|
|
||||||
"teams/23907/vi_VN/)\n"
|
|
||||||
"Language: vi_VN\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Tạo bởi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Tạo vào"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Cập nhật lần cuối bởi"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Cập nhật lần cuối vào"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Tên"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"zh_CN/)\n"
|
|
||||||
"Language: zh_CN\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "创建者"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "创建时间"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Display Name"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Last Modified on"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "最后更新者"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "上次更新日期"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "名称"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * product_price_category
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 10.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"PO-Revision-Date: 2018-01-27 03:52+0000\n"
|
|
||||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
|
||||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
|
|
||||||
"zh_TW/)\n"
|
|
||||||
"Language: zh_TW\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: \n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Apply On"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "建立者"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "建立於"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "顯示名稱"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "編號"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "最後修改:"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "最後更新:"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "最後更新於"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_price_category__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "名稱"
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_product__price_category_id
|
|
||||||
#: model:ir.model.fields,field_description:product_price_category.field_product_template__price_category_id
|
|
||||||
#: model:ir.model.fields.selection,name:product_price_category.selection__product_pricelist_item__applied_on__2b_product_price_category
|
|
||||||
msgid "Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#. odoo-python
|
|
||||||
#: code:addons/product_price_category/models/product_pricelist_item.py:0
|
|
||||||
#, python-format
|
|
||||||
msgid "Price Category: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist
|
|
||||||
msgid "Pricelist"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__applied_on
|
|
||||||
msgid "Pricelist Item applicable on selected option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_pricelist_item
|
|
||||||
msgid "Pricelist Rule"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_template
|
|
||||||
msgid "Product"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model,name:product_price_category.model_product_price_category
|
|
||||||
msgid "Product Price Category"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: product_price_category
|
|
||||||
#: model:ir.model.fields,help:product_price_category.field_product_pricelist_item__price_category_id
|
|
||||||
msgid ""
|
|
||||||
"Specify a product price category if this rule only applies to one price "
|
|
||||||
"category. Keep empty otherwise."
|
|
||||||
msgstr ""
|
|
||||||
|
|
@ -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'
|
|
||||||
""")
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
from . import product_price_category
|
|
||||||
from . import product_template
|
|
||||||
from . import product_pricelist
|
|
||||||
from . import product_pricelist_item
|
|
||||||
|
|
@ -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)
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -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"
|
|
||||||
)
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue